@ngcodes/ccpm 0.2.2 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -55,7 +55,7 @@ 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
- - **Skills, MCP, and settings management**: install globally or per-profile with `--global` / `--profile`
58
+ - **Skills and MCP management**: install globally or per-profile with `--global` / `--profile`; settings share the native `~/.claude/settings.json` baseline and layer per-profile/project overrides on top
59
59
  - **Encrypted vault**: AES-256-GCM encrypted credential backups with master key in your OS keychain
60
60
  - **IDE support**: set the default profile for VS Code with `ccpm set-default`
61
61
  - **Shell integration**: `ccpm use` sets the profile for your entire shell session
@@ -89,7 +89,7 @@ ccpm uses one official mechanism: the `CLAUDE_CONFIG_DIR` environment variable.
89
89
  2. `ccpm run` merges shared settings/MCP fragments, sets `CLAUDE_CONFIG_DIR`, and execs `claude`
90
90
  3. Each terminal gets a completely isolated Claude Code instance
91
91
 
92
- Skills, MCP servers, and settings can be installed globally (`--global`) to apply across all profiles, or per-profile (`--profile <name>`). Global skills are symlinked into each profile from `~/.ccpm/share/`; settings and MCP definitions are stored as JSON fragments and merged into each profile's `settings.json` at launch time.
92
+ Skills and MCP servers can be installed globally (`--global`, stored in `~/.ccpm/share/`) or per-profile (`--profile <name>`). For settings, the cross-profile baseline is the native `~/.claude/settings.json` file (ccpm merges it into every profile at launch); use `ccpm settings set --profile <name>` for per-profile overrides. Per-repo overrides live in `./.claude/settings.json` and are honored automatically.
93
93
 
94
94
  No daemons. No patches. No magic.
95
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngcodes/ccpm",
3
- "version": "0.2.2",
3
+ "version": "0.3.2",
4
4
  "description": "Claude Code Profile Manager — manage multiple Claude Code accounts with isolated profiles",
5
5
  "bin": {
6
6
  "ccpm": "bin/ccpm"