A Claude Code plugin providing a specification-driven workflow system for AI-assisted development. Think Github Spec Kit (our source inspiration) simplified.
FAQ
apex-spec is a Claude Code plugin with 1 hand-picked skill for development work, indexed on Flowy. Install it with the command on its page. It includes spec-workflow. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add moshehbenavraham/apex-spec-system> /plugin install apex-spec@apex-spec-marketplace
Repo: moshehbenavraham/apex-spec-system
Version: 2.0.4-beta
A Claude Code plugin providing a specification-driven workflow system for AI-assisted development. Think Github Spec Kit (our source inspiration) simplified.
Open Skill (https://agentskills.io/home) version of this plugin: https://github.com/moshehbenavraham/apex-spec-system-open
The Apex Spec System breaks large projects into manageable, well-scoped implementation sessions that fit within AI context windows and human attention spans.
Philosophy: 1 session = 1 spec = 2-4 hours (12-25 tasks) = safe context window of AI
# Install from local directory
claude --plugin-dir /path/to/apex-spec-system
# Or copy to your plugins directory
cp -r apex-spec-system ~/.claude/plugins/
| Dependency | Required | Install |
|---|---|---|
| jq | Yes | apt install jq or brew install jq |
| git | Optional | Usually pre-installed |
The scripts use jq for JSON parsing. Verify with: bash scripts/check-prereqs.sh --env
Install the plugin (see above)
Initialize in your project:
/initspec OR /apex-spec:initspec
This creates the spec system structure in your project.
Optional but recommended: Customize .spec_system/CONVENTIONS.md with your project's coding standards (naming, structure, error handling, testing philosophy, etc.)
/createprd OR /apex-spec:createprd OR Manually fill out .spec_system/PRD/PRD.md
Optional: Turn argument or file path into a technical PRD for development. Example: /createprd "a habit trackker app" /createprd @docs/requirements.md
/createuxprd OR /apex-spec:createuxprd
Optional: Turn design docs into a UX PRD companion document. Example: /createuxprd "social app with feed, profiles, and messaging" /createuxprd @docs/design-spec.md
/phasebuild OR /apex-spec:phasebuild
This will set up the initial Phase and Sessions for that initial Phase
Run the session workflow and repeat until all sessions inside the Phase are completed, thus completing the Phase:
/plansession OR /apex-spec:plansession # Analyze, spec, and generate task checklist
/implement OR /apex-spec:implement # Start implementation
/validate OR /apex-spec:validate # Verify completeness, security & compliance
/updateprd OR /apex-spec:updateprd # Mark complete, update system
Between Phases
/audit OR /apex-spec:audit # Local dev tooling (formatter, linter, types, tests, observability, hooks)
/pipeline OR /apex-spec:pipeline # CI/CD workflows (quality, build, security, integration, ops)
/infra OR /apex-spec:infra # Production infrastructure (health, security, backup, deploy)
/carryforward OR /apex-spec:carryforward # Lessons learned, security/compliance records
/documents OR /apex-spec:documents # Create, maintain project documentation
-- Optional but HIGHLY recommended, do manual testing and separate LLM Audit HERE --
/phasebuild OR /apex-spec:phasebuild # Set up next Phase and Phase's sessions
Repeat until all phases complete!
The system auto-detects monorepo structures. No special configuration needed.
Brownfield (existing monorepo with code):
/initspec
The system detects workspace configs (pnpm, npm workspaces, turbo, nx, cargo, go, lerna), shows detected packages, and asks you to confirm.
Greenfield (new project, PRD describes multiple services):
/initspec # Sets monorepo: null (unknown)
/createprd # Detects multi-package signals in PRD, prompts to confirm
Per-package sessions:
User: /plansession
"Plan a session for apps/web"
# Claude scopes spec.md and tasks.md to apps/web
# File paths use full repo-root-relative paths (apps/web/src/auth.ts)
Sessions interleave across packages within a phase. A phase completes when all its sessions are done, regardless of which packages they target.
What stays the same:
.spec_system/ at the repo rootphaseNN-sessionNN-name)| Command | Purpose |
|---|---|
/initspec | Initialize spec system in current project |
/createprd | Generate master PRD from requirements document |
/createuxprd | Generate UX PRD from design documents |
/plansession | Analyze project, create spec and task checklist |
/implement | AI-led task-by-task implementation |
/validate | Verify session completeness |
/updateprd | Mark session complete, sync documentation |
/audit | Local dev tooling (formatter, linter, types, tests, observability, hooks) |
/pipeline | CI/CD workflows (quality, build, security, integration, ops) |
/infra | Production infrastructure (health, security, backup, deploy) |
/documents | Audit and update project documentation |
/carryforward | Extract lessons learned, maintain security/compliance record between phases |
/phasebuild | Create structure for new phase |
Standalone helpers that run outside the session workflow -- safe at any time.
| Command | Purpose |
|---|---|
/sculpt-ui | Guide AI-led creation of distinctive, production-grade frontend interfaces |
/copush | Pull, version-bump, commit all changes, and push to origin |
/dockcleanbuild | Clean Docker environment and rebuild all images and containers from scratch |
/dockbuild | Quick Docker Compose build and start with full output |
/up2imp | Audit upstream changes and curate an optimally ordered implementation list |
/pullndoc | Git pull an upstream repo and document every imported change |
/qimpl | Context-aware autonomous implementation session driven by a work file |
/qfrontdev | Autonomous frontend implementation session with designer-level quality standards |
/qbackenddev | Autonomous backend/infrastructure development session driven by a work file |
As utility commands are added, they will be listed here. See Utility Commands Reference for conventions and details.
The spec-workflow skill auto-activates when:
.spec_system/ directoryAfter running /initspec, your project will have:
your-project/
|-- .spec_system/ # All spec system files
| |-- state.json # Project state tracking
| |-- CONSIDERATIONS.md # Institutional memory (lessons learned)
| |-- SECURITY-COMPLIANCE.md # Security posture & GDPR compliance
| |-- CONVENTIONS.md # Project coding standards and conventions
| |-- PRD/ # Product requirements
| | |-- PRD.md # Master PRD
| | \-- phase_00/ # Phase definitions
| |-- specs/ # Implementation specs
| | \-- phaseNN-sessionNN-name/
| | |-- spec.md
| | |-- tasks.md
| | |-- implementation-notes.md
| | |-- security-compliance.md
| | \-- validation.md
| \-- archive/ # Completed work
\-- (your project source files)
For monorepo projects, the same .spec_system/ sits at the repo root. Sessions reference their target package in metadata (spec.md header), not in directory names.
All files must use ASCII-only characters (0-127). No Unicode, emoji, or smart quotes.
Watch on YouTube - Installation and workflow walkthrough
The apex-infinite-cli/ directory contains a standalone Python CLI that runs the entire Apex Spec System workflow autonomously in an infinite loop. A manager LLM decides which command to run next, executes Claude Code as a subprocess, logs the interaction to SQLite, and repeats -- no human intervention required unless the manager asks for help.
Supports Grok, OpenAI, and Ollama as the manager LLM. See apex-infinite-cli/README-apex-infinite-cli.md for setup and usage.
MIT License - Use freely in your projects.
.claude-plugin/
marketplace.json
plugin.json
.cursorignore
.github/
workflows/
release.yml
.gitignore
.markdownlint.yaml
.shellcheckrc
AGENTS.md
apex-infinite-cli/
.env.example
apex_infinite.py
config.yaml
n8n-workflow/
Apex Spec System Infinite.json
README-apex-infinite-cli.md
requirements-dev.txt
requirements.txt
CLAUDE.md
commands/
audit.md
carryforward.md
copush.md
createprd.md
createuxprd.md
dockbuild.md
dockcleanbuild.md
documents.md
implement.md
infra.md
initspec.md
phasebuild.md
pipeline.md
plansession.md
pullndoc.md
qbackenddev.md
qfrontdev.md
qimpl.md
sculpt-ui.md
up2imp.md
updateprd.md
validate.md
docs/
GUIDANCE.md
UTILITIES.md
WALKTHROUGH.md
GEMINI.md
pyproject.toml
README.md
scripts/
analyze-project.sh
check-prereqs.sh
common.sh
skills/
spec-workflow/
SKILL.md© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic