diff --git a/HARNESSES.md b/HARNESSES.md index cdb8213..298d275 100644 --- a/HARNESSES.md +++ b/HARNESSES.md @@ -12,6 +12,7 @@ Last verified: 2026-03-24 | Claude Code | https://code.claude.com/docs/en/skills | | Cursor | https://cursor.com/docs/context/skills | | Gemini CLI | https://geminicli.com/docs/cli/skills/ | +| Codex app | https://developers.openai.com/codex/using-codex/app/overview | | Codex CLI | https://developers.openai.com/codex/skills | | GitHub Copilot (Agents) | https://code.visualstudio.com/docs/copilot/customization/agent-skills | | Kiro | https://kiro.dev/docs/skills/ | @@ -59,6 +60,7 @@ Notes: | Claude Code | `.claude/skills/` | - | | Cursor | `.cursor/skills/` | `.agents/skills/`, `.claude/skills/`, `.codex/skills/` | | Gemini CLI | `.gemini/skills/` | `.agents/skills/` | +| Codex app | `.agents/skills/` | - | | Codex CLI | `.agents/skills/` (primary) | - | | GitHub Copilot | `.github/skills/` | `.agents/skills/`, `.claude/skills/` | | Kiro | `.kiro/skills/` | - | diff --git a/README.md b/README.md index 16a72f7..18d5f1b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The vocabulary you didn't know you needed. 1 skill, 20 commands, and curated anti-patterns for impeccable frontend design. -> **Quick start:** Visit [impeccable.style](https://impeccable.style) to download ready-to-use bundles. +> **Quick start:** Visit [impeccable.style](https://impeccable.style) to download ready-to-use bundles for Codex CLI, Cursor, Claude Code, Gemini CLI, and more. ## Why Impeccable? @@ -157,6 +157,13 @@ cp -r dist/gemini/.gemini your-project/ > > [Learn more about Gemini CLI skills](https://geminicli.com/docs/cli/skills/) +**Codex app / Copilot / Antigravity:** +```bash +cp -r dist/agents/.agents your-project/ +``` + +> **Note:** This shared `.agents` bundle works for Codex app, VS Code Copilot, and Antigravity. Codex app discovers project skills from `.agents/skills` and reads instructions from `AGENTS.md` in the repo tree. + **Codex CLI:** ```bash cp -r dist/codex/.codex/* ~/.codex/ @@ -195,10 +202,13 @@ Most commands accept an optional argument to focus on a specific area: /polish checkout-form ``` +**Codex app:** project-local skills are loaded from `.agents/skills`. + **Note:** Codex CLI uses a different syntax: `/prompts:audit`, `/prompts:polish`, etc. ## Supported Tools +- [Codex app](https://developers.openai.com/codex/using-codex/app/overview) - [Cursor](https://cursor.com) - [Claude Code](https://claude.ai/code) - [OpenCode](https://opencode.ai) diff --git a/public/index.html b/public/index.html index e0d5671..fbfd424 100644 --- a/public/index.html +++ b/public/index.html @@ -269,7 +269,7 @@
.agents/ works with Codex app, Copilot, and Antigravity.
@@ -394,6 +394,7 @@ The easiest way is npx skills add pbakaus/impeccable — it auto-detects your AI harness and places files correctly.
If you downloaded the universal ZIP, extract it to your project root (same level as your package.json or src/ folder). It creates hidden folders for each supported tool: .cursor/, .claude/, .gemini/, .codex/, and .agents/.
.agents/ is the shared install target for Codex app, VS Code Copilot, and Antigravity. .codex/ is the dedicated install target for Codex CLI.
Project-level installation takes precedence and lets you version control your skills.
@google/gemini-cli@preview + Skills enabled via /settingsAGENTS.md plus project-local skills from .agents/skills/Once you're comfortable with basic prompting and code generation, come back and give Impeccable a try.
diff --git a/scripts/build.js b/scripts/build.js index 7ac8cdc..0c681b2 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -8,7 +8,7 @@ * - Claude Code: .claude/skills/ * - Gemini: .gemini/skills/ * - Codex: .codex/skills/ - * - Agents: .agents/skills/ (VS Code Copilot + Antigravity) + * - Agents: .agents/skills/ (Codex app, VS Code Copilot + Antigravity) * * Also assembles a universal ZIP containing all providers, * and builds Tailwind CSS for production deployment. @@ -155,7 +155,7 @@ This folder contains skills for all supported tools: .claude/ → Claude Code .gemini/ → Gemini CLI .codex/ → Codex CLI - .agents/ → VS Code Copilot, Antigravity + .agents/ → Codex app, VS Code Copilot, Antigravity .kiro/ → Kiro .opencode/ → OpenCode .pi/ → Pi @@ -167,7 +167,7 @@ These are hidden folders (dotfiles) — press Cmd+Shift+. in Finder to see them. `); const label = suffix ? ' (prefixed)' : ''; - console.log(`✓ Assembled universal${label} directory (${providerConfigs.length} providers)`); + console.log(`✓ Assembled universal${label} directory (${providerConfigs.length} providers; .agents is shared by Codex app, Copilot, and Antigravity)`); } /**