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