You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,21 +29,24 @@ Once started, the plugin automatically injects 7 slash commands, 9 flow skills,
29
29
30
30
This package also ships a Codex plugin compatibility layer (`codex-skills/` + `hooks/` + `.codex-plugin/`) so the flow skills and agent prompts work in Codex as well.
31
31
32
+
The repository is a Codex marketplace: add it as a marketplace source, then install the plugin from it.
# 2. Build first — the SessionStart hook runs from dist/
37
-
npm run build
38
+
# 2. Confirm the plugin is available
39
+
codex plugin list --available
38
40
39
-
# 3. Install the plugin into Codex
40
-
codex plugins install @devcxl/opencode-cabbage
41
+
# 3. Install the plugin (pulled from the npm package, which bundles all Codex files)
42
+
codex plugin add opencode-cabbage@cabbage
41
43
```
42
44
43
45
Notes:
44
46
45
-
-**Build before use**: the SessionStart hook executes `dist/hooks/session-start.js`, which only exists after `npm run build`.
47
+
-**Build artifact included**: the SessionStart hook (`dist/hooks/session-start.js`) ships inside the published npm package — no local build required.
46
48
-**Hook trust review**: Codex requires interactive trust approval for hooks (`/hooks` command) on first run — approve the `SessionStart` hook to enable context injection.
49
+
-**Marketplace name**: the marketplace is named `cabbage` (see `.agents/plugins/marketplace.json`); use `opencode-cabbage@cabbage` as the plugin selector.
47
50
-**Platform differences**: the Codex layer is a pure-Prompt downgrade — no `goal` tool, no slash commands, no automatic continuation. Agents are plain skills (referenced as `@agent-*`), and flow state is tracked via GitHub Issue checklists. See `codex-skills/agent-dev-lifecycle/SKILL.md` for details.
0 commit comments