All Skills

25,836 skills
lucassantana-dev
Recall
Semantic-search personal knowledge (memory, plans, handoffs, skills, Codex rules) via the local RAG index at ~/.claude/rag-index/. Use when a query is fuzzy or cross-file ("how did we fix X", "what did we decide about Y", "which skill handles Z"). Complements grep (exact) and Serena (code symbols). If the user asks a recall question that doesn't map to a specific known file, reach here first.
1
lucassantana-dev
Debug
Systematic root-cause analysis for bugs, errors, and unexpected behavior
1 · bundle
lucassantana-dev
Hotfix
Composite skill — emergency bypass of the release branch when production is broken and waiting for the next release-cut is not viable. Chains incident scoping → branch from main (NOT release) → minimal fix → pr-merge-readiness → merge to main → patch-version tag → deploy → cherry-pick to release branch → post-deploy verify (sentry + ci-watch). Use ONLY for production-impacting breakage; routine "small fix" work belongs in /pr-to-release.
1 · bundle
lucassantana-dev
RAG
Build and debug Retrieval-Augmented Generation pipelines — chunking, embedding, retrieval, reranking
1 · bundle
lucassantana-dev
Testing
Test generation is repetitive but critical. Developers skip tests because writing edge cases is tedious. AI agents can generate tests quickly but often produce brittle, unrealistic tests that provide false confidence. Tests that mock internals, use fake data like "foo@example.com", or test implementation details break on every refactor.
1 · bundle
lucassantana-dev
Spec Ship
spec-ship
1
lucassantana-dev
Loop
Default execution rhythm — inspect → act → verify → checkpoint — applied iteratively until the task is done or a clear blocker emerges. Use when working through a known plan, draining a queue (PRs, issues, dependency bumps), or executing a multi-step recipe where each step's output informs the next. Each iteration must produce a concrete artifact (commit, comment, decision) and a one-line state update. Stop on first unrecoverable error rather than retrying blindly. Pair with `ship` for merge-bound work and `handoff` if budget runs out mid-loop.
1 · bundle
lucassantana-dev
Plan
Build a compact, validation-gated implementation plan for multi-step, risky, or ambiguous work — typically when phases need explicit checkpoints, the change touches multiple files/services, or the user wants alignment before execution. Output goes to `.claude/plans/<topic>.md` (or `.agents/plans/`) with goal, in/out-of-scope, phased steps, validation per phase, and replanning triggers. Skip for trivial single-file fixes, bug investigations (use `tracer`), or open-ended exploration (use `explore`). Pair with `ship` once the plan ends and merge work begins.
1 · bundle
lucassantana-dev
Ship
Commit, push, and open a pull request with a conventional commit message
1 · bundle
lucassantana-dev
Learn
Auto-extract reusable patterns from the current session into skills or memory
1 · bundle
lucassantana-dev
Route
Route a task to the most fitting skill or agent. Parses user intent, checks installed-skill inventory, and picks the best match (single skill or chain).
1 · bundle
lucassantana-dev
MCP Audit
Read-only diagnostic that scans Claude Code session transcripts to surface which MCP servers and tools you actually use, ranked by call frequency, with zero-use servers flagged for removal. Use when planning an MCP cleanup, evaluating whether to keep a newly-added server, deciding which servers warrant token cost in the catalog, or before authoring an MCP-removal PR. Outputs a markdown report (last N days) — does not modify any settings. Pair with the manual `claude mcp remove <name>` step once findings are reviewed.
1 · bundle
lucassantana-dev
Secure
Shortcut for security review on current change set. Runs layered checks (secret-scan, dep-audit, semgrep, OWASP patterns, prompt-injection review).
1 · bundle
lucassantana-dev
Ticket
Assemble a Jira/Linear/GitHub-Issue body from recent commits, diff, and branch context
1 · bundle
lucassantana-dev
Verify
Run full quality gate suite before committing or creating a PR
1 · bundle
lucassantana-dev
Agent Teams
Decompose a task into parallel workstreams, assign agent ownership, run integration at dependency boundaries, and synthesize results.
1 · bundle
lucassantana-dev
Code Review
Code review is time-consuming and inconsistent. Reviewers miss security issues, overlook edge cases, or focus on style over substance. Meanwhile, AI agents catch these mechanical issues instantly but can't judge business logic correctness, UX decisions, or architectural fit.
1 · bundle
lucassantana-dev
Release Cut
Composite skill — promote the long-lived `release` branch to `main`, cut a single version that batches every PR accumulated since the last tag, then clean up. Chains pr-merge-readiness (on release→main PR) → version-bump (semver from commits) → changelog-update (promote [Unreleased] → versioned) → ship (tag + GitHub release) → stale-branch cleanup → optional ship-it for deploy. Use this INSTEAD of releasing every small fix individually. Many small commits become one well-scoped release.
1 · bundle
lucassantana-dev
CI Watch
Inspect current CI state, identify the first real blocker, separate required failures from noise, and monitor until checks settle. Use when checks are failing, flaky, or blocking a merge.
1 · bundle
lucassantana-dev
Fallback
Graceful degradation when primary approach fails. Try alternates in priority order; record which path succeeded for future routing.
1 · bundle
lucassantana-dev
Optimize
Optimize context usage for the session by reducing bloat, improving token efficiency, and focusing on relevant areas. Use when context is growing large, responses are slow, or switching between unrelated tasks. Covers context analysis, compacting, targeted pruning, MCP-first strategies, and focused scoping by area.
1 · bundle
lucassantana-dev
UI Audit
UI/UX design system reference, pattern library, and focused review guidance for web and mobile applications. Use for targeted design research, pattern selection, UX audits, accessibility guidance, palette and typography selection, layout heuristics, and component pattern research. Covers 50+ styles, 97 color palettes, 57 font pairings, Web Interface Guidelines compliance, and concrete visual/usability improvements for modern SaaS and product interfaces.
1 · bundle
lucassantana-dev
Handoff Diet
Meta-skill codifying the no-wakeup-polling pattern. Describes the ScheduleWakeup anti-pattern, the fix (--auto merge + detached watcher), and when to still use wakeups. Reduces handoff spam by 80%.
1 · bundle
lucassantana-dev
Mac Optimize
Diagnose and fix macOS resource pressure for Claude Code workflows. Use when load avg is high, swap is saturated, CC feels slow, or before spinning up parallel agents/worktrees. Covers CPU top-talkers, swap pressure, zombie claude processes, Node heap tuning, Spotlight/background-agent pruning, and purge. Apple Silicon aware.
1 · bundle
lucassantana-dev
RAG Drift
Detect and fix stale chunks (files that changed or were deleted since last indexing)
1 · bundle
lucassantana-dev
Self Heal
Autonomous error recovery — detect failures, diagnose root cause, apply fixes, and resume without stopping
1 · bundle
lucassantana-dev
Agent Gotchas
AI coding agents fail in consistent, predictable ways. They fabricate npm packages that don't exist. They catch errors and continue silently. They add features you never asked for. They lose context mid-session and forget what they were doing.
1 · bundle
lucassantana-dev
Audit Deep
Composite skill — full project health check across testing, config, hooks, performance, security, MCP, and plugins. Runs the audit skills in parallel and reconciles into one severity-ranked report with prioritized remediation plan. Use weekly per active project, before major releases, or as part of quarterly tech-debt review.
1 · bundle
lucassantana-dev
Checkpoint
Git-level WIP safety net. Stashes uncommitted work, tags, and pushes to remote
1 · bundle
lucassantana-dev
Debug Deep
Composite skill — full debugging workflow from "this is broken" to root cause and fix. Chains systematic-debugging (root-cause hypotheses) → tracer agent (evidence walk) → sentry (production correlation if applicable) → ci-watch (regression check) → incident-response (if production-impacting). Use when a bug needs deep investigation, not just a quick fix.
1 · bundle
lucassantana-dev
Ship Check
Verify work before committing, pushing, or requesting review
1 · bundle
lucassantana-dev
Unstick Pr
Recover a PR whose head SHA disagrees with its branch ref (webhook desync). Force-push and close+reopen rarely fix it — recreate the PR.
1 · bundle
lucassantana-dev
Branch Hygiene
Composite skill — one-pass cleanup of stale local branches, dead worktrees, merged branches, and abandoned remote PR branches. Chains `git fetch --prune` → `clean_gone` (kill [gone] branches) → worktree prune + offer-to-remove dead worktrees → list-and-delete branches merged to main and release → delete remote PR branches whose PRs merged >7 days ago. Use instead of running `clean_gone` alone — that only catches half the rot. Daily-friction composite; fires on "clean up branches", "branch hygiene", "stale worktrees", and on session start when local branch count > 30.
1 · bundle
lucassantana-dev
Multi Agent
Orchestrate teams of agents — DAG execution, routing, state sharing, failure recovery. Use when coordinating parallel agents in task pipelines with dependencies or distributing work by capability.
1 · bundle
lucassantana-dev
Orchestrate
Coordinate multiple subagents/worktrees for parallel workstreams. Decomposes larger tasks into independent sub-tasks, dispatches each to a dedicated agent.
1 · bundle
lucassantana-dev
RAG Inspect
Examine what's actually stored in the index for specific items
1 · bundle