githubinferredactive
claude-power-skills
provenance:github:irfad7/claude-power-skills
20 power-user skills for Claude Code — session management, multi-agent orchestration, adversarial testing, calibrated estimation, decision archaeology, and more. Drop-in SKILL.md files that turn your AI coding agent into a senior engineering partner.
README
# ⚡ claude-power-skills **20 power-user skills for Claude Code that turn your AI assistant into a senior engineering partner.** Born from reverse-engineering how top-tier AI coding agents actually work internally — session management, multi-agent orchestration, adversarial testing, decision archaeology, calibrated estimation — then packaging those patterns as drop-in skills anyone can use. [](LICENSE) [](#skills) [](https://docs.anthropic.com/en/docs/claude-code) --- ## Why this exists Claude Code ships with solid defaults. But if you've pushed it on real projects — multi-repo monoliths, production incident debugging, sprint planning — you've hit the ceiling. The agent forgets context between sessions. It estimates effort like someone who's never shipped software. It doesn't know when it's stuck. It can't coordinate parallel workstreams. These skills fix that. Each one encodes a specific workflow pattern that experienced engineers use intuitively, structured so the agent can execute it consistently. No wrappers. No frameworks. No dependencies. Just SKILL.md files that plug directly into Claude Code's skill system. --- ## Quick Start **Install as a plugin** (recommended) ``` /plugin install irfad7/claude-power-skills ``` That's it. All 20 skills are available immediately across all your projects. **Or cherry-pick into a single project** ```bash # Clone the repo git clone https://github.com/irfad7/claude-power-skills.git ~/claude-power-skills # Copy the skills you want into your project cp -r ~/claude-power-skills/skills/bughunter your-project/skills/ cp -r ~/claude-power-skills/skills/ultraplan your-project/skills/ ``` Once installed, invoke by name: ``` /bughunter → adversarial security analysis /ultraplan → deep planning with creative exploration /effort-estimate → calibrated estimation with velocity tracking /codebase-insight → persistent architecture analysis ``` --- ## Skills ### 🧠 Session & Memory | Skill | What It Does | |-------|-------------| | [**kairos-session**](skills/kairos-session/SKILL.md) | Session lifecycle management — structured boot sequence with context loading, state diffing, and memory consolidation on shutdown. Daemon mode for persistent background operation. | | [**autodream**](skills/autodream/SKILL.md) | Memory synthesis across sessions — scans memory files, detects contradictions and duplicates, merges observations, promotes recurring patterns to reflexes. Outputs a health score. | | [**session-review**](skills/session-review/SKILL.md) | End-of-session analysis — replays the session transcript, extracts decisions and patterns, computes knowledge deltas, generates handoff notes for the next session. | | [**context-compression**](skills/context-compression/SKILL.md) | 3-layer compression pipeline for long conversations. Layer 1: MicroCompact (~30-40% reduction, zero info loss). Layer 2: AutoCompact (~60-70%). Layer 3: Full Compact (~85-90%). | ### 📐 Planning & Estimation | Skill | What It Does | |-------|-------------| | [**ultraplan**](skills/ultraplan/SKILL.md) | Creative exploration before execution. 5-act structure: understand the problem, explore multiple approaches, validate technically, design incrementally, produce phased execution plan. Includes problem reframing, devil's advocate challenges, and YAGNI audits. | | [**effort-estimate**](skills/effort-estimate/SKILL.md) | Calibrated estimation engine. Decomposes tasks into atoms, scores complexity on 3 axes, applies velocity calibration from past estimates. Maintains a `.velocity-profile.json` that makes estimates more accurate over time. Cold-start aware. | | [**thinkback**](skills/thinkback/SKILL.md) | Decision archaeology — reconstruct why past decisions were made from git history, code patterns, and documentation. Three modes: dig (single decision), audit (batch review), replay (reasoning trace). | ### 🔍 Code Quality | Skill | What It Does | |-------|-------------| | [**code-review**](skills/code-review/SKILL.md) | 6-pass deep code review: correctness, security, logic/design, performance, maintainability, integration. Structured output with severity levels, fix suggestions, and explicit acknowledgment of what's well-written. | | [**bughunter**](skills/bughunter/SKILL.md) | Red team adversarial analysis. Maps attack surfaces, runs 5 systematic attack categories (input, state, logic, integration, data integrity), logs structured exploits, chains bugs into kill chains. Three modes: quick (15min), standard, deep (parallel subagents). | | [**codebase-insight**](skills/codebase-insight/SKILL.md) | Deep codebase analysis that persists to `.codebase-insight.md`. Maps architecture, patterns, dependencies, critical paths, quirks, and health scores. Delta mode updates only what changed. Future sessions load the file instantly instead of re-analyzing. | | [**pr-autofix**](skills/pr-autofix/SKILL.md) | Reads PR review comments and CI failures, triages by priority, applies fixes (one commit per comment), drafts reviewer responses, and pushes. Compresses the review→fix→push cycle from hours to minutes. | ### 🔄 Workflow & Orchestration | Skill | What It Does | |-------|-------------| | [**coordinator-mode**](skills/coordinator-mode/SKILL.md) | Multi-agent orchestration. Decomposes complex tasks, plans execution waves with dependency ordering, dispatches parallel subagents, merges results with conflict detection, runs quality gates. | | [**batch-mode**](skills/batch-mode/SKILL.md) | Apply one operation across many targets consistently. Mandatory dry-run phase, progress tracking, exception handling with skip/retry/abort, structured report on completion. | | [**prompt-speculation**](skills/prompt-speculation/SKILL.md) | Proactive next-step engine. After completing work, generates 4 candidate follow-ups (immediate, quality, strategic, preventive), scores them by leverage = (Impact × Urgency) / Effort, and presents the top 3. | ### 🛡️ Security & Recovery | Skill | What It Does | |-------|-------------| | [**security-review**](skills/security-review/SKILL.md) | 7-phase security audit covering secrets scanning, auth/authz review, input validation, data protection, dependency analysis, infrastructure config, and business logic flaws. Produces a structured report with severity ratings and remediation code. | | [**stuck-recovery**](skills/stuck-recovery/SKILL.md) | Detects when the agent is looping on the same approach. Forces a structured reset: stop → restate the problem → audit assumptions → gather fresh evidence → reframe using 5 Whys / inversion / simplification → new approach → checkpoint. | | [**frustration-aware**](skills/frustration-aware/SKILL.md) | 3-tier frustration detection (explicit, implicit, preemptive). Fundamentally changes approach on detection — not just tone, but strategy. Escalation rules prevent repeated corrections. | ### 🔒 Protection & Documentation | Skill | What It Does | |-------|-------------| | [**undercover-mode**](skills/undercover-mode/SKILL.md) | Stealth contribution mode. Strips AI attribution from commits, PRs, code comments. Matches repo conventions for commit style, comment density, PR templates. Pre-commit checklist ensures nothing leaks. | | [**anti-distillation**](skills/anti-distillation/SKILL.md) | Context protection. Prevents sensitive project context from leaking across boundaries — into public outputs, other projects, or training data capture. 5-layer defense system. | | [**magic-docs**](skills/magic-docs/SKILL.md) | Documentation generator that reads the actual codebase. Every claim traces to a file path. Supports README, API reference, architecture guide, onboarding guide, and changelog. Monorepo-aware. | --- ## How skills work Each skill is a single `SKILL.md` file with YAML frontmatt [truncated…]
PUBLIC HISTORY
First discoveredApr 2, 2026
IDENTITY
inferred
Identity inferred from code signals. No PROVENANCE.yml found.
Is this yours? Claim it →METADATA
platformgithub
first seenApr 1, 2026
last updatedApr 1, 2026
last crawledtoday
version—
README BADGE
Add to your README:
