agent-comms
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
Identify and apply existing codebase patterns for consistency. TRIGGER when: writing new code that should match conventions, or reviewing code for pattern drift. SKIP: language-specific patterns (use python-patterns or react-patterns); security review (use
$ npx -y skills add komluk/scaffolding --skill pattern-recognition --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pattern-recognitionContext preview
The summary Claude sees to decide when to auto-load this skill.
Identify and apply existing codebase patterns for consistency. TRIGGER when: writing new code that should match conventions, or reviewing code for pattern drift. SKIP: language-specific patterns (use python-patterns or react-patterns); security review (use
name: pattern-recognition description: "Identify and apply existing codebase patterns for consistency. TRIGGER when: writing new code that should match conventions, or reviewing code for pattern drift. SKIP: language-specific patterns (use python-patterns or react-patterns); security review (use security-review-checklists)."
Standards for identifying and applying existing codebase patterns to maintain consistency.
---
| Action | Purpose | |--------|---------| | Find similar modules/components | Match structure and naming | | Find similar functions/hooks | Match return types and patterns | | Find similar services | Match error handling and API patterns | | Check shared-types location | Match how the project centralizes types |
| Element | What to Look For | |---------|------------------| | Module/component structure | Imports, signature, body order | | State management | Local-vs-shared state decisions | | Error handling | Try/catch style, error messages | | Naming conventions | Files, functions, types | | File organization | Directory structure |
| Rule | Description | |------|-------------| | Match existing style | New code follows established patterns | | Document deviations | If pattern changes, document why | | Refactor if needed | Update old code to match new pattern |
---
> Illustrative — the naming, component, hook, service, and type conventions below > are one team's React/TypeScript catalog shown as a concrete example. The > reusable skill is the *process* above (scan → extract → apply existing > conventions). Substitute your stack's actual conventions; the value of this > skill is matching whatever your codebase already does, not adopting these > specific rules.
| Type | Convention | Example | |------|------------|---------| | Component | PascalCase | `AnnotationCard.tsx` | | Hook | camelCase with use | `useVisualization.ts` | | Service | camelCase | `apiService.ts` | | Types | camelCase or index | `types/index.ts` | | Store | camelCase with Store | `projectStore.ts` | | Utility | camelCase | `formatters.ts` |
| Type | Convention | Example | |------|------------|---------| | Component | PascalCase | `AnnotationCard` | | Function | camelCase verb | `fetchProjects`, `handleClick` | | Hook | camelCase with use | `useVisualization` | | Type/Interface | PascalCase | `ProjectType`, `ButtonProps` | | Constant | UPPER_SNAKE | `API_BASE_URL`, `MAX_SIZE` | | Variable | camelCase | `isLoading`, `userName` |
---
| Section | Order | Required | |---------|-------|----------| | Imports | 1st | Yes | | Props interface | 2nd | Yes | | Component function | 3rd | Yes | | Hooks declarations | Inside, top | Yes | | Event handlers | Inside, after hooks | As needed | | Return JSX | Inside, last | Yes |
| Type | Location | Purpose | |------|----------|---------| | Page components | `pages/` | Route entry points | | Feature components | `components/[feature]/` | Feature-specific UI | | Common components | `components/common/` | Reusable across features | | Layout components | `components/layout/` | Page structure |
---
| Element | Requirement | |---------|-------------| | Name | `use` prefix + descriptive name | | Return | Object with named values | | State | `data`, `loading`, `error` pattern | | Dependencies | All external values in dependency array |
| Return Type | Use Case | |-------------|----------| | `{ data, loading, error }` | Data fetching hooks | | `{ value, setValue, reset }` | Form/input hooks | | `{ isOpen, open, close, toggle }` | Toggle hooks |
---
| Element | Requirement | |---------|-------------| | Async/await | All API calls use async/await | | Error handling | Try/catch with console.error | | Error format | `[ServiceName] Error description:` | | Return type | Promise with typed response |
| Element | Standard | |---------|----------| | Log format | `console.error('[Context] Message:', error)` | | User message | Generic, no technical details | | Rethrow | After logging for upstream handling |
---
| Rule | Description | |------|-------------| | Centralized | All shared types in `types/index.ts` | | Import style | Use `import type` for type-only imports | | Export style | Use `export type` for type exports | | No interfaces | Prefer `type` over `interface` for consistency |
| Category | Pattern | Example | |----------|---------|---------| | Entity | `[Entity]Type` | `ProjectType`, `UserType` | | Props | `[Component]Props` | `ButtonProps`, `CardProps` | | State | `[Domain]State` | `ProjectState`, `UIState` | | API Response | `[Endpoint]Response` | `ProjectsResponse` |
---
| Anti-Pattern | Problem | Solution | |--------------|---------|----------| | Props drilling | Hard to maintain | Use a shared store or context | | Large components | Hard to test/read | Extract sub-components | | Inline styles | Inconsistent | Use your styling system's tokens | | `any` type | Loses type safety | Define proper types | | Barrel exports | Circular dependencies | Use direct imports | | Mixed conventions | Confusing | Follow established patterns |
---
The universal rule: **before writing ANY new utility, grep the codebase for an existing one.** Map your project's shared modules and reuse them instead of creating parallel helpers, exception hiera
Spec-driven multi-agent orchestration for Claude Code — pure markdown, zero backend, runs on the stock runtime. 13 agents, 36 skills, 19 commands, 15 hooks, per-phase model tiers, opt-in lifecycle hooks, optional cross-device semantic memory.
Repo: komluk/scaffolding
SendMessage recipient validation and worktreePath safety (CWE-59). TRIGGER when: validating a SendMessage `to:` recipient against the agent whitelist, or a…
3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge. TRIGGER when: reading or writing agent memory files, choosing which…
RESTful API design standards: resource naming, HTTP methods, status codes, pagination, versioning. TRIGGER when: designing new API endpoints, defining error…
Optimize Claude Code context-window usage for accuracy and cost. TRIGGER when: hitting context limits, structuring prompts for an agent, or trimming what gets…
Schema design, index strategy, migration safety, and query analysis. TRIGGER when: designing tables or indexes, writing a migration, or diagnosing a slow…