Execute all fixes from a REVIEW.md — address warnings, blocking issues, and gaps found during review
Move completed features from wip to archive
Systematic root-cause investigation for bugs and failures
Test-driven execution loop — one task at a time, red→green→refactor, atomic commits
Show all Neural plugin commands with descriptions and the recommended workflow
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A lightweight, token-efficient Spec-Driven Development framework for AI coding agents.
interview → plan → execute → review → archive
Most AI agent failures aren't about bad code — they're about unclear requirements, fantasy plans, context rot, and "done" without evidence. Neural addresses each failure mode with a specific phase:
| Failure Mode | Phase | How |
|---|---|---|
| Vague requirements | Interview | Socratic questioning with selective pressure |
| Plans based on assumptions | Plan | Mandatory codebase exploration + adversarial self-review |
| Stubs and over-built code | Execute | Vertical-slice TDD loop — every line of code answers a failing test |
| "Done" but it's stubs | Review | 4-level goal-backward verification |
Register the Neural marketplace:
/plugin marketplace add juancruzrossi/neural
Then install the plugin:
/plugin install neural@neural
Install the Neural skills globally:
curl -fsSL https://raw.githubusercontent.com/juancruzrossi/neural/main/.codex/install.sh | bash
/neural:neural-interview — Clarify before you buildSocratic interview. Clarifies requirements and captures feature context in CONTEXT.md.
/neural:neural-plan — Plan with adversarial reviewBuilds a sequential task list with dependencies and per-task Behaviors to verify (each becomes one red→green slice). Runs a self-adversarial pass. Optional cross-review (Claude Code ⇄ Codex).
/neural:neural-execute — Test-driven execution loopWalks the plan task by task in dependency order. Vertical-slice TDD per task: failing test → minimum code → refactor on green. No stubs. Optionally, atomic commits per task.
/neural:neural-review — Verify against the goalTwo layers:
/neural:neural-address-review — Fix what review foundParses REVIEW.md, builds a fix plan from blocking issues and warnings, executes fixes with verification.
/neural:neural-quick — Fast-path for small tasksThree questions, inline plan, direct execution. For small, clear tasks.
/neural:neural-debug — Root-cause investigationSystematic debugging: investigate → analyze → hypothesize → implement.
/neural:neural-sync — Align specs with realityReads the codebase and implementation and updates CONTEXT.md and PLAN.md to match what was built. Code is the source of truth.
/neural:neural-status — Where am I?Shows progress of all features in .neural/wip/ with next-step suggestions.
/neural:neural-archive — Clean upMoves completed features from .neural/wip/ to .neural/archive/.
/neural:neural-help — Command referenceLists all Neural commands with short descriptions and the recommended workflow.
All Neural artifacts live in .neural/ at your project root:
.neural/
├── wip/
│ └── auth-system/
│ ├── CONTEXT.md ← interview output
│ ├── docs/adr/ ← optional feature decisions
│ ├── PLAN.md ← plan output
│ └── REVIEW.md ← review output
└── archive/
└── user-onboarding/
├── CONTEXT.md
├── docs/adr/
├── PLAN.md
└── REVIEW.md
npx claudepluginhub juancruzrossi/neural --plugin neuralSpec-Driven Development Workflow for Claude Code. A 6-step pipeline: Requirements → Code Analysis → Design → Implement → Verify → Self-Improve. Specifications are the source of truth, code is a verified artifact.
Spec-driven development using GitHub spec-kit methodology. Constitution-first approach with specify, plan, tasks, and implement phases.
GSD Core is a meta-prompting, context engineering, and spec-driven development system for AI coding agents.
Describe your goal, approve the spec, then step away — Claude and Codex loop together until it's right.
Spec-driven development workflow - transforms ideas into structured specifications (requirements, design, tasks) before implementation.
Comprehensive AI-assisted development workflow system with specialized agents, orchestrated commands, and file-based state management