Skip to content

Commit 226a9b0

Browse files
committed
chore(release): 1.19.2 [skip ci]
1 parent bb5192b commit 226a9b0

3 files changed

Lines changed: 17 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.19.2](https://github.com/salesforcecli/plugin-agent/compare/1.19.1...1.19.2) (2025-02-25)
2+
3+
### Bug Fixes
4+
5+
- add role to BotTemplate ([7b56118](https://github.com/salesforcecli/plugin-agent/commit/7b56118b1a0a03bf7b776c969d2375c10f0baccf))
6+
17
## [1.19.1](https://github.com/salesforcecli/plugin-agent/compare/1.19.0...1.19.1) (2025-02-24)
28

39
### Bug Fixes

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ EXAMPLES
132132
$ sf agent create --agent-name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
133133
```
134134

135-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/create.ts)_
135+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/create.ts)_
136136

137137
## `sf agent generate agent-spec`
138138

@@ -237,7 +237,7 @@ EXAMPLES
237237
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
238238
```
239239

240-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/generate/agent-spec.ts)_
240+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/generate/agent-spec.ts)_
241241

242242
## `sf agent generate template`
243243

@@ -285,7 +285,7 @@ EXAMPLES
285285
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
286286
```
287287

288-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/generate/template.ts)_
288+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/generate/template.ts)_
289289

290290
## `sf agent generate test-spec`
291291

@@ -343,7 +343,7 @@ EXAMPLES
343343
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
344344
```
345345

346-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/generate/test-spec.ts)_
346+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/generate/test-spec.ts)_
347347

348348
## `sf agent preview`
349349

@@ -378,7 +378,7 @@ FLAG DESCRIPTIONS
378378
the API name of the agent? (TBD based on agents library)
379379
```
380380

381-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/preview.ts)_
381+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/preview.ts)_
382382

383383
## `sf agent test create`
384384

@@ -433,7 +433,7 @@ EXAMPLES
433433
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --test-api-name Resort_Manager_Test --preview
434434
```
435435

436-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/test/create.ts)_
436+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/test/create.ts)_
437437

438438
## `sf agent test list`
439439

@@ -468,7 +468,7 @@ EXAMPLES
468468
$ sf agent test list --target-org my-org
469469
```
470470

471-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/test/list.ts)_
471+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/test/list.ts)_
472472

473473
## `sf agent test results`
474474

@@ -524,7 +524,7 @@ FLAG DESCRIPTIONS
524524
test results aren't written.
525525
```
526526

527-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/test/results.ts)_
527+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/test/results.ts)_
528528

529529
## `sf agent test resume`
530530

@@ -587,7 +587,7 @@ FLAG DESCRIPTIONS
587587
test results aren't written.
588588
```
589589

590-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/test/resume.ts)_
590+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/test/resume.ts)_
591591

592592
## `sf agent test run`
593593

@@ -651,6 +651,6 @@ FLAG DESCRIPTIONS
651651
test results aren't written.
652652
```
653653

654-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.1/src/commands/agent/test/run.ts)_
654+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.19.2/src/commands/agent/test/run.ts)_
655655

656656
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-agent",
33
"description": "Commands to interact with Salesforce agents",
4-
"version": "1.19.1",
4+
"version": "1.19.2",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)