.local/skills/code_review/SKILL.md
Spawn a code review (architect) subagent for deep analysis, planning, and debugging. The architect specializes in strategic guidance rather than implementation. Architect should be called after building major features. Relies on `delegation` skill.
npx skillsauth add akhil151/dtpapp code_reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Spawn an code review (a.k.a architect) subagent for analysis and planning. The architect specializes in analysis and strategic guidance rather than implementation.
Use this skill when:
Spawn an architect subagent for analysis and planning.
Parameters:
task (str, required): The analytical task or question for the architectrelevantFiles (list[str], required): Full file paths to analyzeresponsibility (str, default "evaluate_task"): Focus area: "debug", "plan", or "evaluate_task"includeGitDiff (bool, default False): Include current unstaged git diffrelevantGitCommits (str, optional): Git commit range to analyze (e.g., "HEAD~3..HEAD")Returns: Dict with analysis results
{
"success": true,
"message": "Analysis summary",
"subagentAlias": "architect_1",
"result": "Full analysis output..."
}
Responsibilities:
Example:
// Plan a new feature
const result = await architect({
task: "Create a plan for implementing rate limiting on API endpoints.",
relevantFiles: ["src/middleware/index.ts", "src/routes/api.ts"],
responsibility: "plan"
});
console.log(result.result);
// Debug an issue
const result2 = await architect({
task: "The UserAuthService.validateSession() returns false for valid tokens.",
relevantFiles: ["src/services/UserAuthService.ts", "src/utils/jwt.ts"],
responsibility: "debug",
includeGitDiff: true
});
relevantFilesincludeGitDiff: When debugging regressions, include the diff to help the architect identify recent changesrelevantGitCommits: When you need the architect to understand recent history (e.g., "HEAD~3..HEAD")tools
Manage application workflows including configuration, restart, and removal.
development
Search the web and fetch content from URLs. Use for real-time information, API documentation, and current events.
testing
Run automated UI tests against your application using a Playwright-based testing subagent. Use after implementing features to verify they work correctly.
data-ai
Create reusable skills that extend agent capabilities. Use when the user asks to create a skill, teach you something reusable, or save instructions for future tasks.