codebyplan 1.4.1 → 1.4.3
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 +10 -7
- package/dist/cli.js +790 -289
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ npx codebyplan setup
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
This will:
|
|
12
|
+
|
|
12
13
|
1. Prompt for your API key (get one at [codebyplan.com/settings/api-keys](https://codebyplan.com/settings/api-keys))
|
|
13
14
|
2. Configure Claude Code to connect via remote MCP
|
|
14
15
|
3. Optionally link a repository and run the first sync
|
|
@@ -25,13 +26,15 @@ Bidirectional sync of `.claude/` infrastructure files between your local project
|
|
|
25
26
|
|
|
26
27
|
**Options:**
|
|
27
28
|
|
|
28
|
-
| Flag
|
|
29
|
-
|
|
30
|
-
| `--path <dir>`
|
|
29
|
+
| Flag | Description |
|
|
30
|
+
| ------------------ | ------------------------------------------------ |
|
|
31
|
+
| `--path <dir>` | Project root directory (default: cwd) |
|
|
31
32
|
| `--repo-id <uuid>` | Repository ID (default: from `.codebyplan.json`) |
|
|
32
|
-
| `--dry-run`
|
|
33
|
-
| `--force`
|
|
34
|
-
| `--fix`
|
|
33
|
+
| `--dry-run` | Preview changes without writing |
|
|
34
|
+
| `--force` | Skip confirmation and conflict prompts |
|
|
35
|
+
| `--fix` | Auto-create missing port allocations |
|
|
36
|
+
|
|
37
|
+
**Side effects:** writes `worktree_id` (UUID) at the top level of `.codebyplan.json`, used as a cached scope for workflow skills. See `.claude/rules/worktree-tagging.md`.
|
|
35
38
|
|
|
36
39
|
### `codebyplan help`
|
|
37
40
|
|
|
@@ -49,7 +52,7 @@ Claude Code connects to CodeByPlan via a remote MCP server. The `setup` command
|
|
|
49
52
|
{
|
|
50
53
|
"mcpServers": {
|
|
51
54
|
"codebyplan": {
|
|
52
|
-
"url": "https://codebyplan.com/mcp",
|
|
55
|
+
"url": "https://www.codebyplan.com/mcp",
|
|
53
56
|
"headers": { "x-api-key": "your-api-key" }
|
|
54
57
|
}
|
|
55
58
|
}
|