@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
2525$ sf COMMAND
2626running command...
2727$ sf (--version| -v)
28- @salesforce/cli/2.99.6 linux-x64 node-v22.17.1
28+ @salesforce/cli/2.100.0 linux-x64 node-v22.17.1
2929$ sf --help [COMMAND]
3030USAGE
3131 $ sf COMMAND
@@ -262,7 +262,7 @@ EXAMPLES
262262 $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
263263```
264264
265- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/create.ts ) _
265+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/create.ts ) _
266266
267267## ` sf agent generate agent-spec `
268268
@@ -367,7 +367,7 @@ EXAMPLES
367367 $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
368368```
369369
370- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/generate/agent-spec.ts ) _
370+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/generate/agent-spec.ts ) _
371371
372372## ` sf agent generate template `
373373
@@ -415,7 +415,7 @@ EXAMPLES
415415 force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
416416```
417417
418- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/generate/template.ts ) _
418+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/generate/template.ts ) _
419419
420420## ` sf agent generate test-spec `
421421
@@ -473,7 +473,7 @@ EXAMPLES
473473 force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
474474```
475475
476- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/generate/test-spec.ts ) _
476+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/generate/test-spec.ts ) _
477477
478478## ` sf agent preview `
479479
@@ -518,59 +518,25 @@ DESCRIPTION
518518
519519 Find the agent's API name in its main details page in your org's Agent page in Setup.
520520
521- Before you use this command, you must complete these steps:
522-
523- 1. Using your org's Setup UI, create a connected app in your org as described in the "Create a Connected App" section
524- here: https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#create-a-connected-app. Do
525- these additional steps:
526-
527- a. When specifying the connected app's Callback URL, add this second callback URL on a new line:
528- "http://localhost:1717/OauthRedirect".
529-
530- b. When adding the scopes to the connected app, add "Manage user data via Web browsers (web)".
531-
532- 2. Add the connected app to your agent as described in the "Add Connected App to Agent" section here:
533- https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#add-connected-app-to-agent.
534-
535- 3. Copy the consumer key from your connected app as described in the "Obtain Credentials" section here:
536- https://developer.salesforce.com/docs/einstein/genai/guide/agent-api-get-started.html#obtain-credentials.
537-
538- 4. If you haven't already, run the "org login web" CLI command as usual to authorize the development org that contains
539- the agent you want to preview.
540-
541- 5. Re-run the "org web login" command to link the new connected app to your already-authenticated user. Use the
542- --client-app flag to give the link a name; you can specify any string, but make a note of it because you'll need it
543- later. Use --username to specify the username that you used to log into the org in the previous step. Use --client-id
544- to specify the consumer key you previously copied. Finally, use --scopes as indicated to specify the required API
545- scopes. Here's an example:
546-
547- sf org login web --client-app agent-app --username <username> --client-id <consumer-key> --scopes "sfap_api
548- chatbot_api refresh_token api web"
549-
550- IMPORTANT: You must use the "--client-id <CONNECTED-APP-CONSUMER-KEY>" flag of "org login web", where
551- CONNECTED-APP-CONSUMER-KEY is the consumer key you previously copied. This step ensures that the "org login web"
552- command uses your custom connected app, and not the default CLI connected app.
553-
554- 6. Press Enter to skip sharing the client secret, then log in with your org username as usual and click Accept.
555-
556- 7. Run this command ("agent preview") to interact with an agent by using the --target-org flag to specify the org
557- username or alias as usual and --client-app to specify the linked connected app ("agent-app" in the previous example).
558- Use the "org display" command to get the list of client apps associated with an org.
521+ IMPORTANT: Before you use this command, you must complete a number of configuration steps in your org and your DX
522+ project. The examples in this help assume you've completed the steps. See "Preview an Agent" in the "Agentforce
523+ Developer Guide" for complete documentation:
524+ https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
559525
560526EXAMPLES
561527 Interact with an agent with API name "Resort_Manager" in the org with alias "my-org" and the linked "agent-app"
562528 connected app:
563529
564- $ sf agent preview --api-name " Resort_Manager" --target-org my-org --client-app agent-app
530+ $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app
565531
566532 Same as the preceding example, but this time save the conversation transcripts to the "./transcripts/my-preview"
567533 directory rather than the default "./temp/agent-preview":
568534
569- $ sf agent preview --api-name " Resort_Manager" --target-org my-org --client-app agent-app --output-dir \
570- " transcripts/my-preview"
535+ $ sf agent preview --api-name Resort_Manager --target-org my-org --client-app agent-app --output-dir \
536+ transcripts/my-preview
571537```
572538
573- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/preview.ts ) _
539+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/preview.ts ) _
574540
575541## ` sf agent test create `
576542
@@ -625,7 +591,7 @@ EXAMPLES
625591 $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
626592```
627593
628- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/test/create.ts ) _
594+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/test/create.ts ) _
629595
630596## ` sf agent test list `
631597
@@ -660,7 +626,7 @@ EXAMPLES
660626 $ sf agent test list --target-org my-org
661627```
662628
663- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/test/list.ts ) _
629+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/test/list.ts ) _
664630
665631## ` sf agent test results `
666632
@@ -716,7 +682,7 @@ FLAG DESCRIPTIONS
716682 test results aren't written.
717683```
718684
719- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/test/results.ts ) _
685+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/test/results.ts ) _
720686
721687## ` sf agent test resume `
722688
@@ -779,7 +745,7 @@ FLAG DESCRIPTIONS
779745 test results aren't written.
780746```
781747
782- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/test/resume.ts ) _
748+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/test/resume.ts ) _
783749
784750## ` sf agent test run `
785751
@@ -843,7 +809,7 @@ FLAG DESCRIPTIONS
843809 test results aren't written.
844810```
845811
846- _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.3 /src/commands/agent/test/run.ts ) _
812+ _ See code: [ @salesforce/plugin-agent ] ( https://github.com/salesforcecli/plugin-agent/blob/1.23.5 /src/commands/agent/test/run.ts ) _
847813
848814## ` sf alias list `
849815
@@ -7388,7 +7354,7 @@ FLAG DESCRIPTIONS
73887354 If you specify this flag, don’t specify --metadata or --source-dir.
73897355```
73907356
7391- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/convert/mdapi.ts ) _
7357+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/convert/mdapi.ts ) _
73927358
73937359## ` sf project convert source `
73947360
@@ -7461,7 +7427,7 @@ FLAG DESCRIPTIONS
74617427 Override the api version used for api requests made by this command
74627428```
74637429
7464- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/convert/source.ts ) _
7430+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/convert/source.ts ) _
74657431
74667432## ` sf project convert source-behavior `
74677433
@@ -7520,7 +7486,7 @@ EXAMPLES
75207486 $ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
75217487```
75227488
7523- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/convert/source-behavior.ts ) _
7489+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/convert/source-behavior.ts ) _
75247490
75257491## ` sf project delete source `
75267492
@@ -7660,7 +7626,7 @@ FLAG DESCRIPTIONS
76607626 - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
76617627```
76627628
7663- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/delete/source.ts ) _
7629+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/delete/source.ts ) _
76647630
76657631## ` sf project delete tracking `
76667632
@@ -7697,7 +7663,7 @@ EXAMPLES
76977663 $ sf project delete tracking --target-org my-scratch
76987664```
76997665
7700- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/delete/tracking.ts ) _
7666+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/delete/tracking.ts ) _
77017667
77027668## ` sf project deploy cancel `
77037669
@@ -7769,7 +7735,7 @@ FLAG DESCRIPTIONS
77697735 project deploy report".
77707736```
77717737
7772- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/cancel.ts ) _
7738+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/cancel.ts ) _
77737739
77747740## ` sf project deploy preview `
77757741
@@ -7852,7 +7818,7 @@ FLAG DESCRIPTIONS
78527818 All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
78537819```
78547820
7855- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/preview.ts ) _
7821+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/preview.ts ) _
78567822
78577823## ` sf project deploy quick `
78587824
@@ -7945,7 +7911,7 @@ ERROR CODES
79457911 Canceling (69) The deploy is being canceled.
79467912```
79477913
7948- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/quick.ts ) _
7914+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/quick.ts ) _
79497915
79507916## ` sf project deploy report `
79517917
@@ -8037,7 +8003,7 @@ FLAG DESCRIPTIONS
80378003 --coverage-formatters lcov --coverage-formatters clover
80388004```
80398005
8040- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/report.ts ) _
8006+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/report.ts ) _
80418007
80428008## ` sf project deploy resume `
80438009
@@ -8134,7 +8100,7 @@ ERROR CODES
81348100 Canceling (69) The deploy is being canceled.
81358101```
81368102
8137- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/resume.ts ) _
8103+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/resume.ts ) _
81388104
81398105## ` sf project deploy start `
81408106
@@ -8387,7 +8353,7 @@ ERROR CODES
83878353 Canceling (69) The deploy is being canceled.
83888354```
83898355
8390- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/start.ts ) _
8356+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/start.ts ) _
83918357
83928358## ` sf project deploy validate `
83938359
@@ -8577,7 +8543,7 @@ ERROR CODES
85778543 Canceling (69) The deploy is being canceled.
85788544```
85798545
8580- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/deploy/validate.ts ) _
8546+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/deploy/validate.ts ) _
85818547
85828548## ` sf project generate `
85838549
@@ -8778,7 +8744,7 @@ EXAMPLES
87788744 $ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
87798745```
87808746
8781- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/generate/manifest.ts ) _
8747+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/generate/manifest.ts ) _
87828748
87838749## ` sf project list ignored `
87848750
@@ -8820,7 +8786,7 @@ EXAMPLES
88208786 $ sf project list ignored --source-dir package.xml
88218787```
88228788
8823- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/list/ignored.ts ) _
8789+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/list/ignored.ts ) _
88248790
88258791## ` sf project reset tracking `
88268792
@@ -8869,7 +8835,7 @@ EXAMPLES
88698835 $ sf project reset tracking --revision 30
88708836```
88718837
8872- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/reset/tracking.ts ) _
8838+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/reset/tracking.ts ) _
88738839
88748840## ` sf project retrieve preview `
88758841
@@ -8923,7 +8889,7 @@ FLAG DESCRIPTIONS
89238889 production orgs.
89248890```
89258891
8926- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/retrieve/preview.ts ) _
8892+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/retrieve/preview.ts ) _
89278893
89288894## ` sf project retrieve start `
89298895
@@ -9104,7 +9070,7 @@ ENVIRONMENT VARIABLES
91049070 SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
91059071```
91069072
9107- _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.33 /src/commands/project/retrieve/start.ts ) _
9073+ _ See code: [ @salesforce/plugin-deploy-retrieve ] ( https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.22.34 /src/commands/project/retrieve/start.ts ) _
91089074
91099075## ` sf schema generate field `
91109076
0 commit comments