dotclaude
01Plugin Claude Code
Lean, token-efficient agents, skills, and safety hooks for daily Claude Code development. Install the whole kit with setupdotclaude, or pick individual plugins. No telemetry; runs entirely locally.
Plugin Claude Code
Lean, token-efficient agents, skills, and safety hooks for daily Claude Code development. Install the whole kit with setupdotclaude, or pick individual plugins. No telemetry; runs entirely locally.
Instructions file
Instructions for poshan0126/dotclaude, covering dotclaude (this repo), commands, architecture, key decisions and workflow.
Plugin Claude Code
Rebuild context fast after /clear: reads the handoff note and branch changes, summarizes where work stands. Add handoff to write the note before stopping.
Plugin Claude Code
Keep CLAUDE.md current and lean: capture session learnings into it (default) or audit it for stale commands, drift, and bloat.
Plugin Claude Code
Reviews code for real bugs: off-by-ones, null derefs, race conditions, swallowed errors. Skips style nitpicks.
Plugin Claude Code
Estimate per-turn token cost of your .claude/ configuration and CLAUDE.md. Always-loaded vs path-scoped vs invoked-only, with top contributors. Use --api for exact counts.
Plugin Claude Code
Find and fix a bug. Default is the careful path (reproduce, investigate, test). Add --fast for emergency hotfix mode.
Plugin Claude Code
Cross-references docs against actual source. Flags drift, missing params, dead references.
Plugin Claude Code
Explain code with one-sentence summary, mental model, ASCII diagram, and modification guide.
Plugin Claude Code
Take a GitHub issue from number to tested fix: read the thread, reproduce, fix with a regression test, prep a PR that closes it.
Plugin Claude Code
Builds production-grade UI. Tokens-first, anti-AI-slop aesthetics, design tokens enforced.
Plugin Claude Code
Get oriented in an unfamiliar codebase fast: an Explore-subagent tour from overview down to architecture, data models, auth, conventions, and a glossary, without flooding your main context.
Plugin Claude Code
Finds real bottlenecks. DB N+1, memory leaks, blocking calls, re-renders.
Plugin Claude Code
Review PR or staged changes via six specialist agents in parallel. Confidence-bucketed, severity-ranked synthesis.
Plugin Claude Code
Judges whether a diff's tests actually verify the change: assertion-free tests, mock theater, tests that cannot fail, weakened tests.
Plugin Claude Code
Safely refactor with tests as a safety net. Writes tests first if none exist. Use --diff to simplify just the working diff before committing.
Plugin Claude Code
Deterministic guardrails as PreToolUse hooks: blocks dangerous commands (force push, rm -rf, DROP TABLE), secret leaks, edits to protected files, and writes to build artifacts.
Hook
Runs before the agent uses a tool for Edit, Write and Bash tool calls, executing protect-files.sh, warn-large-files.sh, scan-secrets.sh and block-dangerous-commands.sh (4 commands). From poshan0126/dotclaude.
Plugin Claude Code
OWASP-style review: injection, auth, data exposure, weak crypto. Severity-ranked with file:line + fix.
Plugin Claude Code
Set up dotclaude in any project. Deep-scans the codebase, interviews you, then installs and customizes only the components the project actually needs.
Plugin Claude Code
Commit, push, create PR with confirmation at every step, then optional cleanup of branches whose remotes are gone. Blocks secrets and force-push.
Plugin Claude Code
Finds code that fails silently: swallowed errors, failures masked as success, fallbacks that hide breakage. Runs on every PR review.
Plugin Claude Code
Turn a fuzzy feature idea into a self-contained SPEC.md by interviewing you first, then writing a spec a fresh implementation session can execute.
Plugin Claude Code
Strict red-green-refactor TDD loop. Failing test, then minimum code, then refactor. Commits after each cycle.