Skip to content

zarai-implement

Implementation task runner with behavioral flags for Claude Code. Six quality modes you control.

terminal
/plugin install zarai-implement@zarai-ai

How 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

FlagModeDescription
--teslaMasterBuild entire solution mentally before writing. No exploratory coding.
--noFallbacksConstraintZero except: pass, zero stubs, zero shells. Every path is the real path.
--robustQualityEvery edge case, boundary value, and error path handled exhaustively.
--verboseOutputCite every algorithm. Derive every constant. Document every tradeoff.
--complexFidelityFull algorithm from source publication. No "simplified for clarity."
--sophisticatedTechniqueAdvanced types, algebraic errors, property-based testing.

Presets & Combos

ComboExpands To
--allAll 6 flags
--defense_gradetesla + noFallbacks + robust + complex + sophisticated
--productionnoFallbacks + robust
--researchtesla + 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 skills
View on GitHub

Part of the ZARAI AI Plugin Marketplace