schuettc/claude-code-plugins

Claude Code plugins for feature lifecycle management

14Stars on the repository
60Mods indexed here, across every type
10d agoLast push, which is what freshness is scored on
noneNo LICENSE: all rights reserved, so bodies are not copied

getting-started

01

schuettc/claude-code-plugins

Skill Claude CodeCodex

Interactive onboarding for someone who just cloned the claude-code-plugins repo and wants to install the feature-workflow plugin into their own project. Use when the user asks "how do I use this", "where do I start", "walk me through it", wants a demo, or is evaluating the repo. Explains what this repo is, helps…

14 10d ago A 90 tokens

exit-code-integrity

02

schuettc/claude-code-plugins

Skill Claude CodeCodex

Use when running any check, test, build, lint, or deploy from a shell — especially when piping its output through tail/head/grep, or wrapping it in a compound command to keep the output short. The rule — a pipeline reports the LAST command's exit code, so check | tail turns a failing check into a passing one. Never…

14 10d ago A 85 tokens

schuettc/claude-code-plugins

Skill Claude CodeCodex

Use whenever build, deploy, or background code reads files from another GitHub repo at runtime — workshop content, manifests, configs fetched from a registry. Captures the rules that keep us under the GitHub App's 15000/hr installation rate limit (zipball over per-file, respect retry-after, share fetched content) and…

14 10d ago A 76 tokens

project-structure

04

schuettc/claude-code-plugins

Skill Claude CodeCodex

The standard for how a repo is laid out and how files/modules are named, so every project looks the same and generated code has an obvious right place. Use when creating a new file, module, or directory, deciding where something goes, naming a file/folder, scaffolding a new repo, or reviewing whether code is…

14 10d ago A 95 tokens

schuettc/claude-code-plugins

Skill Claude CodeCodex

Use when writing or reviewing tests for a UI, a live-updating view, or anything with a second actor — a poll, a websocket, a background job, another user, an agent. The rule — most real defects are interactions across TIME (something arrives while you are typing; an element grows after it was measured), and a test…

14 10d ago A 87 tokens

verify-the-artifact

06

schuettc/claude-code-plugins

Skill Claude CodeCodex

Use when a change's effect is separated from its source by a build step, a bundler, a cascade, or any runtime resolution — CSS, generated assets, compiled bundles, templates, layered config, env precedence. The rule — source is a claim about behaviour; only the running artifact is evidence. Read the resolved value out…

14 10d ago A 87 tokens

worktree-isolation

07

schuettc/claude-code-plugins

Skill Claude CodeCodex

Use when about to make code changes while other work is in flight, when working in a repo's primary clone with live git worktrees, when starting a parallel line of work, or when dispatching agents that write to the tree. The rule — the primary clone is a coordination point, not a workspace; isolate every line of work…

14 10d ago A 93 tokens

auditing-context

08

schuettc/claude-code-plugins

Skill Claude CodeCodex

Auto-load active audit context when working with audited code. Use when user is working on code that has an active audit session, discussing audit findings, or making changes related to a runtime audit. Silently loads audit session data to inform responses.

14 10d ago A 52 tokens

checking-backlog

09

schuettc/claude-code-plugins

Skill Claude CodeCodex

Check project backlog when discussing feature ideas or priorities. Use when user mentions adding features, asks what's planned, discusses priorities, or proposes new functionality. Silently reads DASHBOARD.md to show relevant items and suggest /feature-capture for untracked ideas.

14 10d ago A 54 tokens

feature-audit

10

schuettc/claude-code-plugins

Skill Claude CodeCodex

Runtime behavior auditing through systematic log injection. Use when user wants to understand what code is doing at runtime, debug complex flows, or audit a process.

14 10d ago A 34 tokens

feature-autopilot

11

schuettc/claude-code-plugins

Skill Claude CodeCodex

