schuettc

70 mods across 4 repositories, 41 stars between them.

getting-started

02

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

schuettc/claude-code-plugins

Plugin Claude Code

Evergreen engineering standards I hold code to — the judgment layer that AI-slop resistance needs on top of the mechanical quality stack. Project-structure conventions, worktree isolation (every line of work in its own tree; bare primaries need a sibling), GitHub API discipline, exit-code integrity (never read a…

14 10d ago A tokens not measured

exit-code-integrity

04

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

06

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

08

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

09

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

feature-workflow

10

schuettc/claude-code-plugins

Plugin Claude Code

Feature lifecycle management with state, search, epic dispatch, and review gates. Capture ideas (idea.md), plan (plan.md), and ship (shipped.md) with file-presence lifecycle plus orthogonal state (active/paused/replaced/abandoned). Single-feature autopilot and parallel-wave epic dispatch — every subagent in its own…

14 10d ago A tokens not measured

api-designer

11

schuettc/claude-code-plugins

Agent

Designs API contracts and data flow for features. Specializes in GraphQL schema design, Lambda function specifications, database structures, and authorization patterns. Creates clear API contracts between frontend and backend with complete error handling specifications.

14 10d ago A 47 tokens

code-archaeologist

12

schuettc/claude-code-plugins

Agent

Use PROACTIVELY when inheriting legacy codebases or before making changes to undocumented systems. This agent specializes exclusively in reverse-engineering complex code - tracing data flows, uncovering hidden dependencies, mapping system architecture, and identifying technical debt. Automatically generates…

14 10d ago A 77 tokens

documentation-agent

13

schuettc/claude-code-plugins

Agent

MUST BE USED whenever code is created or modified to maintain living documentation. This agent specializes exclusively in generating and maintaining technical documentation - creating API references, architecture diagrams, README files, and inline comments that stay synchronized with code. Automatically detects…

14 10d ago A 73 tokens

frontend-architect

14

schuettc/claude-code-plugins

Agent

Designs React component architecture and state management for frontend features. Specializes in component hierarchy, props interfaces, state flow, and integration patterns. Creates clear component blueprints that are maintainable, testable, and performant.

14 10d ago A 48 tokens

schuettc/claude-code-plugins

Agent

Designs integration layer between frontend and backend. Specializes in GraphQL query usage, state synchronization, authorization flow, caching strategy, and error handling. Creates clear integration patterns that are secure, performant, and reliable.

14 10d ago A 47 tokens

project-manager

16

schuettc/claude-code-plugins

Agent

Use PROACTIVELY at the start of each sprint or product cycle to align technical work with business objectives. This agent specializes exclusively in product strategy and prioritization - creating roadmaps, defining acceptance criteria, analyzing market needs, and maximizing ROI. Automatically generates PRDs from…

14 10d ago A 77 tokens

qa-engineer

17

schuettc/claude-code-plugins

Agent

MUST BE USED before every release to ensure comprehensive quality validation and prevent defects from reaching production. This agent specializes exclusively in quality assurance - creating test plans, designing test cases, executing exploratory testing, and tracking quality metrics. Automatically generates test…

14 10d ago A 70 tokens

runtime-auditor

18

schuettc/claude-code-plugins

Agent

Specialized agent for runtime behavior verification. Injects observational logs, captures execution data, and analyzes runtime behavior to verify code does what is expected. Use when you need evidence-based verification rather than static code inference.

14 10d ago A 47 tokens

security-reviewer

19

schuettc/claude-code-plugins

Agent

MUST BE USED before every deployment and pull request. This agent focuses solely on security vulnerability detection and remediation - scanning for OWASP Top 10, analyzing authentication/authorization, checking dependencies for CVEs, and validating data protection. Automatically blocks insecure code, provides specific…

14 10d ago A 72 tokens

system-designer

20

schuettc/claude-code-plugins

Agent

MUST BE USED when designing high-level system architecture for new projects or major system changes. This agent specializes exclusively in system design - creating component diagrams, defining service boundaries, designing data flows, and establishing integration patterns. Automatically creates system blueprints with…

14 10d ago A 60 tokens

test-generator

21

schuettc/claude-code-plugins

Agent

MUST BE USED for all new feature development to enforce test-driven development (TDD). This agent specializes exclusively in writing comprehensive test suites BEFORE any implementation exists - generating unit tests, integration tests, edge cases, and error scenarios that define expected behavior. Automatically…

14 10d ago A 82 tokens

ux-optimizer

22

schuettc/claude-code-plugins

Agent

MUST BE USED when creating or modifying user-facing interfaces to ensure optimal user and developer experience. This agent specializes exclusively in UX optimization - analyzing user flows, improving interaction patterns, ensuring accessibility compliance, and enhancing developer ergonomics. Automatically identifies…

14 10d ago A 71 tokens

auditing-context

23

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

24

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