thoth-agents 0.1.4 → 0.1.6
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 +8 -8
- package/dist/cli/index.js +524 -513
- package/dist/harness/core/sdd.d.ts +20 -0
- package/dist/harness/core/skills.d.ts +2 -2
- package/dist/harness/writers/skill-layout.d.ts +1 -0
- package/dist/index.js +23 -23
- package/package.json +2 -1
- package/src/skills/sdd-design/SKILL.md +12 -2
package/README.md
CHANGED
|
@@ -43,16 +43,16 @@ provide the same hard runtime controls.
|
|
|
43
43
|
|
|
44
44
|
| Harness | Status | Setup path | Notes |
|
|
45
45
|
| --- | --- | --- | --- |
|
|
46
|
-
| OpenCode | Stable default | `
|
|
47
|
-
| Codex | Supported explicit path | `
|
|
46
|
+
| OpenCode | Stable default | `npx thoth-agents@latest install` or `install --agent=opencode` | Native plugin config, native `task` delegation, optional tmux panes, OpenCode provider auth. |
|
|
47
|
+
| Codex | Supported explicit path | `npx thoth-agents@latest install --agent=codex` | Installs ambient/root guidance, six role subagents, and a Personal plugin source. Requires `/plugins` and `/hooks` trust review. Some governance remains instruction-level. |
|
|
48
48
|
|
|
49
49
|
## Quick Start
|
|
50
50
|
|
|
51
51
|
### OpenCode
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
npx thoth-agents@latest install
|
|
55
|
+
npx thoth-agents@latest install --agent=opencode
|
|
56
56
|
opencode auth login
|
|
57
57
|
opencode
|
|
58
58
|
```
|
|
@@ -66,7 +66,7 @@ ping all agents
|
|
|
66
66
|
For non-interactive setup:
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
|
|
69
|
+
npx thoth-agents@latest install --no-tui --tmux=no --skills=yes
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
### Codex
|
|
@@ -74,8 +74,8 @@ pnpm dlx thoth-agents@latest install --no-tui --tmux=no --skills=yes
|
|
|
74
74
|
Review the plan first, then install explicitly:
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
npx thoth-agents@latest install --agent=codex --dry-run
|
|
78
|
+
npx thoth-agents@latest install --agent=codex
|
|
79
79
|
```
|
|
80
80
|
|
|
81
81
|
Restart Codex and review plugin/hook trust:
|
|
@@ -92,7 +92,7 @@ runtime guarantees unless Codex exposes those controls.
|
|
|
92
92
|
### Reset Generated Config
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
|
-
|
|
95
|
+
npx thoth-agents@latest install --reset
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
## Seven-Agent Roster
|