syntaur 0.1.0 → 0.1.2
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 +116 -0
- package/dist/dashboard/server.js +74 -24
- package/dist/dashboard/server.js.map +1 -1
- package/dist/index.js +858 -160
- package/dist/index.js.map +1 -1
- package/package.json +18 -2
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/agents/syntaur-expert.md +2 -2
- package/plugins/syntaur/.codex-plugin/plugin.json +1 -1
- package/plugins/syntaur/agents/syntaur-operator.md +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syntaur",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "CLI
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Mission workflow CLI with dashboard, Claude Code plugin, and Codex plugin",
|
|
5
|
+
"homepage": "https://github.com/prong-horn/syntaur#readme",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/prong-horn/syntaur.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/prong-horn/syntaur/issues"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"agents",
|
|
15
|
+
"cli",
|
|
16
|
+
"codex",
|
|
17
|
+
"claude",
|
|
18
|
+
"workflow",
|
|
19
|
+
"missions"
|
|
20
|
+
],
|
|
5
21
|
"type": "module",
|
|
6
22
|
"bin": {
|
|
7
23
|
"syntaur": "./bin/syntaur.js"
|
|
@@ -146,7 +146,7 @@ Only the assigned agent may write to its own assignment folder.
|
|
|
146
146
|
|---------|-------------|
|
|
147
147
|
| `syntaur init` | Initialize `~/.syntaur/` directory and global config |
|
|
148
148
|
| `syntaur setup` | Guided first-run setup and optional plugin install |
|
|
149
|
-
| `syntaur install-plugin` | Install the Claude Code plugin
|
|
149
|
+
| `syntaur install-plugin` | Install the Claude Code plugin, prompting for the target path when interactive |
|
|
150
150
|
| `syntaur dashboard [--port N]` | Start dashboard web UI (default port 4800) |
|
|
151
151
|
| `syntaur setup-adapter <framework>` | Generate adapter files for cursor, codex, or opencode |
|
|
152
152
|
| `syntaur uninstall [--all]` | Remove plugins and optionally `~/.syntaur` data |
|
|
@@ -181,7 +181,7 @@ All commands support `--dir <path>` to override the default `~/.syntaur/missions
|
|
|
181
181
|
|
|
182
182
|
## Plugin Structure
|
|
183
183
|
|
|
184
|
-
The Syntaur Claude Code plugin is installed
|
|
184
|
+
The Syntaur Claude Code plugin is installed by `syntaur install-plugin`, which recommends a target path and lets the user choose the final location during interactive setup.
|
|
185
185
|
|
|
186
186
|
```
|
|
187
187
|
plugin/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syntaur",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Run Syntaur mission and assignment workflows from Codex, including claiming work, planning, completing handoffs, session tracking, and write-boundary enforcement.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Brennen"
|
|
@@ -72,7 +72,7 @@ Use these commands directly when needed:
|
|
|
72
72
|
- `syntaur create-mission "<title>" [--slug <slug>] [--dir <path>]`
|
|
73
73
|
- `syntaur create-assignment "<title>" --mission <slug> [--slug <slug>] [--priority <level>] [--depends-on <slugs>] [--dir <path>]`
|
|
74
74
|
- `syntaur create-assignment "<title>" --one-off [--slug <slug>] [--priority <level>] [--dir <path>]`
|
|
75
|
-
- `syntaur setup [--yes] [--claude] [--codex] [--dashboard]`
|
|
75
|
+
- `syntaur setup [--yes] [--claude] [--codex] [--claude-dir <path>] [--codex-dir <path>] [--codex-marketplace-path <path>] [--dashboard]`
|
|
76
76
|
- `syntaur assign <assignment-slug> --agent codex --mission <mission-slug>`
|
|
77
77
|
- `syntaur start <assignment-slug> --mission <mission-slug>`
|
|
78
78
|
- `syntaur review <assignment-slug> --mission <mission-slug>`
|