Skip to content

Commit d917ff1

Browse files
committed
chore(release): 1.24.14-demo.0 [skip ci]
1 parent 0d178f9 commit d917ff1

File tree

2 files changed

+78
-13
lines changed

2 files changed

+78
-13
lines changed

README.md

Lines changed: 77 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ sf plugins
6666
- [`sf agent generate template`](#sf-agent-generate-template)
6767
- [`sf agent generate test-spec`](#sf-agent-generate-test-spec)
6868
- [`sf agent preview`](#sf-agent-preview)
69+
- [`sf agent publish authoring-bundle`](#sf-agent-publish-authoring-bundle)
6970
- [`sf agent test create`](#sf-agent-test-create)
7071
- [`sf agent test list`](#sf-agent-test-list)
7172
- [`sf agent test results`](#sf-agent-test-results)
7273
- [`sf agent test resume`](#sf-agent-test-resume)
7374
- [`sf agent test run`](#sf-agent-test-run)
75+
- [`sf agent validate authoring-bundle`](#sf-agent-validate-authoring-bundle)
7476

7577
## `sf agent activate`
7678

@@ -109,7 +111,7 @@ EXAMPLES
109111
$ sf agent activate --api-name Resort_Manager --target-org my-org
110112
```
111113

112-
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/activate.ts)_
114+
_See code: [src/commands/agent/activate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/activate.ts)_
113115

114116
## `sf agent create`
115117

@@ -171,7 +173,7 @@ EXAMPLES
171173
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
172174
```
173175

174-
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/create.ts)_
176+
_See code: [src/commands/agent/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/create.ts)_
175177

176178
## `sf agent deactivate`
177179

@@ -211,7 +213,7 @@ EXAMPLES
211213
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
212214
```
213215

214-
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/deactivate.ts)_
216+
_See code: [src/commands/agent/deactivate.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/deactivate.ts)_
215217

216218
## `sf agent generate agent-spec`
217219

@@ -316,7 +318,7 @@ EXAMPLES
316318
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
317319
```
318320

319-
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/agent-spec.ts)_
321+
_See code: [src/commands/agent/generate/agent-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/generate/agent-spec.ts)_
320322

321323
## `sf agent generate template`
322324

@@ -364,7 +366,7 @@ EXAMPLES
364366
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
365367
```
366368

367-
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/template.ts)_
369+
_See code: [src/commands/agent/generate/template.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/generate/template.ts)_
368370

369371
## `sf agent generate test-spec`
370372

@@ -425,7 +427,7 @@ EXAMPLES
425427
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
426428
```
427429

428-
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/test-spec.ts)_
430+
_See code: [src/commands/agent/generate/test-spec.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/generate/test-spec.ts)_
429431

430432
## `sf agent preview`
431433

@@ -489,7 +491,39 @@ EXAMPLES
489491
transcripts/my-preview
490492
```
491493

492-
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/preview.ts)_
494+
_See code: [src/commands/agent/preview.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/preview.ts)_
495+
496+
## `sf agent publish authoring-bundle`
497+
498+
Publish an Agent Authoring Bundle as a new agent
499+
500+
```
501+
USAGE
502+
$ sf agent publish authoring-bundle -o <value> -n <value> [--json] [--flags-dir <value>] [--api-version <value>]
503+
504+
FLAGS
505+
-n, --api-name=<value> (required) API name of the Agent Authoring Bundle to publish
506+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
507+
configuration variable is already set.
508+
--api-version=<value> Override the api version used for api requests made by this command
509+
510+
GLOBAL FLAGS
511+
--flags-dir=<value> Import flag values from a directory.
512+
--json Format output as json.
513+
514+
DESCRIPTION
515+
Publish an Agent Authoring Bundle as a new agent
516+
517+
Publishes an Agent Authoring Bundle by compiling the AF script and creating a new agent in your org.
518+
519+
EXAMPLES
520+
Publish an Agent Authoring Bundle:
521+
522+
$ sf agent publish authoring-bundle --api-name path/to/bundle --agent-name "My New Agent" --target-org \
523+
myorg@example.com
524+
```
525+
526+
_See code: [src/commands/agent/publish/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/publish/authoring-bundle.ts)_
493527

494528
## `sf agent test create`
495529

@@ -544,7 +578,7 @@ EXAMPLES
544578
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
545579
```
546580

547-
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/create.ts)_
581+
_See code: [src/commands/agent/test/create.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/test/create.ts)_
548582

549583
## `sf agent test list`
550584

@@ -579,7 +613,7 @@ EXAMPLES
579613
$ sf agent test list --target-org my-org
580614
```
581615

582-
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/list.ts)_
616+
_See code: [src/commands/agent/test/list.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/test/list.ts)_
583617

584618
## `sf agent test results`
585619

@@ -645,7 +679,7 @@ FLAG DESCRIPTIONS
645679
expression when using custom evaluations.
646680
```
647681

648-
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/results.ts)_
682+
_See code: [src/commands/agent/test/results.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/test/results.ts)_
649683

650684
## `sf agent test resume`
651685

@@ -718,7 +752,7 @@ FLAG DESCRIPTIONS
718752
expression when using custom evaluations.
719753
```
720754

721-
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/resume.ts)_
755+
_See code: [src/commands/agent/test/resume.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/test/resume.ts)_
722756

723757
## `sf agent test run`
724758

@@ -792,6 +826,37 @@ FLAG DESCRIPTIONS
792826
expression when using custom evaluations.
793827
```
794828

795-
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/run.ts)_
829+
_See code: [src/commands/agent/test/run.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/test/run.ts)_
830+
831+
## `sf agent validate authoring-bundle`
832+
833+
Validate an Agent Authoring Bundle
834+
835+
```
836+
USAGE
837+
$ sf agent validate authoring-bundle -o <value> -n <value> [--json] [--flags-dir <value>] [--api-version <value>]
838+
839+
FLAGS
840+
-n, --api-name=<value> (required) Path to the Agent Authoring Bundle to validate
841+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
842+
configuration variable is already set.
843+
--api-version=<value> Override the api version used for api requests made by this command
844+
845+
GLOBAL FLAGS
846+
--flags-dir=<value> Import flag values from a directory.
847+
--json Format output as json.
848+
849+
DESCRIPTION
850+
Validate an Agent Authoring Bundle
851+
852+
Validates an Agent Authoring Bundle by compiling the AF script and checking for errors.
853+
854+
EXAMPLES
855+
Validate an Agent Authoring Bundle:
856+
857+
$ sf agent validate authoring-bundle --api-name path/to/bundle
858+
```
859+
860+
_See code: [src/commands/agent/validate/authoring-bundle.ts](https://github.com/salesforcecli/plugin-agent/blob/1.24.14-demo.0/src/commands/agent/validate/authoring-bundle.ts)_
796861

797862
<!-- 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.24.13",
4+
"version": "1.24.14-demo.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)