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/ — user-facing docs (see docs/README.md)
├── skills/
│ ├── atlassian/
│ │ ├── codex/ claude-code/ cursor/ opencode/ pi/ shared/
│ ├── create-plan/
│ │ ├── codex/ claude-code/ cursor/ opencode/ pi/
│ ├── do-task/
│ │ ├── codex/ claude-code/ cursor/ opencode/ pi/
│ ├── implement-plan/
│ │ ├── codex/ claude-code/ cursor/ opencode/ pi/
│ ├── reviewer-runtime/
│ │ ├── pi/ — Pi-specific run-review.sh + notify-telegram.sh
│ │ └── tests/ — reviewer-runtime smoke tests
│ └── web-automation/
│ ├── codex/ claude-code/ cursor/ opencode/ pi/
├── pi-package/
│ └── skills/ — Pi-facing mirror synced by sync:pi
├── scripts/
│ ├── lib/ — shared Node helpers + portable.sh
│ └── tests/ — Node.js unit tests
├── package.json
└── pnpm-workspace.yaml
Where to Read Next
See docs/README.md for the full documentation index with ordered reading flow, one-line summaries for every doc, and links to per-agent install guides, skill docs, Pi docs, Telegram setup, and development notes.
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 | cursor | 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 |
- Start with the docs index:
docs/README.md - Automated install/update/remove wizard:
docs/INSTALLER.md - Manual install by client:
docs/CODEX.md,docs/CLAUDE-CODE.md,docs/CURSOR.md,docs/OPENCODE.md,docs/PI.md - Skill guides:
docs/ATLASSIAN.md,docs/CREATE-PLAN.md,docs/DO-TASK.md,docs/IMPLEMENT-PLAN.md,docs/WEB-AUTOMATION.md - Shared workflow setup:
docs/TELEGRAM-NOTIFICATIONS.md,docs/PI-SUPERPOWERS.md,docs/PI-COMMON-REVIEWER.md
Compatibility Policy
Each skill should explicitly document agent compatibility and any prerequisites directly in its own SKILL.md.
Skill Manager Wizard
Use the repository skill manager to install, update/reinstall, or remove skills for supported local clients:
./scripts/manage-skills.sh
# or
node scripts/manage-skills.mjs
Useful non-interactive modes and examples:
# Preview detected clients and planned changes without writing files
node scripts/manage-skills.mjs --dry-run
# Emit a machine-readable operation plan from an answers file
node scripts/manage-skills.mjs --plan-only --answers answers.json
# Install/update a skill for a specific client
node scripts/manage-skills.mjs --client codex --scope global --skill create-plan --action install --yes
node scripts/manage-skills.mjs --client codex --scope global --skill create-plan --action update --yes
# Remove a skill from a specific client
node scripts/manage-skills.mjs --client claude-code --scope global --skill do-task --action remove --yes
# Install the Pi package globally or project-locally through the manager
node scripts/manage-skills.mjs --client pi --scope packageGlobal --pi-package --action install --yes
node scripts/manage-skills.mjs --client pi --scope packageLocal --pi-package --action install --yes
The wizard detects Codex, Claude Code, Cursor, OpenCode, and Pi, previews operations, checks Superpowers dependencies for workflow skills, and prints a final operation report.
ai_plan/ is gitignored local planning state used by create-plan and do-task. The skill
manager does not install, sync, or publish ai_plan/ contents.
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/manage-skills.mjsandscripts/manage-skills.shscripts/generate-skills.mjsscripts/verify-pi-resources.shscripts/verify-pi-workflows.shscripts/verify-reviewer-support.sh
Install it from a cloned checkout with the repo-owned one-liner:
./scripts/install-pi-package.sh --global
For a project-local install instead:
./scripts/install-pi-package.sh --local
Prerequisites:
- Node.js 20+
pi- either
pnpmonPATH, orcorepacksupport from the Node install
The repo pins its pnpm version in package.json so Corepack-backed installs resolve consistently.
Before publishing or sharing a tarball, run:
pnpm run sync:pi
npm run verify:pi
npm run verify:reviewers
npm pack --dry-run --json
Additional pi-specific guidance lives in docs/PI.md.
For development prerequisites, quality tooling, and the pnpm run check
contract, see docs/DEVELOPMENT.md.