Skip to content

Commit ddb463c

Browse files
committed
chore(release): 1.22.7 [skip ci]
1 parent bd86444 commit ddb463c

File tree

3 files changed

+23
-17
lines changed

3 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.22.7](https://github.com/salesforcecli/plugin-agent/compare/1.22.6...1.22.7) (2025-06-03)
2+
3+
### Bug Fixes
4+
5+
- change "GenAiPlanner" to "GenAiPlannerBundle" ([ad9b15f](https://github.com/salesforcecli/plugin-agent/commit/ad9b15f97e72614f2dac1777e622392e7d9887ac))
6+
17
## [1.22.6](https://github.com/salesforcecli/plugin-agent/compare/1.22.5...1.22.6) (2025-06-03)
28

39
### Bug Fixes

README.md

Lines changed: 16 additions & 16 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.22.6/src/commands/agent/create.ts)_
133+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/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.22.6/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.22.7/src/commands/agent/generate/agent-spec.ts)_
239239

240240
## `sf agent generate template`
241241

@@ -258,11 +258,11 @@ DESCRIPTION
258258
Generate an agent template from an existing agent in your DX project so you can then package the template in a managed
259259
package.
260260
261-
At a high-level, agents are defined by the Bot, BotVersion, and GenAiPlanner metadata types. The GenAiPlanner type in
262-
turn defines the agent's topics and actions. This command uses the metadata files for these three types, located in
263-
your local DX project, to generate a BotTemplate file for a specific agent (Bot). You then use the BotTemplate file,
264-
along with the GenAiPlanner file that references the BotTemplate, to package the template in a managed package that
265-
you can share between orgs or on AppExchange.
261+
At a high-level, agents are defined by the Bot, BotVersion, and GenAiPlannerBundle metadata types. The
262+
GenAiPlannerBundle type in turn defines the agent's topics and actions. This command uses the metadata files for these
263+
three types, located in your local DX project, to generate a BotTemplate file for a specific agent (Bot). You then use
264+
the BotTemplate file, along with the GenAiPlannerBundle file that references the BotTemplate, to package the template
265+
in a managed package that you can share between orgs or on AppExchange.
266266
267267
Use the --agent-file flag to specify the relative or full pathname of the Bot metadata file, such as
268268
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml. A single Bot can have multiple
@@ -271,7 +271,7 @@ DESCRIPTION
271271
force-app/main/default/bots/My_Awesome_Agent/v4.botVersion-meta.xml must exist.
272272
273273
The new BotTemplate file is generated in the "botTemplates" directory in your local package directory, and has the
274-
name <Agent_API_name>\_v<Version>\_Template.botTemplate-meta.xml, such as
274+
name <Agent_API_name>_v<Version>_Template.botTemplate-meta.xml, such as
275275
force-app/main/default/botTemplates/My_Awesome_Agent_v4_Template.botTemplate-meta.xml. The command displays the full
276276
pathname of the generated files when it completes.
277277
@@ -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.22.6/src/commands/agent/generate/template.ts)_
286+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/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.22.6/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.22.7/src/commands/agent/generate/test-spec.ts)_
345345

346346
## `sf agent preview`
347347

@@ -435,7 +435,7 @@ EXAMPLES
435435
--output-dir "transcripts/my-preview"
436436
```
437437

438-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.6/src/commands/agent/preview.ts)_
438+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/src/commands/agent/preview.ts)_
439439

440440
## `sf agent test create`
441441

@@ -490,7 +490,7 @@ EXAMPLES
490490
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
491491
```
492492

493-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.6/src/commands/agent/test/create.ts)_
493+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/src/commands/agent/test/create.ts)_
494494

495495
## `sf agent test list`
496496

@@ -525,7 +525,7 @@ EXAMPLES
525525
$ sf agent test list --target-org my-org
526526
```
527527

528-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.6/src/commands/agent/test/list.ts)_
528+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/src/commands/agent/test/list.ts)_
529529

530530
## `sf agent test results`
531531

@@ -581,7 +581,7 @@ FLAG DESCRIPTIONS
581581
test results aren't written.
582582
```
583583

584-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.6/src/commands/agent/test/results.ts)_
584+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/src/commands/agent/test/results.ts)_
585585

586586
## `sf agent test resume`
587587

@@ -644,7 +644,7 @@ FLAG DESCRIPTIONS
644644
test results aren't written.
645645
```
646646

647-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.6/src/commands/agent/test/resume.ts)_
647+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/src/commands/agent/test/resume.ts)_
648648

649649
## `sf agent test run`
650650

@@ -708,6 +708,6 @@ FLAG DESCRIPTIONS
708708
test results aren't written.
709709
```
710710

711-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.6/src/commands/agent/test/run.ts)_
711+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.22.7/src/commands/agent/test/run.ts)_
712712

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

0 commit comments

Comments
 (0)