@ngcodes/ccpm 0.3.2 → 0.4.1
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 +28 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,7 +55,13 @@ work api_key ✓ sk-ant-...7f2k ★
|
|
|
55
55
|
- **Parallel sessions**: run different Claude Code accounts in different terminals simultaneously
|
|
56
56
|
- **Full isolation**: each profile has its own credentials, settings, MCP servers, projects, and memory
|
|
57
57
|
- **OAuth + API key**: supports both authentication methods per profile
|
|
58
|
-
- **
|
|
58
|
+
- **Asset management**: skills, agents, commands, rules, hooks install globally or per-profile; MCP servers install globally, per-profile, or per-project (`ccpm mcp add --scope global|profile|project`)
|
|
59
|
+
- **MCP transports**: stdio, HTTP, and SSE. `ccpm mcp auth <server> --profile <p>` runs native claude's OAuth flow scoped to the profile.
|
|
60
|
+
- **Plugin activation per profile**: override `enabledPlugins` so a plugin can be on in one profile and off in another
|
|
61
|
+
- **Permissions UI**: `ccpm permissions allow|ask|deny|mode` writes `permissions.{allow,ask,deny,defaultMode}` directly — no JSON surgery needed
|
|
62
|
+
- **Per-profile env vars**: `ccpm env set` persists them; `ccpm run --ccpm-env KEY=VAL` overlays one-shot overrides. Unknown flags (`--dangerously-skip-permissions`, `--model`, ...) flow through to claude with no `--` separator needed.
|
|
63
|
+
- **Sessions**: `ccpm sessions list <profile>` browses Claude Code's session files
|
|
64
|
+
- **Settings**: native-Claude-compatible merge — `~/.claude/settings.json` → profile fragment → project `.claude/settings.{json,local.json}` → enterprise managed-settings (org policy, highest precedence)
|
|
59
65
|
- **Encrypted vault**: AES-256-GCM encrypted credential backups with master key in your OS keychain
|
|
60
66
|
- **IDE support**: set the default profile for VS Code with `ccpm set-default`
|
|
61
67
|
- **Shell integration**: `ccpm use` sets the profile for your entire shell session
|
|
@@ -63,23 +69,27 @@ work api_key ✓ sk-ant-...7f2k ★
|
|
|
63
69
|
|
|
64
70
|
## Commands
|
|
65
71
|
|
|
66
|
-
| Command
|
|
67
|
-
|
|
|
68
|
-
| `ccpm add <name>`
|
|
69
|
-
| `ccpm run <name
|
|
70
|
-
| `ccpm use <name>`
|
|
71
|
-
| `ccpm list`
|
|
72
|
-
| `ccpm status`
|
|
73
|
-
| `ccpm doctor`
|
|
74
|
-
| `ccpm set-default <name>`
|
|
75
|
-
| `ccpm remove <name>`
|
|
76
|
-
| `ccpm sync`
|
|
77
|
-
| `ccpm import default`
|
|
78
|
-
| `ccpm
|
|
79
|
-
| `ccpm
|
|
80
|
-
| `ccpm
|
|
81
|
-
| `ccpm
|
|
82
|
-
| `ccpm
|
|
72
|
+
| Command | Description |
|
|
73
|
+
| ------------------------------------------------------------ | ------------------------------------------------------------------------- |
|
|
74
|
+
| `ccpm add <name>` | Create a new profile (OAuth or API key) with an interactive import wizard |
|
|
75
|
+
| `ccpm run <name> [claude-args...]` | Launch Claude Code with a profile (unknown flags forward to claude) |
|
|
76
|
+
| `ccpm use <name>` | Set profile for the current shell session |
|
|
77
|
+
| `ccpm list` | List all profiles and their status |
|
|
78
|
+
| `ccpm status` | Show system overview |
|
|
79
|
+
| `ccpm doctor` | Diagnose env, auth health, root-vs-profile drift, symlink integrity |
|
|
80
|
+
| `ccpm set-default <name>` | Set the default profile for IDEs |
|
|
81
|
+
| `ccpm remove <name>` | Delete a profile |
|
|
82
|
+
| `ccpm sync` | Sync global installs into profiles |
|
|
83
|
+
| `ccpm import default` / `ccpm import from-profile` | Import assets from `~/.claude` or clone from another ccpm profile |
|
|
84
|
+
| `ccpm skill/agent/command/rule add/remove/list/link` | Manage Claude Code asset types |
|
|
85
|
+
| `ccpm plugin list/enable/disable` | Manage plugin activation per profile |
|
|
86
|
+
| `ccpm hooks add/remove/list` | Manage hook entries in profile settings |
|
|
87
|
+
| `ccpm mcp add/remove/list/import/auth` | Manage MCP servers (stdio, http, sse) — scope global, profile, or project |
|
|
88
|
+
| `ccpm env set/unset/list` | Persist env vars per profile (injected at `ccpm run`) |
|
|
89
|
+
| `ccpm permissions allow/ask/deny/remove/list/mode` | Manage `permissions.*` rules and defaultMode |
|
|
90
|
+
| `ccpm sessions list <profile>` | List Claude Code sessions stored in a profile |
|
|
91
|
+
| `ccpm settings set/get/apply/show/statusline/outputstyle` | Manage Claude Code settings |
|
|
92
|
+
| `ccpm auth status/refresh/backup/restore` | Manage authentication |
|
|
83
93
|
|
|
84
94
|
## How it works
|
|
85
95
|
|