create-cofounder 0.1.12 → 0.1.14
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 +4 -3
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,9 +24,10 @@ Help me add or adjust a Cofounder teammate.
|
|
|
24
24
|
For CLI onboarding and edits, use:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
npm install -g cofounder-crew@latest
|
|
28
|
+
cofounder start
|
|
29
|
+
cofounder add
|
|
30
|
+
cofounder doctor
|
|
30
31
|
```
|
|
31
32
|
|
|
32
33
|
The `worktree` template requires a Git repository with at least one commit before delegated tasks can run in isolated worktrees.
|
package/index.js
CHANGED
|
@@ -166,7 +166,7 @@ function printWorktreePrerequisiteWarning() {
|
|
|
166
166
|
console.log(" git add .");
|
|
167
167
|
console.log(' git commit -m "chore: initial commit"');
|
|
168
168
|
console.log("");
|
|
169
|
-
console.log(' Or use direct mode by setting mode = "direct" under [write] in
|
|
169
|
+
console.log(' Or use direct mode by setting mode = "direct" under [write] in the member settings.toml file.');
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
function quoteShellArg(value) {
|