Fork, clone to ~/.clank, run installer, edit CLAUDE.md
Idioma del texto original: inglés
Menú
SkillsMP ha recopilado 37 skills de obra/clank. Abre una skill para revisar su origen y sus detalles.
Mostrando 37 de 37 skills recopiladas.
Fork, clone to ~/.clank, run installer, edit CLAUDE.md
Idioma del texto original: inglés
RED-GREEN-REFACTOR for process documentation - baseline without skill, write addressing failures, iterate closing loopholes
Idioma del texto original: inglés
Skills wiki intro - mandatory workflows, search tool, brainstorming triggers
Idioma del texto original: inglés
Interactive idea refinement using Socratic method to develop fully-formed designs
Idioma del texto original: inglés
Execute detailed plans in batches with review checkpoints
Idioma del texto original: inglés
Execute implementation plan by dispatching fresh subagent for each task, with code review between tasks
Idioma del texto original: inglés
Complete feature development with structured options for merge, PR, or cleanup
Idioma del texto original: inglés
Create isolated git worktrees with smart directory selection and safety verification
Idioma del texto original: inglés
Receive and act on code review feedback with technical rigor, not performative agreement or blind implementation
Idioma del texto original: inglés
Search previous Claude Code conversations for facts, patterns, decisions, and context using semantic or text search
Idioma del texto original: inglés
Create detailed implementation plans with bite-sized tasks for engineers with zero codebase context
Idioma del texto original: inglés
Four-phase debugging framework that ensures root cause investigation before attempting fixes. Never jump to solutions.
Idioma del texto original: inglés
Run verification commands and confirm output before claiming success
Idioma del texto original: inglés
TDD for process documentation - test with subagents before writing, iterate until bulletproof
Idioma del texto original: inglés
Write the test first, watch it fail, write minimal code to pass
Idioma del texto original: inglés
Never test mock behavior. Never add test-only methods to production classes. Understand dependencies before mocking.
Idioma del texto original: inglés
Dispatch code-reviewer subagent to review implementation against plan or requirements before proceeding
Idioma del texto original: inglés
Hide implementation details behind interfaces - work at domain level (what), not implementation level (how)
Idioma del texto original: inglés
Class interfaces present one cohesive abstraction - don't mix domain logic with serialization, persistence, or unrelated concerns
Idioma del texto original: inglés
Comment WHY code exists and non-obvious decisions, not WHAT code does (mechanics)
Idioma del texto original: inglés
Try 2-3 different approaches before implementing - don't settle for first design you think of
Idioma del texto original: inglés
Each routine does one thing and does it well - extract when routines have multiple responsibilities
Idioma del texto original: inglés
Declare variables in smallest possible scope, initialize close to first use, minimize span and live time
Idioma del texto original: inglés
Name code by what it does in the domain, not how it's implemented or its history
Idioma del texto original: inglés
Choose names that fully and accurately describe what the variable represents
Idioma del texto original: inglés
Refactor with tests first, one change at a time, never mix refactoring with bug fixes or new features
Idioma del texto original: inglés
Flatten nested conditionals with early returns or table-driven methods - keep nesting depth under 3 levels
Idioma del texto original: inglés
Use each variable for exactly one purpose - no hybrid coupling or hidden meanings
Idioma del texto original: inglés
Check all external inputs for validity - garbage in, nothing out, never garbage out
Idioma del texto original: inglés
Write comments explaining WHAT and WHY, never temporal context or history
Idioma del texto original: inglés
Maintain skills wiki health - check links, naming, cross-references, and coverage
Idioma del texto original: inglés
Managing complexity is software's primary technical imperative - all other goals are secondary
Idioma del texto original: inglés
Design in pseudocode first, iterate approaches, then translate to code
Idioma del texto original: inglés
Use multiple Claude agents to investigate and fix independent problems concurrently
Idioma del texto original: inglés
Validate at every layer data passes through to make bugs impossible
Idioma del texto original: inglés
Systematically trace bugs backward through call stack to find original trigger
Idioma del texto original: inglés
Replace arbitrary timeouts with condition polling for reliable async tests
Idioma del texto original: inglés