zarai-implement
Implementation task runner with behavioral flags for Claude Code. Six quality modes you control.
terminal
/plugin install zarai-implement@zarai-aiHow It Works
1
You type /zarai-implement:implement "task" --flags
2
A zero-dependency Node.js parser extracts the task and resolves flags (including combo expansion)
3
Claude reads each active flag's behavioral contract .md file
4
All contracts bind simultaneously for the session
5
Implementation executes under those constraints
6
Verification checklist produced with evidence for every criterion
Behavioral Flags
| Flag | Mode | Description |
|---|---|---|
| --tesla | Master | Build entire solution mentally before writing. No exploratory coding. |
| --noFallbacks | Constraint | Zero except: pass, zero stubs, zero shells. Every path is the real path. |
| --robust | Quality | Every edge case, boundary value, and error path handled exhaustively. |
| --verbose | Output | Cite every algorithm. Derive every constant. Document every tradeoff. |
| --complex | Fidelity | Full algorithm from source publication. No "simplified for clarity." |
| --sophisticated | Technique | Advanced types, algebraic errors, property-based testing. |
Presets & Combos
| Combo | Expands To |
|---|---|
| --all | All 6 flags |
| --defense_grade | tesla + noFallbacks + robust + complex + sophisticated |
| --production | noFallbacks + robust |
| --research | tesla + verbose + complex |
Architecture
plugins/zarai-implement/
.claude-plugin/plugin.json Manifest
commands/implement.md Slash command entry point
skills/implement/
SKILL.md Auto-activation skill
registry.json Flag metadata + combos
scripts/parse.cjs Argument parser (0 deps)
flags/
tesla.md Mental laboratory protocol
noFallbacks.md Zero fallback tolerance
robust.md Edge case obsession
verbose.md Transparent reasoning
complex.md Full complexity honor
sophisticated.md Highest technique available
references/
cjs-skill-building-guide.md How to build .cjs-backed skillsPart of the ZARAI AI Plugin Marketplace