All authors
v1truv1us avatar

Claude Skills by v1truv1us

github.com/v1truv1us
115 skillsA× 1151 installs17 views
Pr Review CanvasA

Generate an interactive PR review walkthrough as an HTML page. Fetches PR data via gh API, categorizes files into core vs mechanical changes, adds reviewer annotations, and renders diffs with moved-code detection. Use when the user pastes a GitHub PR URL and asks for a review, walkthrough, or summary, or says \\\"review this PR\\\".

toolspythongo
0
6
Prompt EngineeringA

Comprehensive prompt engineering for coding agents covering structured instruction design, few-shot prompting, chain-of-thought, decomposition, agent workflow patterns, and reliability techniques for multi-step pipelines.

developmenttypescriptrust
0
6
Prompt RefinementA

Transform prompts into structured TCRO format with phase-specific clarification. Automatically invoked by /ai-eng/research, /ai-eng/plan, /ai-eng/work, and /ai-eng/specify commands. Use when refining vague prompts, structuring requirements, or enhancing user input quality before execution.

testing-securityrustgo
0
6
ArchitectA

Sketch types, signatures, and module structure before code, then stay in the loop while implementation fills in. Use for /architect, 'architect this', 'design this', or non-trivial work where jumping to code would lock in the wrong shape.

data-aigit
0
6
ArenaA

Spawn N parallel candidates at the same task, pick a base, graft the strongest parts of the losers into it. Use for /arena, 'arena this', 'throw it in the arena', or when one attempt at a non-trivial artifact would lock in the wrong shape.

data-aigogit
0
6
Automate MeA

Use for \"automate me\", \"create/update/refresh my -mode skill\", \"turn/capture my preferences or working style into a skill\", or wanting agents to follow how the user works. Drafts or revises a personal -mode skill via create-skill + unslop, optionally pulling fresh evidence from recent transcripts.

data-aigorails
0
6
HowA

Use for \"how does X work\", code walkthroughs before changing something, and placement / ownership / layering questions (\"where should this live\", \"which package owns this\", \"is this the right layer\"). Explains subsystem architecture, runtime flow, onboarding mental models. Can critique architecture. Use why for motivation.

data-aigo
0
6
InterrogateA

Use for \"interrogate\", \"adversarial review\", \"multi-model review\", \"challenge this\", \"stress test this code\", \"find blind spots\", or \"tear this apart\". Four LLM reviewers challenge changes from independent angles.

data-aigogit
0
6
Poteto ModeA

poteto's agent style for concise, detailed responses, deliberate subagents, unslopped prose, simple code, and verified work. Use for poteto, /poteto-mode, or requests to work in this style.

developmentrustgo
0
6
Principle Boundary DisciplineA

Apply when wiring validation, error handling, or framework adapters. Concentrate guards at system boundaries (CLI, config, network, external APIs); trust internal types and keep business logic in pure functions.

developmentrustshell
0
6
Principle Encode Lessons In StructureA

Apply when you catch yourself writing the same instruction a second time, or notice a recurring correction. Encode the rule as a lint, metadata flag, runtime check, or script instead of more text.

tools
0
6
Principle Exhaust The Design SpaceA

Apply when facing a novel UI interaction or architectural decision with no precedent in the codebase. Build 2-3 competing prototypes and compare side by side before committing.

development
0
6
Principle Experience FirstA

Apply when product, UX, or feature-scope tradeoffs come up. Choose user delight over implementation convenience; ship fewer polished features over more rough ones.

developmentgo
0
6
Principle Fix Root CausesA

Apply when debugging. Trace each symptom to its root cause and fix it there; reproduce first, ask why until you reach it, resist nil-check guards that silence crashes.

developmentdebugging
0
6
Principle Foundational ThinkingA

Apply before writing logic: choosing core types and data structures, sequencing scaffold-vs-feature work, asking what concurrent actors share. Get the data structures right so downstream code becomes obvious.

development
0
6
Principle Guard The Context WindowA

Apply when context is filling up: large outputs, long files, repeated reads, fan-out planning. Route bulk to subagents; keep summaries in the main thread, not raw payloads.

development
0
6
Principle Laziness ProtocolA

Apply when refactoring, evaluating diff size, or tempted to add abstractions, layers, or signal threading. Bias toward deletion and the smallest change that solves the problem.

developmentrefactoring
0
6
Principle Make Operations IdempotentA

Apply when designing commands, lifecycle steps, or processing loops that run amid crashes, restarts, and retries. Converge to the same end state regardless of partial prior runs.

developmentdebugging
0
6
Principle Migrate Callers Then Delete Legacy ApisA

Apply when introducing a new internal API while old callers still exist. Migrate callers and delete the old API in the same wave instead of preserving compatibility layers.

developmentapi
0
6
Principle Minimize Reader LoadA

Apply when reviewing or shaping code that's hard to trace. Count layers between question and answer, and hidden state in the reader's head; collapse one-caller wrappers and shrink mutable scope.

developmentapi
0
6
Principle Never Block On The HumanA

Apply when tempted to ask 'should I do X?' on reversible work. Proceed, present the result, let the human course-correct after the fact; reserve confirmation for irreversible actions.

tools
0
6
Principle Outcome Oriented ExecutionA

Apply during planned rewrites and migrations with explicit phase boundaries. Converge on the target architecture; don't preserve smooth intermediate states with throwaway compatibility code.

databasesrails
0
6
Principle Prove It WorksA

Apply after completing a task, before declaring done. Verify against the real artifact (run the feature, read the actual value, inspect the diff), not a proxy, self-report, or 'it compiles.'

businessrustgit
0
6
Principle Redesign From First PrinciplesA

Apply when integrating a new requirement into an existing design. Redesign as if the requirement had been a foundational assumption from day one, instead of bolting it on.

documentation
0
6
Principle Separate Before Serializing Shared StateA

Apply when concurrent actors might write to the same file, branch, key, or state object. Eliminate the sharing first; serialize structurally only when one shared writer is a real invariant.

developmentgoapi
0
6
Principle Subtract Before You AddA

Apply when sequencing an addition, refactor, or rewrite. Remove dead weight, redundant validators, and stub references first, then build on the simpler base.

tools
0
6
Principle Type System DisciplineA

Apply when designing types, reviewing a function signature, or writing code in any statically-typed language. Make illegal states unrepresentable, brand semantic primitives, parse external data at boundaries, refuse to lie to the compiler, exhaust variants, derive from authoritative schemas.

developmenttypescriptrust
0
6
ReflectA

Spawn three parallel review subagents over the active transcript, surface learnings, and route each to a concrete edit on an existing skill. Use when the user says reflect.

toolsbash
0
6
TddA

Use only when the user explicitly asks for TDD, a failing test, or a regression test, OR when the bug has an obvious cheap local test target. Skip when the test path is unclear, expensive, integration-heavy, or not requested.

toolsgorails
0
6
Typescript Best PracticesA

TypeScript best practices. Use when reading or editing any .ts or .tsx file.

developmenttypescriptrust
0
6
UnslopA

Cut AI tells from any writing. Must always apply.

developmenttypescriptgo
0
6
WhyA

Use for 'why does X work this way', 'why we picked Y', design rationale, regressions, postmortems, or data-backed thresholds. Discovers available MCPs and queries each evidence category (source control, issue tracker, long-form docs, real-time chat, infrastructure observability, error tracking, product analytics warehouse) in parallel, then returns a cited read on decisions and tradeoffs. Use how for runtime behavior.

researchrustgo
0
6
RepurposeA

Adapt existing content into new formats for different channels. Use for \"repurpose this\", \"turn this into\", \"adapt for\", or /repurpose.

content-mediago
0
6
Research DeepA

Multi-source deep research with confidence-rated synthesis. Use for \"research deeply\", \"deep dive on\", \"comprehensive research\", or /research-deep.

research
0
6
Review And ShipA

Review the current branch for bugs, intent fit, and test coverage; run or write tests; commit focused work; open or update a PR.

toolsbashrails
0
6
Run Learning RetrospectiveA

Evaluate learning progress, identify blockers, and adjust the learning plan

tools
0
6
Run Smoke TestsA

Run Playwright smoke tests, debug failures, and verify fixes

toolsbashrails
0
6
Security And HardeningA

OWASP Top 10 prevention, auth patterns, secrets management, dependency auditing, three-tier boundary system. Use when handling user input, auth, data storage, or external integrations.

testing-securityrustgit
0
6
Shipping And LaunchA

Review changes, open PRs, run pre-launch checks, staged rollouts, and rollback. Use when preparing to ship to production or closing out a branch.

devopsgobash
0
6
Source Driven DevelopmentA

Ground every framework decision in official documentation. Use when you want authoritative, source-cited code for any framework or library.

documentationdebuggingapi
0
6
Spec Driven DevelopmentA

Write a structured specification before writing code. Use when starting a new project, feature, or significant change. Defines objectives, commands, structure, code style, testing strategy, and boundaries.

developmentgotesting
0
6
Test Driven DevelopmentA

Red-Green-Refactor workflow. Write tests before implementation, maintain 80%+ coverage. Use when implementing logic, fixing bugs, or changing behavior.

testing-securitytestingdebugging
0
6
Text CleanupA

Comprehensive patterns and techniques for removing AI-generated verbosity and slop

documentationtypescriptrust
0
6
Thermo Nuclear Architecture ReviewA

Run an extremely strict architecture and system design review for coupling, boundary violations, dependency direction, layering, and structural decay. Use for a thermo-nuclear architecture review, thermonuclear system design audit, or especially harsh architecture review.

developmentgoapi
0
6
Thermo Nuclear Code Quality ReviewA

Run an extremely strict maintainability review for abstraction quality, giant files, and spaghetti-condition growth. Use for a thermo-nuclear code quality review, thermonuclear review, deep code quality audit, or especially harsh maintainability review.

developmentgoapi
0
6
Thermo Nuclear Performance ReviewA

Run an extremely strict performance review for runtime efficiency, memory usage, bundle size, database query patterns, and scalability limits. Use for a thermo-nuclear performance review, thermonuclear performance audit, or especially harsh performance review.

developmentgoreact
0
6
Thermo Nuclear Security ReviewA

Run an extremely strict security audit for auth flaws, injection vectors, secrets exposure, broken access control, and boundary validation failures. Use for a thermo-nuclear security review, thermonuclear security audit, or especially harsh security review.

testing-securityrustgo
0
6
Using Agent SkillsA

Discovery and invocation of all skills, commands, and agents. Decision tree for task-to-skill mapping. Core operating behaviors for agents. Use when unsure which skill or agent to use.

developmenttestingdebugging
0
6
Verification LoopA

Continuous verification after every change, plus claim-based proof when evidence is required. Use when implementing, fixing bugs, refactoring, or when asked to verify a specific claim.

developmentjavascripttypescript
0
6
Verify ThisA

Verify a claim with fresh local evidence: restate it falsifiably, capture baseline and treatment, compare artifacts, and return VERIFIED, NOT VERIFIED, or INCONCLUSIVE.

toolsapiperformance
0
6