@wangcansun/cc-config 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/cli.mjs +1 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -19,9 +19,9 @@ npx @wangcansun/cc-config start # launch the dashboard on http://localhost:
|
|
|
19
19
|
|
|
20
20
|
# …or install globally
|
|
21
21
|
npm install -g @wangcansun/cc-config
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
cc-config # interactive TUI
|
|
23
|
+
cc-config start # launch the dashboard
|
|
24
|
+
cc-config list # list plugins, MCP servers, skills, commands
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### Option B — Claude Code plugin
|
package/cli.mjs
CHANGED
|
@@ -40062,7 +40062,7 @@ async function main() {
|
|
|
40062
40062
|
process.exit(code);
|
|
40063
40063
|
}
|
|
40064
40064
|
const program2 = new Command();
|
|
40065
|
-
program2.name("
|
|
40065
|
+
program2.name("cc-config").description("Claude configuration manager CLI").version("1.2.0");
|
|
40066
40066
|
program2.addCommand(makeStartCommand());
|
|
40067
40067
|
program2.addCommand(makeListCommand());
|
|
40068
40068
|
program2.addCommand(makeProfileCommand());
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wangcansun/cc-config",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Standalone CLI + dashboard to manage your whole Claude Code setup: plugins, MCP servers, skills, commands, settings, profiles, sessions, and usage metrics.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"claude-config": "./cli.mjs",
|
|
8
7
|
"cc-config": "./cli.mjs"
|
|
9
8
|
},
|
|
10
9
|
"files": [
|