84 lines
4.1 KiB
Markdown
84 lines
4.1 KiB
Markdown
# ai-coding-skills
|
|
|
|
Cross-agent skill collection for **Codex**, **Claude Code**, **OpenCode**, and **Cursor**.
|
|
|
|
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/
|
|
│ ├── README.md
|
|
│ ├── ATLASSIAN.md
|
|
│ ├── CREATE-PLAN.md
|
|
│ ├── IMPLEMENT-PLAN.md
|
|
│ └── WEB-AUTOMATION.md
|
|
├── skills/
|
|
│ ├── _template/
|
|
│ │ └── SKILL.md
|
|
│ ├── atlassian/
|
|
│ │ ├── codex/
|
|
│ │ ├── claude-code/
|
|
│ │ ├── cursor/
|
|
│ │ ├── opencode/
|
|
│ │ └── shared/
|
|
│ ├── create-plan/
|
|
│ │ ├── codex/
|
|
│ │ ├── claude-code/
|
|
│ │ ├── opencode/
|
|
│ │ └── cursor/
|
|
│ ├── implement-plan/
|
|
│ │ ├── codex/
|
|
│ │ ├── claude-code/
|
|
│ │ ├── opencode/
|
|
│ │ └── cursor/
|
|
│ └── web-automation/
|
|
│ ├── codex/
|
|
│ ├── claude-code/
|
|
│ └── opencode/
|
|
├── .codex/
|
|
├── .claude-plugin/
|
|
├── .opencode/
|
|
│ └── plugins/
|
|
├── commands/
|
|
├── hooks/
|
|
└── tests/
|
|
```
|
|
|
|
## Skills
|
|
|
|
| Skill | Agent Variant | Purpose | Status | Docs |
|
|
|---|---|---|---|---|
|
|
| atlassian | codex | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | [ATLASSIAN](docs/ATLASSIAN.md) |
|
|
| atlassian | claude-code | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | [ATLASSIAN](docs/ATLASSIAN.md) |
|
|
| atlassian | opencode | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | [ATLASSIAN](docs/ATLASSIAN.md) |
|
|
| atlassian | cursor | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | [ATLASSIAN](docs/ATLASSIAN.md) |
|
|
| create-plan | codex | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | [CREATE-PLAN](docs/CREATE-PLAN.md) |
|
|
| create-plan | claude-code | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | [CREATE-PLAN](docs/CREATE-PLAN.md) |
|
|
| create-plan | opencode | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | [CREATE-PLAN](docs/CREATE-PLAN.md) |
|
|
| create-plan | cursor | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | [CREATE-PLAN](docs/CREATE-PLAN.md) |
|
|
| implement-plan | codex | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | [IMPLEMENT-PLAN](docs/IMPLEMENT-PLAN.md) |
|
|
| implement-plan | claude-code | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | [IMPLEMENT-PLAN](docs/IMPLEMENT-PLAN.md) |
|
|
| implement-plan | opencode | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | [IMPLEMENT-PLAN](docs/IMPLEMENT-PLAN.md) |
|
|
| implement-plan | cursor | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | [IMPLEMENT-PLAN](docs/IMPLEMENT-PLAN.md) |
|
|
| web-automation | codex | Playwright + Camoufox browsing/scraping/auth automation | Ready | [WEB-AUTOMATION](docs/WEB-AUTOMATION.md) |
|
|
| web-automation | claude-code | Playwright + Camoufox browsing/scraping/auth automation | Ready | [WEB-AUTOMATION](docs/WEB-AUTOMATION.md) |
|
|
| web-automation | opencode | Playwright + Camoufox browsing/scraping/auth automation | Ready | [WEB-AUTOMATION](docs/WEB-AUTOMATION.md) |
|
|
|
|
- Docs index: `docs/README.md`
|
|
- Atlassian guide: `docs/ATLASSIAN.md`
|
|
- Create-plan guide: `docs/CREATE-PLAN.md`
|
|
- Implement-plan guide: `docs/IMPLEMENT-PLAN.md`
|
|
- Web-automation guide: `docs/WEB-AUTOMATION.md`
|
|
|
|
## Compatibility Policy
|
|
|
|
Each skill should explicitly document agent compatibility and any prerequisites directly in its own `SKILL.md`.
|