Skip to content

Commit 4bb28eb

Browse files
committed
chore(release): 1.23.1 [skip ci]
1 parent 187a681 commit 4bb28eb

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.23.1](https://github.com/salesforcecli/plugin-agent/compare/1.23.0...1.23.1) (2025-06-24)
2+
3+
### Bug Fixes
4+
5+
- bump agents ([9156186](https://github.com/salesforcecli/plugin-agent/commit/91561863e54d01d3e583970d29efd1b809008626))
6+
17
# [1.23.0](https://github.com/salesforcecli/plugin-agent/compare/1.22.8...1.23.0) (2025-06-12)
28

39
### Features

README.md

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

133-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/create.ts)_
133+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/create.ts)_
134134

135135
## `sf agent generate agent-spec`
136136

@@ -235,7 +235,7 @@ EXAMPLES
235235
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
236236
```
237237

238-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/generate/agent-spec.ts)_
238+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/generate/agent-spec.ts)_
239239

240240
## `sf agent generate template`
241241

@@ -283,7 +283,7 @@ EXAMPLES
283283
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
284284
```
285285

286-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/generate/template.ts)_
286+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/generate/template.ts)_
287287

288288
## `sf agent generate test-spec`
289289

@@ -341,7 +341,7 @@ EXAMPLES
341341
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
342342
```
343343

344-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/generate/test-spec.ts)_
344+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/generate/test-spec.ts)_
345345

346346
## `sf agent preview`
347347

@@ -438,7 +438,7 @@ EXAMPLES
438438
"transcripts/my-preview"
439439
```
440440

441-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/preview.ts)_
441+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/preview.ts)_
442442

443443
## `sf agent test create`
444444

@@ -493,7 +493,7 @@ EXAMPLES
493493
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
494494
```
495495

496-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/create.ts)_
496+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/test/create.ts)_
497497

498498
## `sf agent test list`
499499

@@ -528,7 +528,7 @@ EXAMPLES
528528
$ sf agent test list --target-org my-org
529529
```
530530

531-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/list.ts)_
531+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/test/list.ts)_
532532

533533
## `sf agent test results`
534534

@@ -584,7 +584,7 @@ FLAG DESCRIPTIONS
584584
test results aren't written.
585585
```
586586

587-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/results.ts)_
587+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/test/results.ts)_
588588

589589
## `sf agent test resume`
590590

@@ -647,7 +647,7 @@ FLAG DESCRIPTIONS
647647
test results aren't written.
648648
```
649649

650-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/resume.ts)_
650+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/test/resume.ts)_
651651

652652
## `sf agent test run`
653653

@@ -711,6 +711,6 @@ FLAG DESCRIPTIONS
711711
test results aren't written.
712712
```
713713

714-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.0/src/commands/agent/test/run.ts)_
714+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.23.1/src/commands/agent/test/run.ts)_
715715

716716
<!-- 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.23.0",
4+
"version": "1.23.1",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)