handoff
25Command
Write a session handoff document summarizing what was done, what's open, and what the next session should pick up. Saves to .holocron/handoff-YYYY-MM-DD.md.
Command
Write a session handoff document summarizing what was done, what's open, and what the next session should pick up. Saves to .holocron/handoff-YYYY-MM-DD.md.
Command
Correction heatmap for the holocron — top tags, weekly additions, oldest rules (review candidates). Makes the crystal visible.
Command
Capture a correction as a durable learning in the holocron (SQLite). Survives compaction, loads on session start, matched against future prompts.
Command
AI-powered verification gate before a destructive or high-stakes operation. Use before git push to main, production deploys, DDL migrations, or mass deletes. Reads the proposed action in context and returns a go / hold decision with reasons.
Command
Audit the MCP servers active in this session — tool count, schema size, and which ones probably aren't pulling their weight. Every MCP tool's schema adds tokens to every turn; disabling the unused ones is a direct cost cut.
Command
Detect the project stack and draft a repo-appropriate CLAUDE.md (language, framework, test runner, lint setup, agents and commands that fit).
Command
Performance audit on the diff or a path. Delegates to @perf-engineer. Flags bundle bloat, N+1 queries, missing indexes, LCP/CLS risks.
Command
Analyze your Claude Code permission setup — flag commands that probably deserve an allowlist entry, dangerous defaults that should be on the denylist, and suggest additions to settings.json. Reduces prompt fatigue without loosening safety.
Command
Enter plan mode with a structured plan scaffold (goal, success criteria, risks, files to touch, rollback). Use before any non-trivial implementation.
Command
Search the holocron (SQLite + FTS5) for relevant past learnings. Returns top matches ranked by bm25.
Command
Staff-level review of the current diff (or a specified ref). Delegates to @code-reviewer, @security-reviewer, and @a11y-auditor as relevant.
Command
Security scan on the diff — SAST heuristics, secret regex sweep, dependency advisory check. Delegates to @security-reviewer.
Command
Find untested branches and edge cases in a file or the diff. Delegates to @qa-engineer. Returns a prioritized list of missing tests with draft names and assertions.
Command
STRIDE-driven threat model of a diff, component, or proposed feature. Delegates to @threat-modeler. Produces an actionable threat list with mitigations — different from /holocron:sec-scan (line-level SAST) in that it works at the design level.
Command
Set up a git worktree for parallel Claude Code sessions — zero-dead-time while one feature bakes. Creates the worktree, creates/switches the branch, and prints the launch command.
Hook
Runs when a session starts, executing session-start.js via node. From atuljha23/holocron.
Hook
Runs when you submit a prompt, before the agent sees it, executing prompt-submit-inject.js via node. From atuljha23/holocron.
Hook
Runs before the agent uses a tool for Edit, Write, MultiEdit, Read and Bash tool calls, executing read-before-write.js, secret-scan.js, read-budget.js, pre-commit-gate.js and pre-push-wrapup.js via node (5 commands). From atuljha23/holocron.
Hook
Runs after a tool call finishes for Edit, Write, MultiEdit and Bash tool calls, executing post-edit-check.js, test-failure-learn.js and tool-output-budget.js via node (3 commands). From atuljha23/holocron.
Hook
Runs before the context is compacted, executing pre-compact.js via node. From atuljha23/holocron.
Hook
Runs when the agent finishes a response, executing session-usage-log.js and stop-capture-prompt.js via node (2 commands). From atuljha23/holocron.
Skill Claude CodeCodex
WCAG 2.2 AA quick reference — semantics, keyboard, names, states, contrast, motion, errors. Use when building or reviewing UI components.
Skill Claude CodeCodex
REST and GraphQL API design conventions — resource modeling, pagination, error envelopes, versioning, idempotency. Use when adding, changing, or reviewing endpoints.
Skill Claude CodeCodex
Apply the Write/Select/Compress/Isolate framework to manage the context window. Use when the task is long, the transcript is bloated, the model is drifting, or before /holocron:handoff.
At most 3 mods per repository are shown here — the rest are on their repository pages: