review
25TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Review code for bugs, security issues, and best practices.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Review code for bugs, security issues, and best practices.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Scan project for security issues — exposed secrets, missing .gitignore entries, unsafe patterns.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Set the default profile for /new-project.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Interactive project setup — configure .env, GitHub, Docker, analytics, and services.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Open the comprehensive User Guide in your browser.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Manage the @claude-code-mastery/starter-kit installation — update, check status, or add to the current project.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Generate a structured test plan for a feature.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Update a starter-kit project with the latest commands, hooks, skills, and rules.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Live monitor of everything your AI is doing — tokens, cost, violations, tool usage.
TheDecipherist/claude-code-mastery-project-starter-kit
Command Claude Code
Create a git worktree + branch for an isolated task.
TheDecipherist/claude-code-mastery-project-starter-kit
Hook Claude Code
Runs before the agent uses a tool for Bash tool calls, executing check-rybbit.sh, check-branch.sh, check-ports.sh, check-e2e.sh and block-dangerous-bash.py via bash (5 commands). From TheDecipherist/claude-code-mastery-project-starter-kit.
TheDecipherist/claude-code-mastery-project-starter-kit
Hook Claude Code
Runs after a tool call finishes for Write and Edit tool calls, executing lint-on-save.sh and check-file-length.py via bash (2 commands). From TheDecipherist/claude-code-mastery-project-starter-kit.
TheDecipherist/claude-code-mastery-project-starter-kit
Hook Claude Code
Runs when the agent finishes a response, executing verify-no-secrets.sh, check-rulecatch.sh and check-env-sync.sh via bash (3 commands). From TheDecipherist/claude-code-mastery-project-starter-kit.
TheDecipherist/claude-code-mastery-project-starter-kit
Settings file Claude Code
Agent settings declaring 3 hook events (PreToolUse, PostToolUse, Stop).
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Accessibility and screen-reader support, built in from the start rather than bolted on. Claude treats a11y as an afterthought and reaches for clickable divs, skips alt text and labels, and removes focus rings. Use when building or editing any UI, page, or interactive component. Covers semantic HTML before ARIA, real…
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Service structure conventions for this codebase: routing, layering, and where code lives. Use whenever writing or modifying a service's server entry, route definitions, handlers, or adapters. Loads inline so it shapes structure as code is written.
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Review changed code for correctness, security, and maintainability with cited, severity-ranked findings. Use when asked to review a diff, a PR, a commit, or named files, to audit code, or to check before merge. Runs isolated and read-only, reports findings, does not edit.
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Scaffold a new microservice that follows the project's server/handlers/adapters architecture. Use when asked to create, scaffold, or add a new service or package. Writes files and may create a git branch, so it runs only when invoked explicitly.
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Where CSS should live. Claude defaults to dumping a giant block or scattering style="..." attributes instead of putting styles in a .css file and linking it. Use when building or editing a web page or component, or whenever about to write a style attribute or an embedded style block. Covers defaulting to an external…
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Diagnose failures by root cause, not symptom. Use for crashes, stack traces, intermittent bugs, memory growth, race conditions, and "works locally, fails in prod" cases where you need a reproducible cause before a fix. Runs isolated and read-only, reports the root cause and fix.
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Vet an npm (or other) package for supply-chain risk before it's added to a project. Use when asked whether a package is safe, trustworthy, or worth adding, when about to install an unfamiliar dependency, or when something about a package feels off. Runs isolated and read-only, reports an evidence-backed risk verdict…
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Critique UI and UX for usability, accessibility, and distinctiveness with cited, evidence-based findings. Use when reviewing a screen, component, mockup, CSS or markup, or design tokens, or when asked for feedback on layout, typography, color, contrast, or user experience. Runs isolated and read-only, reports…
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Common pitfalls that are slow to troubleshoot and that tend to get "fixed" by going in circles, because the error message points nowhere near the actual cause. Use before and during git, project, and WSL work, checking a repo is initialized and nodemodules is ignored, putting WSL projects on the right filesystem…
TheDecipherist/claude-code-mastery-project-starter-kit
Skill Claude CodeCodex
Production Docker Swarm deployment rules: what changes when a compose file goes from a single node to a multi-node Swarm. Use when writing or reviewing a stack file, a deploy block, an overlay network, or anything deployed with docker stack deploy. Covers the directives Swarm silently ignores, why fixed IPs and bind…