Skip to content

Commit 1c3e986

Browse files
authored
Merge pull request #2328 from salesforcecli/release/2.101.4
Release PR for 2.101.4 as nightly
2 parents 33564b1 + 66b56e4 commit 1c3e986

3 files changed

Lines changed: 22 additions & 19 deletions

File tree

README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
2525
$ sf COMMAND
2626
running command...
2727
$ sf (--version|-v)
28-
@salesforce/cli/2.101.3 linux-x64 node-v22.17.1
28+
@salesforce/cli/2.101.4 linux-x64 node-v22.17.1
2929
$ sf --help [COMMAND]
3030
USAGE
3131
$ sf COMMAND
@@ -242,7 +242,7 @@ EXAMPLES
242242
$ sf agent activate --api-name Resort_Manager --target-org my-org
243243
```
244244

245-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/activate.ts)_
245+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/activate.ts)_
246246

247247
## `sf agent create`
248248

@@ -304,7 +304,7 @@ EXAMPLES
304304
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
305305
```
306306

307-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/create.ts)_
307+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/create.ts)_
308308

309309
## `sf agent deactivate`
310310

@@ -344,7 +344,7 @@ EXAMPLES
344344
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
345345
```
346346

347-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/deactivate.ts)_
347+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/deactivate.ts)_
348348

349349
## `sf agent generate agent-spec`
350350

@@ -449,7 +449,7 @@ EXAMPLES
449449
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
450450
```
451451

452-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/agent-spec.ts)_
452+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/generate/agent-spec.ts)_
453453

454454
## `sf agent generate template`
455455

@@ -497,7 +497,7 @@ EXAMPLES
497497
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
498498
```
499499

500-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/template.ts)_
500+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/generate/template.ts)_
501501

502502
## `sf agent generate test-spec`
503503

@@ -532,6 +532,9 @@ DESCRIPTION
532532
- Expected topic: API name of the topic you expect the agent to use when responding to the utterance.
533533
- Expected actions: One or more API names of the expection actions the agent takes.
534534
- Expected outcome: Natural language description of the outcome you expect.
535+
- (Optional) Custom evaluation: Test an agent's response for specific strings or numbers.
536+
- (Optional) Conversation history: Boilerplate for additional context you can add to the test in the form of a
537+
conversation history.
535538
536539
When your test spec is ready, you then run the "agent test create" command to actually create the test in your org and
537540
synchronize the metadata with your DX project. The metadata type for an agent test is AiEvaluationDefinition.
@@ -555,7 +558,7 @@ EXAMPLES
555558
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
556559
```
557560

558-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/generate/test-spec.ts)_
561+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/generate/test-spec.ts)_
559562

560563
## `sf agent preview`
561564

@@ -619,7 +622,7 @@ EXAMPLES
619622
transcripts/my-preview
620623
```
621624

622-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/preview.ts)_
625+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/preview.ts)_
623626

624627
## `sf agent test create`
625628

@@ -674,7 +677,7 @@ EXAMPLES
674677
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
675678
```
676679

677-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/create.ts)_
680+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/create.ts)_
678681

679682
## `sf agent test list`
680683

@@ -709,7 +712,7 @@ EXAMPLES
709712
$ sf agent test list --target-org my-org
710713
```
711714

712-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/list.ts)_
715+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/list.ts)_
713716

714717
## `sf agent test results`
715718

@@ -765,7 +768,7 @@ FLAG DESCRIPTIONS
765768
test results aren't written.
766769
```
767770

768-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/results.ts)_
771+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/results.ts)_
769772

770773
## `sf agent test resume`
771774

@@ -828,7 +831,7 @@ FLAG DESCRIPTIONS
828831
test results aren't written.
829832
```
830833

831-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/resume.ts)_
834+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/resume.ts)_
832835

833836
## `sf agent test run`
834837

@@ -892,7 +895,7 @@ FLAG DESCRIPTIONS
892895
test results aren't written.
893896
```
894897

895-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.0/src/commands/agent/test/run.ts)_
898+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.1/src/commands/agent/test/run.ts)_
896899

897900
## `sf alias list`
898901

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/cli",
33
"description": "The Salesforce CLI",
4-
"version": "2.101.3",
4+
"version": "2.101.4",
55
"author": "Salesforce",
66
"bin": {
77
"sf": "./bin/run.js",
@@ -157,7 +157,7 @@
157157
"@oclif/plugin-which": "3.2.39",
158158
"@salesforce/core": "^8.9.1",
159159
"@salesforce/kit": "^3.1.6",
160-
"@salesforce/plugin-agent": "1.24.0",
160+
"@salesforce/plugin-agent": "1.24.1",
161161
"@salesforce/plugin-apex": "3.6.19",
162162
"@salesforce/plugin-api": "1.3.3",
163163
"@salesforce/plugin-auth": "3.7.16",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2106,10 +2106,10 @@
21062106
jszip "^3.10.1"
21072107
object-treeify "^2"
21082108

2109-
"@salesforce/plugin-agent@1.24.0":
2110-
version "1.24.0"
2111-
resolved "https://registry.yarnpkg.com/@salesforce/plugin-agent/-/plugin-agent-1.24.0.tgz#e62b70c5c67137a73c741293c0a3d74d166e5c0b"
2112-
integrity sha512-FEc6aC/Sg/KP2fcmFHSBAkEPJal8jAHe/dFh4W8dUkYNi99WJdjj4BMJbnxJsbapml+OQFipUN5jmV8dI/mpMw==
2109+
"@salesforce/plugin-agent@1.24.1":
2110+
version "1.24.1"
2111+
resolved "https://registry.yarnpkg.com/@salesforce/plugin-agent/-/plugin-agent-1.24.1.tgz#8702c6b8a445e460dda94eb5c37a2c5ed8463159"
2112+
integrity sha512-YyEsfrYmNJl+gky724/anwdp8R7pXWoKq002oXcFLeWTdeUW/on0+MB4NSn191Fo9OLb/EsNiM+EMMAlR7FWdA==
21132113
dependencies:
21142114
"@inquirer/core" "^10.1.6"
21152115
"@inquirer/prompts" "^7.2.0"

0 commit comments

Comments
 (0)