Flokay is a plugin for Claude Code and Cursor that provides two things:
- Agent Skills — a set of focused skills for each stage of development, from evaluating an idea to implementing with subagents (or Codex) to shepherding a PR through CI. Inspired by obra/superpowers.
- A structured workflow — an opinionated, spec-driven workflow powered by those skills, OpenSpec, and the Agent Gauntlet validation tool.
You can adopt the full workflow, or use the skills individually as you see fit.
The workflow has two stages:
- Planning — The agent interviews you and creates one artifact at a time — proposal, specs, design, tasks, review — so you think through every decision before code is written.
- Implementation — The agent takes the wheel. Walk away; come back to a pull request with tested, reviewed code and green CI.
For more details see the guide.
- Evaluate before building — the agent critiques your idea, researches alternatives, and decides if it's worth pursuing
- Interview-driven specs & design — the agent grills you to flesh out requirements, edge cases, and architectural decisions
- Right-sized tasks — breaks work into self-contained task files, each scoped for a single subagent to implement
- Multi-agent implementation — dispatches tasks to be implemented via TDD by Claude Code subagents or Codex
- Automated quality gates — Agent Gauntlet runs static checks and AI code reviews for each task before moving on
- End-to-end PR lifecycle — creates the PR, waits for CI, fixes failures, and addresses reviewer comments automatically
Flokay requires two external CLIs and their skills:
-
OpenSpec CLI — workflow engine that manages changes and artifacts
- Install:
npm install -g @fission-ai/openspec - Then run
openspec initin your project to install OpenSpec skills
- Install:
-
Agent Gauntlet CLI — automated quality verification
- Install:
npm install -g @pacaplan/agent-gauntlet - Then run
agent-gauntlet initin your project to install Gauntlet skills
- Install:
Add the Flokay marketplace and install the plugin:
claude plugin marketplace add pacaplan/flokay
claude plugin install flokayInstall the plugin using /add-plugin in chat or the CLI:
cursor plugins install pacaplan/flokayAfter installing with either runtime, initialize Flokay in your project:
/flokay:init
- Plan:
/opsx:explore→/opsx:new <name>→/opsx:continue(through specs, design, tasks, and review) - Implement:
/opsx:apply— implements, archives, and finalizes the PR
Each step uses a dedicated skill (flokay:propose, flokay:design, flokay:plan-tasks, etc.) that guides you through the process conversationally.
See docs/guide.md for the detailed user guide, or the annotated example for a full walkthrough.
claude plugin marketplace update flokay
claude plugin update flokay@flokayThen run to get the latest skills:
/flokay:init
MIT
