6.9 KiB
6.9 KiB
ai-coding-skills
Cross-agent skill collection for Codex, Claude Code, OpenCode, Cursor, and pi.
Pi package support is also included for the pi-native variants in this repo.
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
ai-coding-skills/
├── README.md
├── docs/
│ ├── README.md
│ ├── ATLASSIAN.md
│ ├── CREATE-PLAN.md
│ ├── DO-TASK.md
│ ├── IMPLEMENT-PLAN.md
│ ├── PI.md
│ ├── PI-RESEARCH.md
│ ├── PI-SUPERPOWERS.md
│ ├── TELEGRAM-NOTIFICATIONS.md
│ └── WEB-AUTOMATION.md
├── skills/
│ ├── _template/
│ │ └── SKILL.md
│ ├── atlassian/
│ │ ├── codex/
│ │ ├── claude-code/
│ │ ├── cursor/
│ │ ├── opencode/
│ │ ├── pi/
│ │ └── shared/
│ ├── create-plan/
│ │ ├── codex/
│ │ ├── claude-code/
│ │ ├── opencode/
│ │ ├── cursor/
│ │ └── pi/
│ ├── do-task/
│ │ ├── codex/
│ │ ├── claude-code/
│ │ ├── opencode/
│ │ ├── cursor/
│ │ └── pi/
│ ├── implement-plan/
│ │ ├── codex/
│ │ ├── claude-code/
│ │ ├── opencode/
│ │ ├── cursor/
│ │ └── pi/
│ ├── reviewer-runtime/
│ │ ├── pi/
│ │ └── tests/
│ └── web-automation/
│ ├── codex/
│ ├── claude-code/
│ ├── opencode/
│ └── pi/
├── .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 |
| atlassian | claude-code | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | ATLASSIAN |
| atlassian | opencode | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | ATLASSIAN |
| atlassian | cursor | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | ATLASSIAN |
| atlassian | pi | Portable Jira and Confluence workflows through a shared Cloud-first CLI | Ready | ATLASSIAN |
| create-plan | codex | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | CREATE-PLAN |
| create-plan | claude-code | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | CREATE-PLAN |
| create-plan | opencode | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | CREATE-PLAN |
| create-plan | cursor | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | CREATE-PLAN |
| create-plan | pi | Structured planning with milestones, iterative cross-model review, and runbook-first execution workflow | Ready | CREATE-PLAN |
| do-task | codex | Single-prompt end-to-end execution with dual reviewer loops (plan + implementation), TDD-first, single task commit | Ready | DO-TASK |
| do-task | claude-code | Single-prompt end-to-end execution with dual reviewer loops (plan + implementation), TDD-first, single task commit | Ready | DO-TASK |
| do-task | opencode | Single-prompt end-to-end execution with dual reviewer loops (plan + implementation), TDD-first, single task commit | Ready | DO-TASK |
| do-task | cursor | Single-prompt end-to-end execution with dual reviewer loops (plan + implementation), TDD-first, single task commit | Ready | DO-TASK |
| do-task | pi | Single-prompt end-to-end execution with dual reviewer loops (plan + implementation), TDD-first, single task commit | Ready | DO-TASK |
| implement-plan | codex | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | IMPLEMENT-PLAN |
| implement-plan | claude-code | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | IMPLEMENT-PLAN |
| implement-plan | opencode | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | IMPLEMENT-PLAN |
| implement-plan | cursor | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | IMPLEMENT-PLAN |
| implement-plan | pi | Worktree-isolated plan execution with iterative cross-model milestone review | Ready | IMPLEMENT-PLAN |
| web-automation | codex | CloakBrowser-backed browsing, scraping, auth, flow automation, and install validation | Ready | WEB-AUTOMATION |
| web-automation | claude-code | CloakBrowser-backed browsing, scraping, auth, flow automation, and install validation | Ready | WEB-AUTOMATION |
| web-automation | opencode | CloakBrowser-backed browsing, scraping, auth, flow automation, and install validation | Ready | WEB-AUTOMATION |
| web-automation | pi | CloakBrowser-backed browsing, scraping, auth, flow automation, and install validation | Ready | WEB-AUTOMATION |
- Docs index:
docs/README.md - Atlassian guide:
docs/ATLASSIAN.md - Create-plan guide:
docs/CREATE-PLAN.md - Do-task guide:
docs/DO-TASK.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.
Pi Package
The repo root now includes a pi package manifest that ships only the pi-specific surface:
pi-package/skills/*/for the five packaged Pi skillsskills/reviewer-runtime/pi/docs/PI*.mdscripts/sync-pi-package-skills.shscripts/verify-pi-resources.sh
Install it into project-local pi settings from this checkout with:
pi install -l "$(pwd)"
pi list
Before publishing or sharing a tarball, run:
./scripts/sync-pi-package-skills.sh
./scripts/verify-pi-resources.sh
npm pack --dry-run --json
Additional pi-specific guidance lives in docs/PI.md.