create-cofounder 0.1.11 → 0.1.12

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 (3) hide show
  1. package/README.md +11 -1
  2. package/index.js +3 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -3,12 +3,14 @@
3
3
  Initializer for Cofounder Crew projects.
4
4
 
5
5
  ```bash
6
- npm create cofounder@latest -- --setup-codex --yes
6
+ npm create cofounder@latest -- --setup-codex
7
7
  codex
8
8
  ```
9
9
 
10
10
  This creates a `.cofounder/` team skeleton, adds `.cofounder/.gitignore` for run/worktree artifacts, derives `.cofounder/project.md` from `AGENTS.md` when available, adds Codex-facing project instructions when `AGENTS.md` is not already present, and can install the Codex MCP entry.
11
11
 
12
+ Each member can be given focused capabilities through its `settings.toml`: project-owned MCP servers from `.cofounder/mcp/`, selected MCP servers from the primary Codex config, selected project skills from `.agents/skills/`, project-owned member-only skills from `.cofounder/skills/`, or selected existing user/global skills linked into that member's runtime home.
13
+
12
14
  If `AGENTS.md` already exists, Cofounder will not modify it. Add the short Cofounder bridge block printed by the initializer so Codex knows to read `.cofounder/codex-instructions.md`.
13
15
 
14
16
  After initialization, the intended interface is Codex chat:
@@ -19,4 +21,12 @@ Ask backend to inspect this repo.
19
21
  Help me add or adjust a Cofounder teammate.
20
22
  ```
21
23
 
24
+ For CLI onboarding and edits, use:
25
+
26
+ ```bash
27
+ npx -y --package cofounder-crew -- cofounder start
28
+ npx -y --package cofounder-crew -- cofounder add
29
+ npx -y --package cofounder-crew -- cofounder doctor
30
+ ```
31
+
22
32
  The `worktree` template requires a Git repository with at least one commit before delegated tasks can run in isolated worktrees.
package/index.js CHANGED
@@ -30,7 +30,9 @@ function printConversationNext({ setupInstalled }) {
30
30
  console.log("");
31
31
  console.log("Next:");
32
32
  if (!setupInstalled) {
33
- console.log(` ${formatCofounderCommand(["setup", "codex", "--install"])}`);
33
+ console.log(` ${formatCofounderCommand(["start", "--setup-codex", "--yes"])}`);
34
+ } else {
35
+ console.log(` ${formatCofounderCommand(["doctor"])}`);
34
36
  }
35
37
  console.log(" codex");
36
38
  console.log("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cofounder",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Initializer for Cofounder Crew projects",
5
5
  "keywords": [
6
6
  "codex",