source dump of claude code
at main 69 lines 4.5 kB view raw
1import { AGENT_TOOL_NAME } from '../../tools/AgentTool/constants.js' 2import { registerBundledSkill } from '../bundledSkills.js' 3 4const SIMPLIFY_PROMPT = `# Simplify: Code Review and Cleanup 5 6Review all changed files for reuse, quality, and efficiency. Fix any issues found. 7 8## Phase 1: Identify Changes 9 10Run \`git diff\` (or \`git diff HEAD\` if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this conversation. 11 12## Phase 2: Launch Three Review Agents in Parallel 13 14Use the ${AGENT_TOOL_NAME} tool to launch all three agents concurrently in a single message. Pass each agent the full diff so it has the complete context. 15 16### Agent 1: Code Reuse Review 17 18For each change: 19 201. **Search for existing utilities and helpers** that could replace newly written code. Look for similar patterns elsewhere in the codebase — common locations are utility directories, shared modules, and files adjacent to the changed ones. 212. **Flag any new function that duplicates existing functionality.** Suggest the existing function to use instead. 223. **Flag any inline logic that could use an existing utility** — hand-rolled string manipulation, manual path handling, custom environment checks, ad-hoc type guards, and similar patterns are common candidates. 23 24### Agent 2: Code Quality Review 25 26Review the same changes for hacky patterns: 27 281. **Redundant state**: state that duplicates existing state, cached values that could be derived, observers/effects that could be direct calls 292. **Parameter sprawl**: adding new parameters to a function instead of generalizing or restructuring existing ones 303. **Copy-paste with slight variation**: near-duplicate code blocks that should be unified with a shared abstraction 314. **Leaky abstractions**: exposing internal details that should be encapsulated, or breaking existing abstraction boundaries 325. **Stringly-typed code**: using raw strings where constants, enums (string unions), or branded types already exist in the codebase 336. **Unnecessary JSX nesting**: wrapper Boxes/elements that add no layout value — check if inner component props (flexShrink, alignItems, etc.) already provide the needed behavior 347. **Unnecessary comments**: comments explaining WHAT the code does (well-named identifiers already do that), narrating the change, or referencing the task/caller — delete; keep only non-obvious WHY (hidden constraints, subtle invariants, workarounds) 35 36### Agent 3: Efficiency Review 37 38Review the same changes for efficiency: 39 401. **Unnecessary work**: redundant computations, repeated file reads, duplicate network/API calls, N+1 patterns 412. **Missed concurrency**: independent operations run sequentially when they could run in parallel 423. **Hot-path bloat**: new blocking work added to startup or per-request/per-render hot paths 434. **Recurring no-op updates**: state/store updates inside polling loops, intervals, or event handlers that fire unconditionally — add a change-detection guard so downstream consumers aren't notified when nothing changed. Also: if a wrapper function takes an updater/reducer callback, verify it honors same-reference returns (or whatever the "no change" signal is) — otherwise callers' early-return no-ops are silently defeated 445. **Unnecessary existence checks**: pre-checking file/resource existence before operating (TOCTOU anti-pattern) — operate directly and handle the error 456. **Memory**: unbounded data structures, missing cleanup, event listener leaks 467. **Overly broad operations**: reading entire files when only a portion is needed, loading all items when filtering for one 47 48## Phase 3: Fix Issues 49 50Wait for all three agents to complete. Aggregate their findings and fix each issue directly. If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it. 51 52When done, briefly summarize what was fixed (or confirm the code was already clean). 53` 54 55export function registerSimplifySkill(): void { 56 registerBundledSkill({ 57 name: 'simplify', 58 description: 59 'Review changed code for reuse, quality, and efficiency, then fix any issues found.', 60 userInvocable: true, 61 async getPromptForCommand(args) { 62 let prompt = SIMPLIFY_PROMPT 63 if (args) { 64 prompt += `\n\n## Additional Focus\n\n${args}` 65 } 66 return [{ type: 'text', text: prompt }] 67 }, 68 }) 69}