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