Add web-automation skill variants and inline prerequisite checks

This commit is contained in:
Luke
2026-02-09 04:34:57 +00:00
parent 5456ee228b
commit ff22639dbe
42 changed files with 9416 additions and 21 deletions

View File

@@ -7,8 +7,7 @@ This repo is organized similarly to `obra/superpowers` and is designed to scale
## Goals
- Keep skills portable across coding agents.
- Keep each skill self-contained (`skills/<skill-name>/SKILL.md` + optional resources).
- Enforce requirement checks for skills that depend on Superpower skills.
- Keep each skill self-contained (`skills/<skill-name>/<agent-variant>/SKILL.md` + resources).
## Repository Layout
@@ -16,12 +15,15 @@ This repo is organized similarly to `obra/superpowers` and is designed to scale
ai-coding-skills/
├── README.md
├── docs/
── repository-structure.md
│ └── requirements-gate.md
── install.md
├── skills/
│ ├── _template/
│ │ └── SKILL.md
── create-plan/
── create-plan/
│ │ ├── codex/
│ │ ├── claude-code/
│ │ └── opencode/
│ └── web-automation/
│ ├── codex/
│ ├── claude-code/
│ └── opencode/
@@ -41,21 +43,12 @@ ai-coding-skills/
| 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`
## Requirement Gate (Superpowers dependency)
If a skill depends on Superpower skills (`https://github.com/obra/superpowers`), it must include an explicit prerequisite block in `SKILL.md` and fail fast with clear instructions when requirements are missing.
See: `docs/requirements-gate.md`
## Compatibility Policy
Each skill added to this repo should specify support status for:
- Codex
- Claude Code
- OpenCode
Use the template at `skills/_template/SKILL.md`.
Each skill should explicitly document agent compatibility and any prerequisites directly in its own `SKILL.md`.