End-to-end autopilot for driving a captured feature from idea.md through to merged PR. Chains feature-plan, feature-review-plan, feature-implement, feature-review-impl, and feature-ship with reviewer gates between phases. Auto-advances on PASS/CONDITIONAL PASS, pauses on FAIL. Use when the user says "ship feature X"…

14 10d ago A 101 tokens

feature-capture

12

schuettc/claude-code-plugins

Skill Claude CodeCodex

Interactive workflow for adding items to the backlog. Use when user wants to add a new feature, track an idea, capture requirements, or mentions something that should be in the backlog.

14 10d ago A 40 tokens

feature-deploy

13

schuettc/claude-code-plugins

Skill Claude CodeCodex

Coordinate a multi-repo deploy across a workspace's member repos in producer-first order. Use after a cross-repo epic's children have all merged and you need to release the members in dependency order (e.g. deploy the API producer before its consumers).

14 10d ago A 55 tokens

feature-implement

14

schuettc/claude-code-plugins

Skill Claude CodeCodex

Execute a feature implementation plan from a clean context. Use when starting implementation after planning, or when resuming work on an in-progress feature. Reads plan.md and executes implementation steps.

14 10d ago A 40 tokens

feature-init

15

schuettc/claude-code-plugins

Skill Claude CodeCodex

Initialize feature-workflow for a project, or refresh CI files with --update. Creates docs/features/, .feature-workflow.yml, and optional GitHub Actions review setup.

14 10d ago A 37 tokens

feature-plan

16

schuettc/claude-code-plugins

Skill Claude CodeCodex

Start implementing a feature from the backlog with adaptive agent dispatch. Use when user wants to begin work on a backlog item, start implementation, or mentions a specific feature ID to work on.

14 10d ago A 40 tokens

feature-review-impl

17

schuettc/claude-code-plugins

Skill Claude CodeCodex

Submit a feature implementation for external review via the existing draft PR, or respond to reviewer feedback on the code. Pushes implementation to the feature branch and updates the PR.

14 10d ago A 39 tokens

feature-review-plan

18

schuettc/claude-code-plugins

Skill Claude CodeCodex

Submit a feature plan for external review via draft PR, or respond to reviewer feedback on the plan. Creates a feature branch, opens a draft PR containing the plan, and manages the review cycle.

14 10d ago A 43 tokens

feature-search

19

schuettc/claude-code-plugins

Skill Claude CodeCodex

Search and filter features by state, assignee, priority, epic, dependency, type, or category. Use when the user wants to find features matching criteria — "what's paused", "what's court working on", "what's in the auth-overhaul epic", "what depends on X".

14 10d ago A 63 tokens

feature-ship

20

schuettc/claude-code-plugins

Skill Claude CodeCodex

Complete a feature by writing shipped.md, committing to the feature branch, and merging the PR. Use when external reviews are done and the feature is ready to ship.

14 10d ago A 37 tokens

feature-state

21

schuettc/claude-code-plugins

Skill Claude CodeCodex

Change a feature's state (active/paused/replaced/abandoned). Use when a feature needs to be paused while waiting on something, marked obsolete because another feature replaces it, or abandoned because it won't be pursued. Requires companion fields for non-active states.

14 10d ago A 55 tokens

feature-status

22

schuettc/claude-code-plugins

Skill Claude CodeCodex

Display project status and backlog overview. Use when user asks about current status, what's in progress, what to work on next, or wants a summary of the backlog. Read-only skill that formats DASHBOARD.md into a clear dashboard view.

14 10d ago A 50 tokens

schuettc/claude-code-plugins

Skill Claude CodeCodex

Systematic debugging mode with hypothesis-driven investigation. Use when user reports a bug, encounters an error, or needs help debugging a problem.

14 10d ago A 32 tokens

guarding-scope

24

schuettc/claude-code-plugins

Skill Claude CodeCodex

Check if requested changes are within current feature scope. Use when user requests new functionality or changes during implementation that might be scope creep. Compares requests against feature requirements and suggests adding out-of-scope items to backlog.

14 10d ago A 48 tokens