cofounder-crew 0.1.1 → 0.1.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 +18 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ Cofounder Crew gives a project a small file-based team runtime: named members, r
6
6
 
7
7
  ```bash
8
8
  cd my-project
9
- npm create cofounder@latest
9
+ npm create cofounder@latest -- --template worktree --setup-codex --yes
10
10
  codex
11
11
  ```
12
12
 
@@ -20,6 +20,12 @@ Create a team skeleton:
20
20
  npm create cofounder@latest
21
21
  ```
22
22
 
23
+ This does not install a persistent `cofounder` shell command. For one-off runtime commands, use:
24
+
25
+ ```bash
26
+ npx -y --package cofounder-crew -- cofounder team
27
+ ```
28
+
23
29
  Use isolated Git worktrees for implementation tasks and install the Codex MCP entry:
24
30
 
25
31
  ```bash
@@ -68,21 +74,21 @@ The important part is that everything is plain files. You can inspect prompts, s
68
74
  ## Core Commands
69
75
 
70
76
  ```bash
71
- cofounder team
72
- cofounder run backend "inspect this repo"
73
- cofounder delegate backend "add focused tests for the parser"
74
- cofounder status <task_id>
75
- cofounder logs <task_id>
76
- cofounder watch <task_id>
77
- cofounder cancel <task_id>
78
- cofounder interrupt <task_id> "revise the approach and continue"
77
+ npx -y --package cofounder-crew -- cofounder team
78
+ npx -y --package cofounder-crew -- cofounder run backend "inspect this repo"
79
+ npx -y --package cofounder-crew -- cofounder delegate backend "add focused tests for the parser"
80
+ npx -y --package cofounder-crew -- cofounder status <task_id>
81
+ npx -y --package cofounder-crew -- cofounder logs <task_id>
82
+ npx -y --package cofounder-crew -- cofounder watch <task_id>
83
+ npx -y --package cofounder-crew -- cofounder cancel <task_id>
84
+ npx -y --package cofounder-crew -- cofounder interrupt <task_id> "revise the approach and continue"
79
85
  ```
80
86
 
81
87
  For isolated worktree tasks:
82
88
 
83
89
  ```bash
84
- cofounder diff <task_id>
85
- cofounder apply <task_id>
90
+ npx -y --package cofounder-crew -- cofounder diff <task_id>
91
+ npx -y --package cofounder-crew -- cofounder apply <task_id>
86
92
  ```
87
93
 
88
94
  `diff` prints the generated patch. `apply` validates it with `git apply --check`, applies it to the main working tree, and stores the patch under `.cofounder/runs/<task_id>/apply.patch`.
@@ -92,7 +98,7 @@ cofounder apply <task_id>
92
98
  Install the MCP entry:
93
99
 
94
100
  ```bash
95
- cofounder setup codex --install
101
+ npx -y --package cofounder-crew -- cofounder setup codex --install
96
102
  ```
97
103
 
98
104
  Equivalent command:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cofounder-crew",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Codex-backed local team runtime",
5
5
  "type": "module",
6
6
  "files": [