You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/b2c-cli/skills/b2c-config/SKILL.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@ description: View and debug b2c CLI configuration and understand where credentia
5
5
6
6
# B2C Config Skill
7
7
8
-
Use the `b2c setup config` command to view the resolved configuration and understand where each value comes from. This is essential for debugging configuration issues and verifying that the CLI is using the correct settings.
8
+
Use the `b2c setup inspect` command to view the resolved configuration and understand where each value comes from. This is essential for debugging configuration issues and verifying that the CLI is using the correct settings.
9
9
10
-
> **Tip:** If `b2c` is not installed globally, use `npx @salesforce/b2c-cli` instead (e.g., `npx @salesforce/b2c-cli setup config`).
10
+
> **Tip:**`b2c setup config` still works as an alias. If `b2c` is not installed globally, use `npx @salesforce/b2c-cli` instead (e.g., `npx @salesforce/b2c-cli setup inspect`).
11
11
12
12
## When to Use
13
13
14
-
Use `b2c setup config` when you need to:
14
+
Use `b2c setup inspect` when you need to:
15
15
16
16
- Verify which configuration file is being used
17
17
- Check if environment variables are being read correctly
@@ -26,33 +26,33 @@ Use `b2c setup config` when you need to:
26
26
27
27
```bash
28
28
# Display resolved configuration (sensitive values masked by default)
29
-
b2c setup config
29
+
b2c setup inspect
30
30
31
31
# View configuration for a specific instance from dw.json
32
-
b2c setup config -i staging
32
+
b2c setup inspect -i staging
33
33
34
34
# View configuration with a specific config file
35
-
b2c setup config --config /path/to/dw.json
35
+
b2c setup inspect --config /path/to/dw.json
36
36
```
37
37
38
38
### Debug Sensitive Values
39
39
40
40
```bash
41
41
# Show actual passwords, secrets, and API keys (use with caution)
0 commit comments