diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json
index aecdfa1..11175d5 100644
--- a/.agents/plugins/marketplace.json
+++ b/.agents/plugins/marketplace.json
@@ -1,12 +1,15 @@
{
"name": "agent-skills",
+ "interface": {
+ "displayName": "Agent Skills"
+ },
"plugins": [
{
"name": "agent-skills",
"description": "Production-grade engineering skills covering every phase of software development: spec, plan, build, verify, review, and ship.",
"source": {
"source": "local",
- "path": "./codex"
+ "path": "./"
},
"policy": {
"installation": "AVAILABLE",
diff --git a/codex/.codex-plugin/plugin.json b/.codex-plugin/plugin.json
similarity index 87%
rename from codex/.codex-plugin/plugin.json
rename to .codex-plugin/plugin.json
index 491acce..691da06 100644
--- a/codex/.codex-plugin/plugin.json
+++ b/.codex-plugin/plugin.json
@@ -1,7 +1,7 @@
{
"name": "agent-skills",
"version": "1.0.0",
- "description": "Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.",
+ "description": "Production-grade engineering skills for AI coding agents covering the full software development lifecycle from spec to ship.",
"author": {
"name": "Addy Osmani",
"url": "https://github.com/addyosmani"
diff --git a/README.md b/README.md
index 56bc766..c380b3e 100644
--- a/README.md
+++ b/README.md
@@ -161,12 +161,13 @@ Use agent definitions from `agents/` as Copilot personas and skill content in `.
Codex
-Install directly via the Codex plugin marketplace (Codex CLI v0.122+):
+Install as a native Codex plugin (Codex CLI v0.122+):
```bash
codex plugin marketplace add addyosmani/agent-skills
```
-Once installed, invoke skills in chat using @ (e.g., @spec-driven-development). See [docs/codex-setup.md](docs/codex-setup.md) for local installation and troubleshooting.
+
+Codex reads the root `skills/` directory directly through `.codex-plugin/plugin.json`. Once installed, invoke skills in chat using `@` (e.g., `@spec-driven-development`). See [docs/codex-setup.md](docs/codex-setup.md) for local installation and troubleshooting.
diff --git a/codex/skills b/codex/skills
deleted file mode 120000
index 42c5394..0000000
--- a/codex/skills
+++ /dev/null
@@ -1 +0,0 @@
-../skills
\ No newline at end of file
diff --git a/docs/codex-setup.md b/docs/codex-setup.md
index c179b0b..321e808 100644
--- a/docs/codex-setup.md
+++ b/docs/codex-setup.md
@@ -1,6 +1,6 @@
# Using agent-skills with Codex
-This repository is also a [Codex plugin](https://developers.openai.com/codex/plugins/build). The same `skills/` directory used by Claude Code is consumed by Codex — no files are copied or duplicated.
+This repository is also a [Codex plugin](https://developers.openai.com/codex/plugins/build). The same root-level `skills/` directory used by Claude Code is consumed by Codex, so no files are copied or duplicated.
## Install (one command)
@@ -20,24 +20,12 @@ codex plugin marketplace add /path/to/your/clone
## Usage
-After install, invoke a skill in Codex chat with `@` (e.g. `@spec-driven-development`) or just describe the task and let Codex pick the right skill. All 21 skills under `skills/` are available.
+After install, invoke a skill in Codex chat with `@` (e.g. `@spec-driven-development`) or just describe the task and let Codex pick the right skill. All 24 skills under `skills/` are available.
## How it works
-- `codex/.codex-plugin/plugin.json` — Codex plugin manifest. Points `skills` at `./skills/`.
-- `codex/skills` — git-tracked symlink to `../skills` (9 bytes, mode `120000`). Keeps the plugin directory self-contained without duplicating the skills themselves. macOS and Linux handle this natively.
-- `.agents/plugins/marketplace.json` — marketplace entry declaring the plugin at `./codex`. Codex requires plugins to live in a subdirectory of the marketplace root.
+- `.codex-plugin/plugin.json` — Codex plugin manifest at the repo root. Points `skills` at `./skills/`.
+- `.agents/plugins/marketplace.json` — marketplace entry declaring the repo root (`./`) as the plugin source.
- `skills//SKILL.md` — unchanged. Codex and Claude Code share the same `name` + `description` frontmatter format, so one file serves both platforms.
Slash commands in `.claude/commands/` and personas in `agents/` stay Claude Code-specific — Codex has no native equivalent for either. On Codex, invoke the underlying skill directly instead of the slash command (e.g. `@spec-driven-development` instead of `/spec`).
-
-## No symlinks (Windows or personal preference)
-
-If symlinks don't work on your machine, replace the symlink with a real copy of the skills inside the plugin directory. Run this from the repo root after cloning:
-
-```bash
-rm codex/skills
-cp -R skills codex/skills
-```
-
-This is a **local-only** change — don't commit it. The upstream repo keeps the symlink so `codex plugin marketplace add addyosmani/agent-skills` stays a one-liner for everyone else.