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.
- package/README.md +26 -3
- package/dist/index.js +650 -155
- package/dist/index.js.map +1 -1
- package/package.json +8 -2
- package/platforms/claude-code/.claude-plugin/plugin.json +1 -5
- package/platforms/claude-code/agents/syntaur-expert.md +30 -18
- package/platforms/claude-code/commands/complete-assignment/complete-assignment.md +20 -0
- package/platforms/claude-code/commands/create-assignment/create-assignment.md +20 -0
- package/platforms/claude-code/commands/create-project/create-project.md +20 -0
- package/platforms/claude-code/commands/grab-assignment/grab-assignment.md +20 -0
- package/platforms/claude-code/commands/plan-assignment/plan-assignment.md +20 -0
- package/statusline/statusline.sh +133 -0
- package/vendor/syntaur-skills/LICENSE +21 -0
- package/vendor/syntaur-skills/README.md +43 -0
- package/vendor/syntaur-skills/skills/complete-assignment/SKILL.md +146 -0
- package/vendor/syntaur-skills/skills/create-assignment/SKILL.md +72 -0
- package/vendor/syntaur-skills/skills/create-project/SKILL.md +56 -0
- package/vendor/syntaur-skills/skills/grab-assignment/SKILL.md +158 -0
- package/vendor/syntaur-skills/skills/plan-assignment/SKILL.md +137 -0
- package/vendor/syntaur-skills/skills/syntaur-protocol/SKILL.md +119 -0
- package/vendor/syntaur-skills/skills/syntaur-protocol/references/file-ownership.md +67 -0
- package/vendor/syntaur-skills/skills/syntaur-protocol/references/protocol-summary.md +82 -0
- package/platforms/claude-code/hooks/statusline.sh +0 -110
- package/platforms/claude-code/skills/complete-assignment/SKILL.md +0 -155
- package/platforms/claude-code/skills/create-assignment/SKILL.md +0 -67
- package/platforms/claude-code/skills/grab-assignment/SKILL.md +0 -202
- package/platforms/claude-code/skills/plan-assignment/SKILL.md +0 -156
- package/platforms/claude-code/skills/syntaur-protocol/SKILL.md +0 -86
- package/platforms/codex/skills/complete-assignment/SKILL.md +0 -64
- package/platforms/codex/skills/create-assignment/SKILL.md +0 -49
- package/platforms/codex/skills/grab-assignment/SKILL.md +0 -73
- package/platforms/codex/skills/plan-assignment/SKILL.md +0 -61
- 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-
|
|
81
|
-
npx syntaur@latest create-assignment "Implement feature" --
|
|
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
|
-
|
|
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
|