@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
2525$ sf COMMAND
2626running command...
2727$ sf (--version|-v)
28- @salesforce/cli/2.136.5 linux-x64 node-v22.22.2
28+ @salesforce/cli/2.136.6 linux-x64 node-v22.22.2
2929$ sf --help [COMMAND]
3030USAGE
3131 $ sf COMMAND
@@ -113,6 +113,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
113113- [`sf logic run test`](#sf-logic-run-test)
114114- [`sf org assign permset`](#sf-org-assign-permset)
115115- [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense)
116+ - [`sf org auth show-access-token`](#sf-org-auth-show-access-token)
117+ - [`sf org auth show-sfdx-auth-url`](#sf-org-auth-show-sfdx-auth-url)
118+ - [`sf org auth show-user-password`](#sf-org-auth-show-user-password)
116119- [`sf org create agent-user`](#sf-org-create-agent-user)
117120- [`sf org create sandbox`](#sf-org-create-sandbox)
118121- [`sf org create scratch`](#sf-org-create-scratch)
@@ -4391,6 +4394,140 @@ EXAMPLES
43914394
43924395_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/assign/permsetlicense.ts)_
43934396
4397+ ## `sf org auth show-access-token`
4398+
4399+ Show the current access token for an org.
4400+
4401+ ```
4402+ USAGE
4403+ $ sf org auth show-access-token -o <value> [--json] [--flags-dir <value>] [-p]
4404+
4405+ FLAGS
4406+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
4407+ configuration variable is already set.
4408+ -p, --no-prompt Skip the security warning and reveal the access token without confirmation.
4409+
4410+ GLOBAL FLAGS
4411+ --flags-dir=<value> Import flag values from a directory.
4412+ --json Format output as json.
4413+
4414+ DESCRIPTION
4415+ Show the current access token for an org.
4416+
4417+ Because access tokens are sensitive credentials that grant full access to an org, this command prompts for
4418+ confirmation before revealing the token. Skip confirmation by specifying either the --no-prompt or --json flag.
4419+
4420+ EXAMPLES
4421+ Show the access token for the default org:
4422+
4423+ $ sf org auth show-access-token
4424+
4425+ Show the access token for an org with alias "my-org":
4426+
4427+ $ sf org auth show-access-token --target-org my-org
4428+
4429+ Show the access token without the confirmation prompt:
4430+
4431+ $ sf org auth show-access-token --target-org my-org --no-prompt
4432+
4433+ Get the access token as JSON for use in scripts:
4434+
4435+ $ sf org auth show-access-token --target-org my-org --json
4436+ ```
4437+
4438+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-access-token.ts)_
4439+
4440+ ## `sf org auth show-sfdx-auth-url`
4441+
4442+ Show the SFDX Auth URL for an org.
4443+
4444+ ```
4445+ USAGE
4446+ $ sf org auth show-sfdx-auth-url -o <value> [--json] [--flags-dir <value>] [-p]
4447+
4448+ FLAGS
4449+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
4450+ configuration variable is already set.
4451+ -p, --no-prompt Skip the security warning and reveal the SFDX Auth URL without confirmation.
4452+
4453+ GLOBAL FLAGS
4454+ --flags-dir=<value> Import flag values from a directory.
4455+ --json Format output as json.
4456+
4457+ DESCRIPTION
4458+ Show the SFDX Auth URL for an org.
4459+
4460+ Shows the SFDX Auth URL for an org. This URL is only available for orgs authenticated via a web-based OAuth flow. This
4461+ command prompts for confirmation before revealing it. Skip confirmation by specifying either the --no-prompt or --json
4462+ flag.
4463+
4464+ EXAMPLES
4465+ Show the SFDX Auth URL for the default org:
4466+
4467+ $ sf org auth show-sfdx-auth-url
4468+
4469+ Show the SFDX Auth URL for an org with alias "my-org":
4470+
4471+ $ sf org auth show-sfdx-auth-url --target-org my-org
4472+
4473+ Show the SFDX Auth URL without the confirmation prompt:
4474+
4475+ $ sf org auth show-sfdx-auth-url --target-org my-org --no-prompt
4476+
4477+ Get the SFDX Auth URL as JSON for use in scripts:
4478+
4479+ $ sf org auth show-sfdx-auth-url --target-org my-org --json
4480+ ```
4481+
4482+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-sfdx-auth-url.ts)_
4483+
4484+ ## `sf org auth show-user-password`
4485+
4486+ Show the stored password for an org's user.
4487+
4488+ ```
4489+ USAGE
4490+ $ sf org auth show-user-password -o <value> [--json] [--flags-dir <value>] [-p]
4491+
4492+ FLAGS
4493+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
4494+ configuration variable is already set.
4495+ -p, --no-prompt Skip the security warning and reveal the password without confirmation.
4496+
4497+ GLOBAL FLAGS
4498+ --flags-dir=<value> Import flag values from a directory.
4499+ --json Format output as json.
4500+
4501+ DESCRIPTION
4502+ Show the stored password for an org's user.
4503+
4504+ This command shows only passwords that were generated locally in your DX project with either the "org generate
4505+ password" or "org create user" CLI command. If you generated a password for a user in Setup in your org, you can't
4506+ show it with this command.
4507+
4508+ Because passwords are sensitive credentials, this command prompts for confirmation before revealing it. Skip
4509+ confirmation by specifying either the --no-prompt or --json flag.
4510+
4511+ EXAMPLES
4512+ Show the password for the default org's user:
4513+
4514+ $ sf org auth show-user-password
4515+
4516+ Show the password for an org with alias "my-org":
4517+
4518+ $ sf org auth show-user-password --target-org my-org
4519+
4520+ Show the password without the confirmation prompt:
4521+
4522+ $ sf org auth show-user-password --target-org my-org --no-prompt
4523+
4524+ Get the password as JSON for use in scripts:
4525+
4526+ $ sf org auth show-user-password --target-org my-org --json
4527+ ```
4528+
4529+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-user-password.ts)_
4530+
43944531## `sf org create agent-user`
43954532
43964533Create the default Salesforce user that is used to run an agent.
@@ -4467,7 +4604,7 @@ FLAG DESCRIPTIONS
44674604 "agent.user.<GUID>@your-org-domain.com".
44684605```
44694606
4470- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/create/agent-user.ts)_
4607+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/create/agent-user.ts)_
44714608
44724609## `sf org create sandbox`
44734610
@@ -4601,7 +4738,7 @@ FLAG DESCRIPTIONS
46014738 You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
46024739```
46034740
4604- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/create/sandbox.ts)_
4741+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/create/sandbox.ts)_
46054742
46064743## `sf org create scratch`
46074744
@@ -4783,7 +4920,7 @@ FLAG DESCRIPTIONS
47834920 Omit this flag to have Salesforce generate a unique username for your org.
47844921```
47854922
4786- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/create/scratch.ts)_
4923+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/create/scratch.ts)_
47874924
47884925## `sf org create user`
47894926
@@ -4937,7 +5074,7 @@ EXAMPLES
49375074 $ sf org delete sandbox --target-org my-sandbox --no-prompt
49385075```
49395076
4940- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/delete/sandbox.ts)_
5077+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/delete/sandbox.ts)_
49415078
49425079## `sf org delete scratch`
49435080
@@ -4981,7 +5118,7 @@ EXAMPLES
49815118 $ sf org delete scratch --target-org my-scratch-org --no-prompt
49825119```
49835120
4984- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/delete/scratch.ts)_
5121+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/delete/scratch.ts)_
49855122
49865123## `sf org disable tracking`
49875124
@@ -5020,7 +5157,7 @@ EXAMPLES
50205157 $ sf org disable tracking
50215158```
50225159
5023- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/disable/tracking.ts)_
5160+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/disable/tracking.ts)_
50245161
50255162## `sf org display`
50265163
@@ -5065,7 +5202,7 @@ EXAMPLES
50655202 $ sf org display --target-org TestOrg1 --verbose
50665203```
50675204
5068- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/display.ts)_
5205+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/display.ts)_
50695206
50705207## `sf org display user`
50715208
@@ -5146,7 +5283,7 @@ EXAMPLES
51465283 $ sf org enable tracking
51475284```
51485285
5149- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/enable/tracking.ts)_
5286+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/enable/tracking.ts)_
51505287
51515288## `sf org generate password`
51525289
@@ -5252,7 +5389,7 @@ EXAMPLES
52525389 $ sf org list --clean
52535390```
52545391
5255- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/list.ts)_
5392+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/list.ts)_
52565393
52575394## `sf org list auth`
52585395
@@ -5391,7 +5528,7 @@ FLAG DESCRIPTIONS
53915528 Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
53925529```
53935530
5394- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/list/metadata.ts)_
5531+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/list/metadata.ts)_
53955532
53965533## `sf org list metadata-types`
53975534
@@ -5446,7 +5583,7 @@ FLAG DESCRIPTIONS
54465583 Override the api version used for api requests made by this command
54475584```
54485585
5449- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/list/metadata-types.ts)_
5586+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/list/metadata-types.ts)_
54505587
54515588## `sf org list sobject record-counts`
54525589
@@ -5992,7 +6129,7 @@ EXAMPLES
59926129 $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
59936130```
59946131
5995- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/open.ts)_
6132+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/open.ts)_
59966133
59976134## `sf org open agent`
59986135
@@ -6067,7 +6204,7 @@ FLAG DESCRIPTIONS
60676204 flag.
60686205```
60696206
6070- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/open/agent.ts)_
6207+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/open/agent.ts)_
60716208
60726209## `sf org open authoring-bundle`
60736210
@@ -6113,7 +6250,7 @@ EXAMPLES
61136250 $ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
61146251```
61156252
6116- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/open/authoring-bundle.ts)_
6253+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/open/authoring-bundle.ts)_
61176254
61186255## `sf org refresh sandbox`
61196256
@@ -6216,7 +6353,7 @@ FLAG DESCRIPTIONS
62166353 You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
62176354```
62186355
6219- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/refresh/sandbox.ts)_
6356+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/refresh/sandbox.ts)_
62206357
62216358## `sf org resume sandbox`
62226359
@@ -6279,7 +6416,7 @@ FLAG DESCRIPTIONS
62796416 returns the job ID. To resume checking the sandbox creation, rerun this command.
62806417```
62816418
6282- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/resume/sandbox.ts)_
6419+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/resume/sandbox.ts)_
62836420
62846421## `sf org resume scratch`
62856422
@@ -6332,7 +6469,7 @@ FLAG DESCRIPTIONS
63326469 returns the job ID. To resume checking the scratch creation, rerun this command.
63336470```
63346471
6335- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14 /src/commands/org/resume/scratch.ts)_
6472+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0 /src/commands/org/resume/scratch.ts)_
63366473
63376474## `sf package convert`
63386475
@@ -10310,7 +10447,7 @@ EXAMPLES
1031010447 $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
1031110448```
1031210449
10313- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.113 /src/commands/sobject/describe.ts)_
10450+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.114 /src/commands/sobject/describe.ts)_
1031410451
1031510452## `sf sobject list`
1031610453
@@ -10349,7 +10486,7 @@ EXAMPLES
1034910486 $ sf sobject list --sobject custom --target-org my-scratch-org
1035010487```
1035110488
10352- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.113 /src/commands/sobject/list.ts)_
10489+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.114 /src/commands/sobject/list.ts)_
1035310490
1035410491## `sf template generate analytics template`
1035510492
0 commit comments