refo
01Plugin Claude Code
Plugin marketplace listing 2 plugins: dev-helpers, mp.
Plugin Claude Code
Plugin marketplace listing 2 plugins: dev-helpers, mp.
Plugin Claude Code
Stack-agnostic agentic dev workflow helpers: TDD, commits, PRDs, issue triage, pre-commit setup, design grilling. Reads per-project config from .claude/helpers.json.
Command
Create a git commit with conventional commit message format.
Command
Based on "Design It Twice" from "A Philosophy of Software Design": your first idea is unlikely to be the best. Generate multiple radically different designs, then compare.
Command
This guide enables safety hooks that prevent Claude from executing destructive git operations. The setup intercepts dangerous commands like git push, git reset --hard, git clean, git branch -D, and git checkout . before execution.
Command
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree.
Command
Detect this project's stack and write a draft .claude/helpers.json so the rest of the dev-helpers plugin commands know how to behave. Run once per repo after installing the plugin.
Command
Pick up the next open GitHub issue (or a specific one by number) and start the grill-then-implement flow.
Command
Break a PRD into independently-grabbable GitHub issues using tracer-bullet vertical slices. Use when user wants to convert a PRD to issues, create implementation tickets, or break down a PRD into work items.
Command
Break a PRD into a phased implementation plan using vertical slices (tracer bullets). Output is a Markdown file in ./plans/.
Command
Set up pre-commit hooks appropriate for this project's stack (lint + format + typecheck + tests). Use when user wants to add pre-commit hooks or commit-time quality checks.
Command
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
Command
Systematically investigate a bug, design a fix, and create a GitHub issue with TDD approach.
Command
Extract and formalize domain terminology from the current conversation into a consistent glossary, saved to a local file.
Command
Create a PRD through user interview, codebase exploration, and module design, then submit as a GitHub issue. Use when user wants to write a PRD, create a product requirements document, or plan a new feature.
Hook
Runs before the agent uses a tool for Bash tool calls, executing block-dangerous-git.sh. From refo/claude-dev-helpers.
Plugin Claude Code
Matt Pocock's Claude Code skills, vendored from mattpocock/skills via git subtree.
Plugin Claude Code
mattpocock-skills. Personal Claude Code marketplace + dev-helpers plugin: stack-agnostic agentic dev workflow helpers (TDD, commits, PRDs, issue triage, pre-commit setup, design grilling).
Skill Claude CodeCodex
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".
Skill Claude CodeCodex
Interactive QA session where user reports bugs or issues conversationally, and the agent files GitHub issues. Explores the codebase in the background for context and domain language. Use when user wants to report bugs, do QA, file issues conversationally, or mentions "QA session".
Skill Claude CodeCodex
Create a detailed refactor plan with tiny commits via user interview, then file it as a GitHub issue. Use when user wants to plan a refactor, create a refactoring RFC, or break a refactor into safe incremental steps.
Skill Claude CodeCodex
Extract a DDD-style ubiquitous language glossary from the current conversation, flagging ambiguities and proposing canonical terms. Saves to UBIQUITOUSLANGUAGE.md. Use when user wants to define domain terms, build a glossary, harden terminology, create a ubiquitous language, or mentions "domain model" or "DDD".
Skill Claude CodeCodex
Ask which skill or flow fits your situation. A router over the skills in this repo.
Skill Claude CodeCodex
Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use…