Evaluate routine and class design quality using Code Complete checklists (43 items). Use when designing routines or classes, reviewing class interfaces, choosing between inheritance and containment, or evaluating routine cohesion. Also trigger when tempted to use inheritance as a quick fix under deadline pressure, or when rationalizing 'but it works' for code with deep inheritance or many parameters. Produce severity-tagged reviews (VIOLATION/WARNING/PASS) in CHECKER mode or design decisions in APPLIER mode. Symptoms: vague routine names, >7 parameters, deep inheritance, mixed abstraction levels.
Three checks catch design problems that can't be patched post-hoc (they require architectural change, not a fix):
| Check | What | |---|---| | LSP test | Is "A is a B" literally true? If not, the inheritance is wrong | | Containment default | If LSP feels like purity theater, use containment — it's fixable; inheritance isn't | | Parameter count | Over 7 parameters predicts interface errors — the interface is wrong |
A passing test suite does not clear these: code can pass all tests on day 1 and still carry VIOLATION-level design debt that surfaces during later modification.
Shared thresholds (parameters 7±2, inheritance depth, routine length, cohesion spectrum): Read(${CLAUDE_PLUGIN_ROOT}/references/cc-foundations.md).
Activity) — but "framework examples use inheritance" is not a mandate.Execute the design checklists against routines and classes: Read(${CLAUDE_SKILL_DIR}/checklists.md). Output one row per item: | Item | Status | Evidence | Location |.
| Severity | Criteria | |---|---| | VIOLATION | Fails a checklist item (e.g. 10+ params); breaks LSP/encapsulation (empty override, protected base data) | | WARNING | Near a limit needing justification (8–9 params, 3-level inheritance); a subjective abstraction concern | | PASS | Meets or exceeds the requirement |
Produce class interface designs, inheritance/containment decisions, routine signatures, and cohesion classifications.
| Count | Status | Action | |---|---|---| | 1–5 | PASS | None | | 6–7 | PASS | Minor concern; document if unusual | | 8–9 | WARNING | Justify in review or redesign | | 10+ | VIOLATION | Redesign — parameter object or split responsibilities |
Count all parameters including defaulted ones; variadic (*args/...) counts as 1. Ordering convention (order implies data flow): input-only first, input-output second, output-only third.
If A inherits from B, every place that uses B can substitute A without breaking. Inheritance requires both:
If either fails, use containment.
FINAL CHECK (after deciding INHERIT, before committing): depth < 3 (definitely < 6)? No empty overrides needed? All base data private (not protected)? If any answer is NO → contain instead.
A routine performs one and only one operation. If you need "and" or "then" to name it, it has multiple operations.
ValidateUserInput(), CalculateTotalPrice(), SendWelcomeEmail().ValidateAndSaveUser(), ReadFileThenParseJSON()."One operation" is at the routine's declared abstraction level: CreateUser() is one operation even though it validates, hashes, and inserts — those are at a lower level.
| Type | Definition | Verdict | |---|---|---| | Functional | One and only one operation | ACCEPT | | Sequential | Operations share data step-to-step in required order | ACCEPT w/caution | | Communicational | Operations use the same data but are otherwise unrelated | ACCEPT w/caution | | Temporal | Combined because done at the same time (startup/shutdown) | ACCEPT if it orchestrates calls; FIX if it does the work directly | | Procedural | Ordered by external requirement (UI flow), not logic | REJECT | | Logical | A control flag selects one of several unrelated operations | REJECT | | Coincidental | No discernible relationship | REDESIGN |
"ACCEPT w/caution" = document why this type is acceptable here, review whether functional cohesion is reachable, and add a TODO if it should improve. Caution is permission with accountability, not permission to ignore.
Detecting orchestration (temporal OK): verbs like orchestrates/coordinates/delegates/dispatches/routes suggest orchestration (calls other routines). Verbs like handles/processes/performs/calculates suggest direct work — check the cohesion type and extract the direct work into named routines.
| Type | Steps | |---|---| | Sequential | Split per operation; have the dependent routine call what it depends on | | Communicational | Split into individual routines; reinitialize data near creation; call both from a higher level | | Temporal | Make the routine an organizer that calls doers; name at the right abstraction level | | Logical | One routine per distinct operation; move shared code lower; package into a class |
this are fine; class cohesion = "constructs one type of object".await.This is maintenance data, not shipping data: the gap appears during modification, not first commit.
| After | Next |
|---|---|
| Design verified | Skill(code-foundations:cc-defensive-programming) |
npx skills add ryanthedev/cc-routine-and-class-design下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer