Files
ai-coding-skills/README.md
Stefano Fiorini d2970b06bd feat(create-plan): add iterative cross-model plan review and Cursor variant
Add a configurable reviewer phase to all create-plan variants (claude-code,
codex, opencode) that sends the plan to a second CLI/model for iterative
feedback (max 5 rounds). Supported reviewer CLIs: codex, claude, cursor.

Add new Cursor Agent CLI variant with full skill, templates, and
workspace-discovery-based prerequisites (.cursor/rules/).

Update README and docs/CREATE-PLAN.md with Cursor install/verify,
reviewer CLI requirements, and supported reviewer CLIs table.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 13:58:11 -06:00

2.5 KiB

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

ai-coding-skills/
├── README.md
├── docs/
│   ├── README.md
│   ├── CREATE-PLAN.md
│   └── WEB-AUTOMATION.md
├── skills/
│   ├── _template/
│   │   └── SKILL.md
│   ├── create-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
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
web-automation codex Playwright + Camoufox browsing/scraping/auth automation Ready WEB-AUTOMATION
web-automation claude-code Playwright + Camoufox browsing/scraping/auth automation Ready WEB-AUTOMATION
web-automation opencode Playwright + Camoufox browsing/scraping/auth automation Ready WEB-AUTOMATION
  • Docs index: docs/README.md
  • Create-plan guide: docs/CREATE-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.