55 lines
1.8 KiB
Markdown
55 lines
1.8 KiB
Markdown
# ai-coding-skills
|
|
|
|
Cross-agent skill collection for **Codex**, **Claude Code**, and **OpenCode**.
|
|
|
|
This repo is organized similarly to `obra/superpowers` and is designed to scale to many skills over time.
|
|
|
|
## Goals
|
|
|
|
- Keep skills portable across coding agents.
|
|
- Keep each skill self-contained (`skills/<skill-name>/<agent-variant>/SKILL.md` + resources).
|
|
|
|
## Repository Layout
|
|
|
|
```text
|
|
ai-coding-skills/
|
|
├── README.md
|
|
├── docs/
|
|
│ └── install.md
|
|
├── skills/
|
|
│ ├── _template/
|
|
│ │ └── SKILL.md
|
|
│ ├── create-plan/
|
|
│ │ ├── codex/
|
|
│ │ ├── claude-code/
|
|
│ │ └── opencode/
|
|
│ └── web-automation/
|
|
│ ├── codex/
|
|
│ ├── claude-code/
|
|
│ └── opencode/
|
|
├── .codex/
|
|
├── .claude-plugin/
|
|
├── .opencode/
|
|
│ └── plugins/
|
|
├── commands/
|
|
├── hooks/
|
|
└── tests/
|
|
```
|
|
|
|
## Skills
|
|
|
|
| Skill | Agent Variant | Purpose | Status |
|
|
|---|---|---|---|
|
|
| create-plan | codex | Structured planning with milestones + runbook-first execution workflow | Ready |
|
|
| create-plan | claude-code | Structured planning with milestones + runbook-first execution workflow | Ready |
|
|
| create-plan | opencode | Structured planning with milestones + runbook-first execution workflow | Ready |
|
|
| web-automation | codex | Playwright + Camoufox browsing/scraping/auth automation | Ready |
|
|
| web-automation | claude-code | Playwright + Camoufox browsing/scraping/auth automation | Ready |
|
|
| web-automation | opencode | Playwright + Camoufox browsing/scraping/auth automation | Ready |
|
|
|
|
See install instructions: `docs/install.md`
|
|
|
|
## Compatibility Policy
|
|
|
|
Each skill should explicitly document agent compatibility and any prerequisites directly in its own `SKILL.md`.
|