Plugin Claude Code
Plugin marketplace listing 5 plugins: onboard, notify, handoff, walkthrough, lens.
Plugin Claude Code
Plugin marketplace listing 5 plugins: onboard, notify, handoff, walkthrough, lens.
Skill Claude CodeCodex
Audit and surgically fix the marketplace's documentation so every shipped command is discoverable — checks each plugin README's Skills section against SKILL.md frontmatter, the root README's plugin list and command index, manifest/description sync, and docs-site parity. Use when docs may have drifted from the code…
Skill Claude CodeCodex
Run pre-completion checklist after finishing a plugin feature — validates, checks docs, suggests commit.
Skill Claude CodeCodex
Apply progressive-disclosure discipline to a SKILL.md — measure size, identify inert content (prompt templates, schemas, long enumerations, long bash blocks), propose extractions, and rewrite the SKILL.md with reference stubs. Use when editing or creating a SKILL.md, or when an existing SKILL.md exceeds 100 lines.
Skill Claude CodeCodex
Set up, reset, or run a local testbed for the plugins in this repo. Use whenever you want to dogfood a plugin from this working copy (any branch) against a clean sibling sandbox project — covers marketplace registration, install/update, per-plugin smoke recipes.
Skill Claude CodeCodex
Validate all plugins for structure, manifests, references, shell scripts, and markdown conventions.
Instructions file
Claude Code instructions for ApurvBazari/claude-plugins, covering claude-plugins, repository, architecture, plugin structure convention and file type conventions.
Plugin Claude Code
Save and resume session handoffs — capture intent at session end, surface it at the next SessionStart.
Hook
Runs when a session starts, executing session-start.sh via bash. From ApurvBazari/claude-plugins.
Skill Claude CodeCodex
Read-only inspector for saved handoffs. Reports whether .claude/handoff/active.md exists, its age, saved-at SHA/branch, progress past the save point (commits/branch changes), snooze status, and current settings. Use when the user asks about handoff state, why a handoff isn't surfacing, or wants a quick sanity check…
Skill Claude CodeCodex
Use when the user explicitly wants to discard a saved handoff without acting on it (the work is no longer relevant). Invokable anywhere via /handoff:discard.
Skill Claude CodeCodex
Use when a saved handoff is surfaced at SessionStart, or when the user runs /handoff:pickup, to resume prior work — presents the saved directive and dispatches on the user's choice.
Skill Claude CodeCodex
Use when the user signals end-of-session — "save handoff", "pick this up later", "continue in a new session", "I'll come back to this". Captures the session's intent so the next session can resume it. Slash form /handoff:save is the explicit fallback.
Plugin Claude Code
Intent-grounded review companion — checks the session diff against spec & plan, verifies findings, renders a review.
Agent
Scans the session diff for bugs, silent failures (swallowed errors), edge cases, and security issues — confirming each against the real source. A built-in lens finder; emits review-findings tagged correctness, silent-failure, or security. Read-only.
Agent
Checks the session diff against its plan steps — marks each step followed/deviated, emits a finding plus a review hotspot for every deviation. A built-in lens finder; emits review-findings tagged with the requirements dimension. Read-only.
Agent
Tags each changed file with a blast-radius risk class (auth/data/money/migration/concurrency/public-api/none) and flags high-risk files that lack a test or guard. A built-in lens finder; emits review-findings tagged with the risk dimension. Read-only.
Agent
Checks the session diff against its spec (the intent record) — decides met/partial/missing per spec item, flags spec-gaps and scope-creep. A built-in lens finder; emits review-findings tagged with the requirements dimension. Read-only.
Agent
Identifies new or changed code paths in the session diff that lack test coverage and emits a finding per meaningful untested path. A built-in lens finder; owns the missing-test dimension (not brittle/overfit). Emits review-findings tagged with the test dimension. Read-only.
Agent
Adversarial skeptic for the lens VERIFY stage — takes ONE candidate finding and tries to refute it against the real source, defaulting to refuted for unproven bug/correctness/security/test claims and kept for spec/plan judgment. Owns the verified flip. Read-only.
Skill Claude CodeCodex
Internal capability-declaration surface for a programmatic caller's compatibility gate — answers "which lens is installed, and does it support X?" before any review is sent. Returns the manifest version, the advertised capability tokens, and the input keys and resolution rules a caller may rely on; a requested token…
Skill Claude CodeCodex
Internal data-only review core invoked directly by /lens:review and by a programmatic orchestrator (matali) calling it as a compute-only step, to produce a review-findings JSON object from the session diff. Not user-invocable; returns data, writes nothing, never prompts.
Skill Claude CodeCodex
Internal pure-render entrypoint — given a review-findings object (plus optional prior findings, a diff ref, and intent), reconcile in-memory, assemble the review-model, and render the interactive HTML via walkthrough:render. Writes ONLY the output HTML; no lens state, no recompute, no task list. Invoked by an…
Skill Claude CodeCodex
Review the current session's changes against their spec and plan, adversarially verify the findings, and render an interactive review document. Use when the user wants to review what was just built before it ships, runs /lens:review, or asks to "review my changes / review this before I commit". Reviews Claude's own…