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
docs: add native Codex CLI install path for PM Skills
Codex CLI (0.136+) reads the same .claude-plugin/marketplace.json as Claude
Code, so PM Skills installs natively via `codex plugin marketplace add` — no
file-copying required.
- Add a first-class "Codex CLI (OpenAI)" install section (marketplace add +
per-plugin `codex plugin add`).
- Note the difference vs. Claude Code: skills work and are invocable by name;
`/slash` commands install but do not run as Codex slash commands.
- Document an optional path: ask Codex to convert the bundled command files
into skills (best-effort, model-driven).
- Remove the now-inaccurate "copy skills to .codex/skills/ — Skills only" row
from the "Other AI assistants" table.
Docs-only; no plugin/marketplace contents changed (counts unchanged, no
version bump). Validator: all 9 plugins pass.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+32-1Lines changed: 32 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,38 @@ claude plugin install pm-execution@pm-skills
76
76
claude plugin install pm-ai-shipping@pm-skills
77
77
```
78
78
79
+
### Codex CLI (OpenAI)
80
+
81
+
Codex reads the same plugin marketplace file as Claude Code, so you can install PM Skills natively — no conversion or file-copying needed:
82
+
83
+
```bash
84
+
# Step 1: Add the marketplace
85
+
codex plugin marketplace add phuryn/pm-skills
86
+
87
+
# Step 2: Install the plugins you want
88
+
codex plugin add pm-toolkit@pm-skills
89
+
codex plugin add pm-product-strategy@pm-skills
90
+
codex plugin add pm-product-discovery@pm-skills
91
+
codex plugin add pm-market-research@pm-skills
92
+
codex plugin add pm-data-analytics@pm-skills
93
+
codex plugin add pm-marketing-growth@pm-skills
94
+
codex plugin add pm-go-to-market@pm-skills
95
+
codex plugin add pm-execution@pm-skills
96
+
codex plugin add pm-ai-shipping@pm-skills
97
+
```
98
+
99
+
**What you get:** every skill (the PM frameworks), available to Codex and invocable by name. Install whole plugins rather than cherry-picking individual skills — a workflow usually relies on several skills that ship together.
100
+
101
+
**What's different from Claude Code:** the `/slash` commands (`/discover`, `/write-prd`, …) install but don't run as Codex slash commands — Codex plugins don't expose commands. To run a workflow, just describe the steps in plain language, for example:
102
+
103
+
> Run product discovery on *[your idea]*: brainstorm options, map assumptions, prioritize the risky ones, then design experiments — pause between each step.
104
+
105
+
**Optional — let Codex turn the workflows into skills.** Because the command files ship inside each installed plugin, you can ask Codex to convert the ones you use most:
106
+
107
+
> Read the command files in the pm-execution plugin and create equivalent Codex skills for the workflows I use most often.
108
+
109
+
This is a best-effort, model-driven conversion (some Claude-specific command syntax won't translate), but it's a quick way to get the guided workflows on Codex without leaving the CLI.
110
+
79
111
### Other AI assistants (skills only)
80
112
81
113
The `skills/*/SKILL.md` files follow the universal skill format and work with any tool that reads it. Commands (`/slash-commands`) are Claude-specific.
@@ -85,7 +117,6 @@ The `skills/*/SKILL.md` files follow the universal skill format and work with an
85
117
|**Gemini CLI**| Copy skill folders to `.gemini/skills/`| Skills only |
86
118
|**OpenCode**| Copy skill folders to `.opencode/skills/`| Skills only |
87
119
|**Cursor**| Copy skill folders to `.cursor/skills/`| Skills only |
88
-
|**Codex CLI**| Copy skill folders to `.codex/skills/`| Skills only |
89
120
|**Kiro**| Copy skill folders to `.kiro/skills/`| Skills only |
0 commit comments