syntaur 0.23.0 → 0.25.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/dist/dashboard/server.js +164 -129
- package/dist/dashboard/server.js.map +1 -1
- package/dist/index.js +2721 -2050
- package/dist/index.js.map +1 -1
- package/dist/launch/index.d.ts +3 -0
- package/dist/launch/index.js +53 -40
- package/dist/launch/index.js.map +1 -1
- package/package.json +1 -1
- package/platforms/README.md +29 -1
package/package.json
CHANGED
package/platforms/README.md
CHANGED
|
@@ -4,13 +4,41 @@ Adapters generate framework-specific instruction files that teach non-Claude-Cod
|
|
|
4
4
|
agents how to follow the Syntaur protocol. Each adapter produces files in the
|
|
5
5
|
format expected by the target framework.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Adapters are the **Tier-2** layer. **Tier-1** (the actual `SKILL.md` skills) ships
|
|
8
|
+
to any agent via the open Agent Skills spec — see "Installing skills into any
|
|
9
|
+
agent" below.
|
|
10
|
+
|
|
11
|
+
## Supported Frameworks (Tier-2 protocol adapters)
|
|
12
|
+
|
|
13
|
+
Driven declaratively by the registry in `src/targets/registry.ts`.
|
|
8
14
|
|
|
9
15
|
| Framework | Generated Files | Discovery Mechanism |
|
|
10
16
|
|-----------|----------------|---------------------|
|
|
11
17
|
| **Cursor** | `.cursor/rules/syntaur-protocol.mdc`, `.cursor/rules/syntaur-assignment.mdc` | Cursor reads `.cursor/rules/*.mdc` files with YAML frontmatter |
|
|
12
18
|
| **Codex** | `AGENTS.md` | Codex reads `AGENTS.md` at repo root |
|
|
13
19
|
| **OpenCode** | `AGENTS.md`, `opencode.json` | OpenCode reads `AGENTS.md` at project root, plus optional `opencode.json` |
|
|
20
|
+
| **Pi** | `AGENTS.md` | Pi reads `AGENTS.md` or `CLAUDE.md` |
|
|
21
|
+
| **OpenClaw** | `AGENTS.md` | OpenClaw reads `AGENTS.md` (built on Pi) |
|
|
22
|
+
| **Hermes Agent** | `SOUL.md` | Hermes reads `SOUL.md` / context files |
|
|
23
|
+
|
|
24
|
+
## Installing skills into any agent (Tier 1)
|
|
25
|
+
|
|
26
|
+
Syntaur's `skills/` directory is a valid Agent Skills source, so the skills
|
|
27
|
+
install into any of the ~56 agents the ecosystem supports via `npx skills add`:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Turnkey (wraps `npx skills add` + writes the Tier-2 protocol files):
|
|
31
|
+
syntaur setup --target pi # or hermes, openclaw, cursor, opencode
|
|
32
|
+
syntaur setup --target hermes,openclaw # several at once
|
|
33
|
+
syntaur setup --target pi --dry-run # preview, write nothing
|
|
34
|
+
|
|
35
|
+
# Or use the Agent Skills CLI directly:
|
|
36
|
+
npx skills add prong-horn/syntaur --agent pi
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If `npx` is unavailable, `syntaur setup --target <id>` falls back to copying the
|
|
40
|
+
bundled skills directly into the agent's skills dir. See
|
|
41
|
+
`references/tool-dialects.md` for the Syntaur-id ↔ skills.sh-id mapping.
|
|
14
42
|
|
|
15
43
|
## Usage
|
|
16
44
|
|