@efoo/ccprofile 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,6 +4,19 @@ Per-directory Claude Code account routing via `CLAUDE_CODE_OAUTH_TOKEN`, direnv,
4
4
 
5
5
  `ccprofile` lets you run **multiple Claude Code accounts in parallel** — one per terminal, one per project — with zero manual switching. It never touches Claude Code's own Keychain entry, so there is no global "active account" to corrupt.
6
6
 
7
+ ## 🤖 Install with an AI agent
8
+
9
+ Paste this prompt into Claude Code, Cursor, or any coding agent:
10
+
11
+ ```
12
+ Install and configure ccprofile by following the instructions here:
13
+ https://raw.githubusercontent.com/efoo-team/ccprofile/main/docs/install-for-agents.md
14
+ ```
15
+
16
+ The agent will check prerequisites (direnv, hooks), install the CLI, ask
17
+ whether you want shell completion, and walk you through registering accounts —
18
+ only the browser OAuth step needs your hands.
19
+
7
20
  ## Why
8
21
 
9
22
  Claude Code stores its OAuth credentials in a single macOS Keychain entry, shared across every `CLAUDE_CONFIG_DIR` profile ([#20553](https://github.com/anthropics/claude-code/issues/20553)). Switcher-style tools work around this by swapping that entry in place — which breaks down the moment two sessions with different accounts run at the same time (in-session token refresh writes the old account back).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@efoo/ccprofile",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Per-directory Claude Code account routing via CLAUDE_CODE_OAUTH_TOKEN, direnv, and macOS Keychain",
5
5
  "type": "module",
6
6
  "license": "MIT",