syntaur 0.3.3 → 0.4.0

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 (33) hide show
  1. package/README.md +26 -3
  2. package/dist/index.js +650 -155
  3. package/dist/index.js.map +1 -1
  4. package/package.json +8 -2
  5. package/platforms/claude-code/.claude-plugin/plugin.json +1 -5
  6. package/platforms/claude-code/agents/syntaur-expert.md +30 -18
  7. package/platforms/claude-code/commands/complete-assignment/complete-assignment.md +20 -0
  8. package/platforms/claude-code/commands/create-assignment/create-assignment.md +20 -0
  9. package/platforms/claude-code/commands/create-project/create-project.md +20 -0
  10. package/platforms/claude-code/commands/grab-assignment/grab-assignment.md +20 -0
  11. package/platforms/claude-code/commands/plan-assignment/plan-assignment.md +20 -0
  12. package/statusline/statusline.sh +133 -0
  13. package/vendor/syntaur-skills/LICENSE +21 -0
  14. package/vendor/syntaur-skills/README.md +43 -0
  15. package/vendor/syntaur-skills/skills/complete-assignment/SKILL.md +146 -0
  16. package/vendor/syntaur-skills/skills/create-assignment/SKILL.md +72 -0
  17. package/vendor/syntaur-skills/skills/create-project/SKILL.md +56 -0
  18. package/vendor/syntaur-skills/skills/grab-assignment/SKILL.md +158 -0
  19. package/vendor/syntaur-skills/skills/plan-assignment/SKILL.md +137 -0
  20. package/vendor/syntaur-skills/skills/syntaur-protocol/SKILL.md +119 -0
  21. package/vendor/syntaur-skills/skills/syntaur-protocol/references/file-ownership.md +67 -0
  22. package/vendor/syntaur-skills/skills/syntaur-protocol/references/protocol-summary.md +82 -0
  23. package/platforms/claude-code/hooks/statusline.sh +0 -110
  24. package/platforms/claude-code/skills/complete-assignment/SKILL.md +0 -155
  25. package/platforms/claude-code/skills/create-assignment/SKILL.md +0 -67
  26. package/platforms/claude-code/skills/grab-assignment/SKILL.md +0 -202
  27. package/platforms/claude-code/skills/plan-assignment/SKILL.md +0 -156
  28. package/platforms/claude-code/skills/syntaur-protocol/SKILL.md +0 -86
  29. package/platforms/codex/skills/complete-assignment/SKILL.md +0 -64
  30. package/platforms/codex/skills/create-assignment/SKILL.md +0 -49
  31. package/platforms/codex/skills/grab-assignment/SKILL.md +0 -73
  32. package/platforms/codex/skills/plan-assignment/SKILL.md +0 -61
  33. package/platforms/codex/skills/syntaur-protocol/SKILL.md +0 -102
package/README.md CHANGED
@@ -77,13 +77,33 @@ npx syntaur@latest setup \
77
77
 
78
78
  ```bash
79
79
  npx syntaur@latest dashboard
80
- npx syntaur@latest create-mission "My First Mission"
81
- npx syntaur@latest create-assignment "Implement feature" --mission my-first-mission
80
+ npx syntaur@latest create-project "My First Project"
81
+ npx syntaur@latest create-assignment "Implement feature" --project my-first-project
82
82
  npx syntaur@latest doctor
83
83
  npx syntaur@latest uninstall
84
84
  npx syntaur@latest uninstall --all
85
85
  ```
86
86
 
87
+ ## Protocol Skills
88
+
89
+ The six protocol skills (`syntaur-protocol`, `grab-assignment`, `plan-assignment`, `complete-assignment`, `create-assignment`, `create-project`) are maintained in a separate agent-agnostic repo — [`prong-horn/syntaur-skills`](https://github.com/prong-horn/syntaur-skills) — and vendored into this repo as a git submodule at `vendor/syntaur-skills/`.
90
+
91
+ `syntaur install-plugin` and `syntaur install-codex-plugin` automatically copy them into `~/.claude/skills/` or `~/.codex/skills/` (whichever applies). User-edited skills are preserved unless you pass `--force-skills`. Use `syntaur uninstall-skills --all` to remove just the protocol skills without uninstalling the plugin.
92
+
93
+ To update the vendored version:
94
+
95
+ ```bash
96
+ git submodule update --remote --merge vendor/syntaur-skills
97
+ git add vendor/syntaur-skills
98
+ git commit -m "chore: bump vendored syntaur-skills"
99
+ ```
100
+
101
+ For non-Claude, non-Codex agents, install the skills directly:
102
+
103
+ ```bash
104
+ npx skills add prong-horn/syntaur-skills
105
+ ```
106
+
87
107
  ## Troubleshooting
88
108
 
89
109
  If Syntaur state looks inconsistent (missing files, stale manifests, hook blocks, etc.), run `syntaur doctor` to diagnose. Pass `--json` for structured output suitable for agents; the `/doctor-syntaur` slash command in the Claude Code plugin wraps it with interactive remediation.
@@ -107,7 +127,10 @@ If your config points missions somewhere outside `~/.syntaur`, Syntaur will warn
107
127
  ## Development
108
128
 
109
129
  ```bash
110
- npm install
130
+ git clone git@github.com:prong-horn/syntaur.git
131
+ cd syntaur
132
+ git submodule update --init --recursive # clones vendor/syntaur-skills
133
+ npm install # postinstall hook re-runs submodule init if needed
111
134
  npm run typecheck
112
135
  npm test
113
136
  npx vitest run src/__tests__/adapter-templates.test.ts