A lightweight coordinator skill for Codex that combines OpenSpec with Superpowers.
Use OpenSpec for the product-change record: proposals, designs, specs, tasks, validation, and PR/archive conventions. Use Superpowers for the engineering discipline: brainstorming, TDD, systematic debugging, review handling, and verification before completion.
This repository does not vendor OpenSpec or Superpowers. It provides one coordinator skill that tells Codex when and how to load those more specific skills together.
This skill is intentionally not standalone. It assumes these prerequisites are installed and discoverable by your agent:
- OpenSpec, including the OpenSpec CLI for repositories that use OpenSpec.
- An OpenSpec workflow skill named
openspec-workflow, or an equivalent local skill that teaches your agent how to create and manage OpenSpecproposal.md,design.md,specs/*/spec.md, andtasks.mdartifacts. - Superpowers, including the process skills this coordinator references.
Minimum Superpowers skills expected by this coordinator:
using-superpowersbrainstormingtest-driven-developmentsystematic-debuggingverification-before-completion
Recommended Superpowers skills for the full workflow:
problem-statementuser-storyprd-developmentreceiving-code-reviewrequesting-code-reviewfinishing-a-development-branch
If these dependencies are missing, install them first. Without them, this skill can only provide a high-level outline and cannot deliver its intended workflow.
- A Codex skill named
openspec-superpowers - A traffic controller for OpenSpec-driven product changes
- A way to make behavior-changing work consistently go through OpenSpec artifacts and Superpowers process gates
- A replacement for
openspec-workflow - A replacement for Superpowers skills
- A bundled OpenSpec CLI installer
- An official OpenSpec or Superpowers project
For the full workflow, install and configure:
- Codex with local skills support
- OpenSpec CLI for repositories that use OpenSpec
- The
openspec-workflowskill - Superpowers skills, especially
using-superpowers,brainstorming,test-driven-development,systematic-debugging, andverification-before-completion git- GitHub CLI (
gh) if you want PR publishing - Claude Code CLI if your
openspec-workflowsetup delegates implementation through Claude Code
If the required OpenSpec or Superpowers skills are missing, install them before using this coordinator.
Clone this repository and copy the skill folder into your Codex skills directory:
git clone https://github.com/Te9ui1a/openspec-superpowers-skill.git
mkdir -p ~/.codex/skills
cp -R openspec-superpowers-skill/openspec-superpowers ~/.codex/skills/Restart Codex or reload skills if your client requires it.
Invoke it explicitly when a repository uses OpenSpec and the requested change may affect product behavior:
Use $openspec-superpowers to implement this feature with OpenSpec and Superpowers discipline.
Or:
This repo uses OpenSpec. For this behavior change, use $openspec-superpowers.
The skill will direct Codex to:
- Load Superpowers process guidance.
- Decide whether OpenSpec is required.
- Use
openspec-workflowfor proposal, design, spec, task, validation, PR, and archive conventions. - Use Superpowers skills for TDD, debugging, review, and verification gates.
- Report the OpenSpec change name, artifacts, implementation summary, verification commands, and any deviations.
openspec-superpowers-skill/
├── openspec-superpowers/
│ ├── SKILL.md
│ └── agents/
│ └── openai.yaml
├── examples/
│ └── prompts.md
├── LICENSE
└── README.md
MIT