@kitsy/coop 2.1.0 → 2.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.
- package/README.md +12 -2
- package/dist/index.js +550 -142
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -23,16 +23,22 @@ For AI-oriented command discovery:
|
|
|
23
23
|
coop help-ai
|
|
24
24
|
coop help-ai --format json
|
|
25
25
|
coop help-ai --format markdown
|
|
26
|
+
coop help-ai --initial-prompt --strict --repo C:/path/to/repo --delivery MVP --command coop.cmd
|
|
27
|
+
coop config artifacts.dir docs/agent-artifacts
|
|
26
28
|
```
|
|
27
29
|
|
|
30
|
+
On Windows PowerShell, the global npm install may resolve `coop` to `coop.ps1` first. If an agent or CI shell hits execution-policy issues, use `coop.cmd` explicitly.
|
|
31
|
+
|
|
28
32
|
Both entrypoints operate on the nearest parent `.coop/` workspace. If no workspace log target exists, CLI errors fall back to `~/.coop/logs/cli.log` or `COOP_HOME/logs/cli.log`.
|
|
29
33
|
|
|
30
34
|
COOP v2 stores project data under `.coop/projects/<project.id>/...` and keeps workspace selection in `.coop/config.yml`.
|
|
31
35
|
|
|
32
36
|
Current implemented command families:
|
|
33
37
|
- `coop`
|
|
34
|
-
- `coop init [--name <name>] [--id <id>] [--aliases <csv>] [--yes]`
|
|
38
|
+
- `coop init [--name <name>] [--id <id>] [--aliases <csv>] [--naming <template>] [--yes]`
|
|
35
39
|
- `coop project list|create|use|show`
|
|
40
|
+
- `coop naming`
|
|
41
|
+
- `coop naming preview <title> [--template <template>]`
|
|
36
42
|
- `coop create task ...`
|
|
37
43
|
- `coop create task --acceptance <csv> --tests-required <csv> --authority-ref <ref> --derived-ref <ref>`
|
|
38
44
|
- `coop create task --from-file <path> | --stdin`
|
|
@@ -47,6 +53,7 @@ Current implemented command families:
|
|
|
47
53
|
- `coop next task [--track <track>] [--delivery <delivery>]`
|
|
48
54
|
- `coop pick task [--track <track>] [--delivery <delivery>] [--claim] [--to <assignee>]`
|
|
49
55
|
- `coop start task [id] [--claim] [--to <assignee>]`
|
|
56
|
+
- `coop review|complete|block|unblock|cancel|reopen task <id>`
|
|
50
57
|
- `coop assign task <id> --to <assignee> [--actor <actor>]`
|
|
51
58
|
- `coop list tasks|ideas|alias ...`
|
|
52
59
|
- `coop show task|idea ...`
|
|
@@ -70,10 +77,12 @@ Current implemented command families:
|
|
|
70
77
|
- `coop alias ...`
|
|
71
78
|
- `coop list alias [pattern]`
|
|
72
79
|
- `coop config index.data yaml|json`
|
|
73
|
-
- `coop config id.naming "<TYPE>-<
|
|
80
|
+
- `coop config id.naming "<TYPE>-<TITLE16>-<SEQ>"`
|
|
81
|
+
- `coop config id.naming "<TYPE>-<TITLE24>"`
|
|
74
82
|
- `coop config project.name <name>`
|
|
75
83
|
- `coop config project.id <id>`
|
|
76
84
|
- `coop config project.aliases <csv>`
|
|
85
|
+
- `coop config artifacts.dir <path>`
|
|
77
86
|
- `coop config ai.provider mock|openai|anthropic|gemini|ollama|codex_cli|claude_cli|gemini_cli`
|
|
78
87
|
- `coop config ai.model <model-name>`
|
|
79
88
|
- `coop run task <id> [--step <step>] [--dry-run]`
|
|
@@ -86,6 +95,7 @@ Known limitations:
|
|
|
86
95
|
- Plugin runtime supports manifest triggers under `.coop/projects/<project.id>/plugins/*.yml` (webhook + console + `github_pr` actions).
|
|
87
96
|
- `coop ui` is read-only and depends on the active project's `.index` data. The command rebuilds stale indexes before launch.
|
|
88
97
|
- `coop init` creates `.coop/.ignore` and `.coop/.gitignore` so logs, tmp files, and index artifacts are not committed by default.
|
|
98
|
+
- Semantic title-based IDs are the default. Use `coop naming` to inspect token behavior and preview IDs before changing `id.naming`.
|
|
89
99
|
|
|
90
100
|
GitHub integration quick example:
|
|
91
101
|
```yaml
|