From skillz
Use when an AI coding agent is asked to add, modify, refactor, or fix code in an existing codebase. Enforces a discovery-first workflow — search the repo before writing, analyze impact in plain language, gate risky changes behind explicit approval, then execute in small commits. Prevents duplicate implementations and silent breaking changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skillz:agent-change-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Give AI coding agents a disciplined, repeatable workflow for changing existing code. The default failure mode of agents is to jump straight to writing code, creating duplicate or parallel implementations and silently changing sensitive logic (auth, billing, schema). This skill forces search-before-code, plain-language impact analysis, and an approval gate for high-risk changes.
Give AI coding agents a disciplined, repeatable workflow for changing existing code. The default failure mode of agents is to jump straight to writing code, creating duplicate or parallel implementations and silently changing sensitive logic (auth, billing, schema). This skill forces search-before-code, plain-language impact analysis, and an approval gate for high-risk changes.
Use this whenever the agent is asked to add, modify, refactor, or fix anything in a codebase that already exists. It applies to feature work, bug fixes, and refactors alike. Do not use it for greenfield scaffolding where there is nothing to discover yet, or for pure question-answering.
rg / grep -R) across routes, services, components, templates, UI strings, config keys, env var names, and data models. If the capability already exists, extend it — never create a parallel implementation.Good: "I searched routes/, services/, and templates for 'export'. An export service already exists in services/export.py handling CSV. Your request adds PDF export, so I'll extend that service rather than create a new one. Files touched: services/export.py, one route, one template button. No auth or billing impact — proceeding."
Bad: Immediately creating services/pdf_export.py without checking that services/export.py already exists, producing two parallel export paths.
npx claudepluginhub tanveerriaz/skillz --plugin skillzProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.