Skip to content

Commit 4e22952

Browse files
committed
chore(release): 1.27.6 [skip ci]
1 parent bea399d commit 4e22952

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.27.6](https://github.com/salesforcecli/plugin-agent/compare/1.27.5...1.27.6) (2026-02-09)
2+
3+
### Bug Fixes
4+
5+
- always pass agentSpec to createAuthoringBundle so agent_label and description reflect user input ([85a48ff](https://github.com/salesforcecli/plugin-agent/commit/85a48ff262de6f0fc26420d03f9adddc4295984b))
6+
- preserve spec role when provided, fall back to name-derived description ([51768c5](https://github.com/salesforcecli/plugin-agent/commit/51768c5ff2f45b1e33f9a1d4c574f6ac2bf7f93c))
7+
18
## [1.27.5](https://github.com/salesforcecli/plugin-agent/compare/1.27.4...1.27.5) (2026-02-04)
29

310
### Bug Fixes

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ EXAMPLES
112112
$ sf agent activate --api-name Resort_Manager --target-org my-org
113113
```
114114

115-
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/activate.ts)_
115+
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/activate.ts)_
116116

117117
## `sf agent create`
118118

@@ -179,7 +179,7 @@ EXAMPLES
179179
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
180180
```
181181

182-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/create.ts)_
182+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/create.ts)_
183183

184184
## `sf agent deactivate`
185185

@@ -219,7 +219,7 @@ EXAMPLES
219219
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
220220
```
221221

222-
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/deactivate.ts)_
222+
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/deactivate.ts)_
223223

224224
## `sf agent generate agent-spec`
225225

@@ -326,7 +326,7 @@ EXAMPLES
326326
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
327327
```
328328

329-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/agent-spec.ts)_
329+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/generate/agent-spec.ts)_
330330

331331
## `sf agent generate authoring-bundle`
332332

@@ -401,7 +401,7 @@ EXAMPLES
401401
other-package-dir/main/default --target-org my-dev-org
402402
```
403403

404-
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/authoring-bundle.ts)_
404+
_See code: [src/commands/agent/generate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/generate/authoring-bundle.ts)_
405405

406406
## `sf agent generate template`
407407

@@ -449,7 +449,7 @@ EXAMPLES
449449
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
450450
```
451451

452-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/template.ts)_
452+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/generate/template.ts)_
453453

454454
## `sf agent generate test-spec`
455455

@@ -510,7 +510,7 @@ EXAMPLES
510510
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
511511
```
512512

513-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/generate/test-spec.ts)_
513+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/generate/test-spec.ts)_
514514

515515
## `sf agent preview`
516516

@@ -583,7 +583,7 @@ EXAMPLES
583583
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
584584
```
585585

586-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/preview.ts)_
586+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/preview.ts)_
587587

588588
## `sf agent publish authoring-bundle`
589589

@@ -632,7 +632,7 @@ EXAMPLES
632632
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
633633
```
634634

635-
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/publish/authoring-bundle.ts)_
635+
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/publish/authoring-bundle.ts)_
636636

637637
## `sf agent test create`
638638

@@ -687,7 +687,7 @@ EXAMPLES
687687
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
688688
```
689689

690-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/create.ts)_
690+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/test/create.ts)_
691691

692692
## `sf agent test list`
693693

@@ -722,7 +722,7 @@ EXAMPLES
722722
$ sf agent test list --target-org my-org
723723
```
724724

725-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/list.ts)_
725+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/test/list.ts)_
726726

727727
## `sf agent test results`
728728

@@ -788,7 +788,7 @@ FLAG DESCRIPTIONS
788788
expression when using custom evaluations.
789789
```
790790

791-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/results.ts)_
791+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/test/results.ts)_
792792

793793
## `sf agent test resume`
794794

@@ -861,7 +861,7 @@ FLAG DESCRIPTIONS
861861
expression when using custom evaluations.
862862
```
863863

864-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/resume.ts)_
864+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/test/resume.ts)_
865865

866866
## `sf agent test run`
867867

@@ -935,7 +935,7 @@ FLAG DESCRIPTIONS
935935
expression when using custom evaluations.
936936
```
937937

938-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/test/run.ts)_
938+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/test/run.ts)_
939939

940940
## `sf agent validate authoring-bundle`
941941

@@ -982,6 +982,6 @@ EXAMPLES
982982
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
983983
```
984984

985-
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.5/src/commands/agent/validate/authoring-bundle.ts)_
985+
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.27.6/src/commands/agent/validate/authoring-bundle.ts)_
986986

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

0 commit comments

Comments
 (0)