syntaur 0.38.0 → 0.39.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/.claude-plugin/plugin.json +1 -1
- package/dist/dashboard/server.js +28 -0
- package/dist/dashboard/server.js.map +1 -1
- package/dist/index.js +28 -0
- package/dist/index.js.map +1 -1
- package/dist/launch/index.js +28 -0
- package/dist/launch/index.js.map +1 -1
- package/package.json +1 -1
- package/platforms/claude-code/.claude-plugin/plugin.json +1 -1
- package/platforms/codex/.codex-plugin/plugin.json +1 -1
- package/platforms/hermes/plugins/syntaur/__pycache__/__init__.cpython-312.pyc +0 -0
- package/platforms/hermes/plugins/syntaur/__pycache__/boundary.cpython-312.pyc +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "syntaur",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.39.0",
|
|
4
4
|
"description": "Syntaur protocol skills for AI coding agents — assignment, project, plan, and session lifecycle. Cross-agent (Claude Code, Codex, Cursor, OpenCode, Gemini CLI, and more via skills.sh).",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Brennen",
|
package/dist/dashboard/server.js
CHANGED
|
@@ -1743,6 +1743,34 @@ var init_agents_schema = __esm({
|
|
|
1743
1743
|
command: "codex",
|
|
1744
1744
|
resume: { args: ["resume", "{id}"] },
|
|
1745
1745
|
fork: { args: ["fork", "{id}"] }
|
|
1746
|
+
},
|
|
1747
|
+
// pi: resume/fork verified against `pi --help` (pi is installed) — `--session
|
|
1748
|
+
// <path|id>` continues a recorded session, `--fork <path|id>` forks one. (Not
|
|
1749
|
+
// `--resume`, which is an interactive picker that takes no id.)
|
|
1750
|
+
{
|
|
1751
|
+
id: "pi",
|
|
1752
|
+
label: "Pi",
|
|
1753
|
+
command: "pi",
|
|
1754
|
+
resume: { args: ["--session", "{id}"] },
|
|
1755
|
+
fork: { args: ["--fork", "{id}"] }
|
|
1756
|
+
},
|
|
1757
|
+
// openclaw: resume/fork intentionally omitted. The openclaw binary is not
|
|
1758
|
+
// installed here, so its CLI cannot be verified; the only evidence it shares
|
|
1759
|
+
// pi's flags is a hedged design-memo assumption (see src/targets/registry.ts).
|
|
1760
|
+
// A missing recipe degrades gracefully to LaunchError('mode-not-supported'),
|
|
1761
|
+
// which a user can override via ~/.syntaur/config.md; a wrong recipe would
|
|
1762
|
+
// silently launch the wrong command. Add verified recipes once installable.
|
|
1763
|
+
{
|
|
1764
|
+
id: "openclaw",
|
|
1765
|
+
label: "OpenClaw",
|
|
1766
|
+
command: "openclaw"
|
|
1767
|
+
},
|
|
1768
|
+
// hermes: resume/fork omitted — binary not installed and no resume/fork CLI is
|
|
1769
|
+
// documented for it. Ship launch-only; same graceful-degradation rationale.
|
|
1770
|
+
{
|
|
1771
|
+
id: "hermes",
|
|
1772
|
+
label: "Hermes",
|
|
1773
|
+
command: "hermes"
|
|
1746
1774
|
}
|
|
1747
1775
|
];
|
|
1748
1776
|
AGENT_ID_PATTERN = /^[a-z0-9][a-z0-9_-]*$/;
|