Review production artifacts after plan execution. Triggers on "review deliverables", "deliverable review", "artifact review", or after completing plan execution. Two-layer review (delegated per-file + interactive cross-project) producing severity-classified report grounded in ISO 25010 / IEEE 1012.
Verify a Python function against its intended behavior by writing an icontract contract and checking it with `edify check` (CrossHair), repairing in a loop. Triggers on "formalize", "verify this function", "add a contract and check it", or after writing a function whose correctness matters. The in-context agent holds intent and asks the user when behavior is ambiguous; CrossHair owns the deduction.
Ground claims with external research before asserting methodology. Triggers on "ground", "create a scoring system", "design a methodology", "build a framework", or "synthesize best practices". Parallel diverge-converge research preventing confabulated structures.
This skill should be used when an artifact needs structured user validation. Triggers on "proof", "validate artifact", "review loop", or when an artifact needs a careful item-by-item read before it ships. Replaces ad-hoc single-turn validation with item-by-item review protocol.
Capture and document requirements for implementation. Triggers on "capture requirements", "document requirements", "what do I want to build", or feature discussions without clear documentation. Produces requirements.md artifact for design and planning phases.
Modifies files
Hook triggers on file write and edit operations
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.
Workflow infrastructure for [Claude Code][claude-code] agents. Without structure, agent sessions drift: incomplete implementations, skipped reviews, scope creep, lost context between sessions. plugin imposes a pipeline — design, planning, TDD, orchestration, review, handoff — and a memory system that persists decisions across sessions.
18 skills, 14 specialized sub-agents, 23 instruction fragments, 4 hooks, and scripts for runbook preparation, session recovery, and batch operations.
Currently installed as a git submodule; converting to a [Claude Code
plugin][plugin-docs] (edify-plugin).
Requires [just] for task running. Scripts in bin/ use Python 3.
git submodule add <repo-url> plugin
cd plugin && just sync-to-parent
just sync-to-parent creates symlinks in the parent project's .claude/
directory so Claude Code discovers skills, agents, and hooks. It also
configures hooks in .claude/settings.json. Changes to plugin are
reflected immediately without re-syncing.
Set up your CLAUDE.md to reference fragments — use
templates/CLAUDE.template.md as a starting point, or add @ references to
an existing file:
@plugin/fragments/communication.md
@plugin/fragments/execution-routing.md
These are loaded into every conversation as ambient context.
The core pipeline:
/design → /runbook → [runbook-corrector] → /orchestrate → [corrector] → /handoff
/design triages complexity. Simple tasks execute directly. Moderate tasks skip
to planning. Complex tasks get Opus architectural design with outline iteration
and design review.
/runbook produces step-by-step execution plans with per-phase typing — TDD
cycles or general steps, mixed within a single runbook. runbook-corrector checks
TDD discipline, step quality, and LLM failure modes before execution.
/orchestrate dispatches each step to a sub-agent in isolated context.
Executing agents receive only their step file plus the design — no access to
other steps, so scope is enforced structurally rather than by prose
instructions. Review follows every production artifact.
/handoff captures completed work, pending tasks, and blockers for the next
session. /commit handles structured commit messages with gitmoji.
The pipeline is not mandatory. Any skill works independently. But the full sequence prevents the failure mode where a task succeeds in one session and leaves wreckage for the next.
Agents start in one of five modes, triggered by shortcuts:
| Shortcut | Mode | Behavior |
|---|---|---|
s | Status | List pending tasks with metadata, wait |
x | Execute | Resume in-progress or start first pending |
xc | Execute+Commit | Execute, then handoff and commit |
r | Resume | Strict: resume only, error if nothing in progress |
wt | Worktree | Set up parallel execution via git worktrees |
Claude Code sessions are stateless. The memory system persists project
knowledge in an agents/ directory in the consuming project:
/handoff/codify when approaching the 80-line limitrequirements → designed → planned
→ complete)Validators (bin/validate-*.py) enforce cross-reference integrity, format
conventions, and key uniqueness across these files.
Skills are slash-command procedures that inject instructions into the current
conversation when invoked. Agents (next section) are separate processes with
isolated context, spawned via the Task tool. Each skill lives in
skills/<name>/SKILL.md.
Workflow pipeline:
| Skill | Purpose |
|---|---|
/design | Entry point — triages complexity, routes to appropriate workflow |
/runbook | Creates execution plans with per-phase TDD or general typing |
/review-plan | Reviews runbook quality, TDD discipline, LLM failure modes |
/orchestrate | Dispatches runbook steps to sub-agents |
/review | Reviews production artifacts for quality |
Session management:
| Skill | Purpose |
|---|---|
/handoff | Updates session.md with completed work and pending tasks |
/commit | Structured commit messages with gitmoji |
/next | Shows pending work when no context is loaded |
/shelve | Archives session context to task list, resets for new work |
/codify | Consolidates learnings into permanent documentation |
Specialized:
npx claudepluginhub ddaanet/edify-pluginPre-/clear task snapshot for Claude Code: agent writes current task + open decisions; at next session start, a hook scrapes the prior transcript and injects task + last-N prompts + files touched into the fresh agent automatically.
Forces `git status` to run with the Claude Code command sandbox disabled, so it reports the real working tree instead of phantom sandbox-mount entries.
Candidature assistée : préparation, lettre de motivation, CV adapté, relecture, suivi des retours. Stockage Notion. Contenu français.
Shell scripting gotchas skill plus automatic shellcheck feedback on edited shell files
Commit-msg git hook that replaces conventional-commit prefixes (feat:, fix:, docs:, ...) with gitmoji emojis. Installs the per-repo hook automatically on SessionStart whenever the plugin is enabled in the current repo.
11 agents, 35 skills, 18 commands, 9 hooks — spec-driven multi-agent orchestration for Claude Code, with optional cross-device semantic memory.
Agentic workflow mechanics: CLAUDE.md instruction quality and structured context handoff
Agent enforcement framework — context injection, planning gates, session learning
This skill should be used when the model's ROLE_TYPE is orchestrator and needs to delegate tasks to specialist sub-agents. Provides scientific delegation framework ensuring world-building context (WHERE, WHAT, WHY) while preserving agent autonomy in implementation decisions (HOW). Use when planning task delegation, structuring sub-agent prompts, or coordinating multi-agent workflows.
Planning and execution workflows for Claude Code. Based on obra/superpowers.
Harness for Claude Code — skills, /harness:* slash commands, persona subagents, lifecycle hooks, and MCP tools without per-repo `harness setup`. Sibling plugins exist for Cursor, Gemini CLI, and Codex.