Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

clank

يحتوي clank على 37 من skills المجمعة من obra، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
37
Stars
40
محدث
2025-10-09
Forks
27
التغطية المهنية
7 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

installing-skills-system
مطوّرو البرمجيات

Fork, clone to ~/.clank, run installer, edit CLAUDE.md

2025-10-09
testing-skills-with-subagents
محللو ضمان جودة البرمجيات والمختبرون

RED-GREEN-REFACTOR for process documentation - baseline without skill, write addressing failures, iterate closing loopholes

2025-10-09
getting-started-with-skills
الكتّاب التقنيونمحللو أنظمة الحاسوب

Skills wiki intro - mandatory workflows, search tool, brainstorming triggers

2025-10-09
brainstorming-ideas-into-designs
مطوّرو البرمجيات

Interactive idea refinement using Socratic method to develop fully-formed designs

2025-10-09
executing-plans
المديرون العامون ومديرو العمليات

Execute detailed plans in batches with review checkpoints

2025-10-09
subagent-driven-development
مطوّرو البرمجيات

Execute implementation plan by dispatching fresh subagent for each task, with code review between tasks

2025-10-09
finishing-a-development-branch
مطوّرو البرمجيات

Complete feature development with structured options for merge, PR, or cleanup

2025-10-09
using-git-worktrees
مطوّرو البرمجيات

Create isolated git worktrees with smart directory selection and safety verification

2025-10-09
code-review-reception
مطوّرو البرمجيات

Receive and act on code review feedback with technical rigor, not performative agreement or blind implementation

2025-10-08
remembering-conversations
محللو أنظمة الحاسوب

Search previous Claude Code conversations for facts, patterns, decisions, and context using semantic or text search

2025-10-08
writing-plans
محللو أنظمة الحاسوب

Create detailed implementation plans with bite-sized tasks for engineers with zero codebase context

2025-10-08
systematic-debugging
مطوّرو البرمجيات

Four-phase debugging framework that ensures root cause investigation before attempting fixes. Never jump to solutions.

2025-10-08
verification-before-completion
محللو ضمان جودة البرمجيات والمختبرون

Run verification commands and confirm output before claiming success

2025-10-08
creating-skills
محللو ضمان جودة البرمجيات والمختبرون

TDD for process documentation - test with subagents before writing, iterate until bulletproof

2025-10-08
test-driven-development-tdd
محللو ضمان جودة البرمجيات والمختبرون

Write the test first, watch it fail, write minimal code to pass

2025-10-08
testing-anti-patterns
محللو ضمان جودة البرمجيات والمختبرون

Never test mock behavior. Never add test-only methods to production classes. Understand dependencies before mocking.

2025-10-08
requesting-code-review
مطوّرو البرمجيات

Dispatch code-reviewer subagent to review implementation against plan or requirements before proceeding

2025-10-08
encapsulating-complexity
مطوّرو البرمجيات

Hide implementation details behind interfaces - work at domain level (what), not implementation level (how)

2025-10-07
maintaining-consistent-abstractions
مطوّرو البرمجيات

Class interfaces present one cohesive abstraction - don't mix domain logic with serialization, persistence, or unrelated concerns

2025-10-07
commenting-intent
مطوّرو البرمجيات

Comment WHY code exists and non-obvious decisions, not WHAT code does (mechanics)

2025-10-07
exploring-alternatives
مطوّرو البرمجيات

Try 2-3 different approaches before implementing - don't settle for first design you think of

2025-10-07
keeping-routines-focused
مطوّرو البرمجيات

Each routine does one thing and does it well - extract when routines have multiple responsibilities

2025-10-07
localizing-variables
مطوّرو البرمجياتمبرمجو الحاسوب

Declare variables in smallest possible scope, initialize close to first use, minimize span and live time

2025-10-07
domain-focused-naming
مطوّرو البرمجيات

Name code by what it does in the domain, not how it's implemented or its history

2025-10-07
naming-variables
مطوّرو البرمجيات

Choose names that fully and accurately describe what the variable represents

2025-10-07
refactoring-safely
مطوّرو البرمجيات

Refactor with tests first, one change at a time, never mix refactoring with bug fixes or new features

2025-10-07
simplifying-control-flow
مطوّرو البرمجيات

Flatten nested conditionals with early returns or table-driven methods - keep nesting depth under 3 levels

2025-10-07
single-purpose-variables
مطوّرو البرمجياتمبرمجو الحاسوب

Use each variable for exactly one purpose - no hybrid coupling or hidden meanings

2025-10-07
validating-inputs
مطوّرو البرمجيات

Check all external inputs for validity - garbage in, nothing out, never garbage out

2025-10-07
writing-evergreen-comments
مطوّرو البرمجياتمبرمجو الحاسوب

Write comments explaining WHAT and WHY, never temporal context or history

2025-10-07
gardening-skills-wiki
مطوّرو البرمجياتمديرو الشبكات وأنظمة الحاسوب

Maintain skills wiki health - check links, naming, cross-references, and coverage

2025-10-07
reducing-complexity
مطوّرو البرمجيات

Managing complexity is software's primary technical imperative - all other goals are secondary

2025-10-06
designing-before-coding
مطوّرو البرمجيات

Design in pseudocode first, iterate approaches, then translate to code

2025-10-06
dispatching-parallel-agents
محللو أنظمة الحاسوب

Use multiple Claude agents to investigate and fix independent problems concurrently

2025-10-06
defense-in-depth-validation
مطوّرو البرمجيات

Validate at every layer data passes through to make bugs impossible

2025-10-06
root-cause-tracing
مطوّرو البرمجيات

Systematically trace bugs backward through call stack to find original trigger

2025-10-06
condition-based-waiting
محللو ضمان جودة البرمجيات والمختبرون

Replace arbitrary timeouts with condition polling for reliable async tests

2025-10-06