CH
changed-slice-verify
Use when validating recent code edits, checking only the touched slice, or deciding which lint, typecheck, test, and E2E commands to run before replying.
Install
mkdir -p .claude/skills/changed-slice-verify && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15180" && unzip -o skill.zip -d .claude/skills/changed-slice-verify && rm skill.zipInstalls to .claude/skills/changed-slice-verify
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when validating recent code edits, checking only the touched slice, or deciding which lint, typecheck, test, and E2E commands to run before replying.153 chars✓ has a “when” trigger
About this skill
Changed Slice Verify
When To Use
- After editing code and before replying to the user.
- When you need a smaller alternative to full-repo validation.
- When root config, hooks, skills, or package scripts changed.
Procedure
- Run
pnpm agent:validate -- --files <path1> <path2>when the touched files are known. - Use
pnpm agent:validate -- --stagedbefore commit boundaries. - If the validator emits Android or E2E recommendations, run the recommended command only when the changed slice actually touches that surface.
- If validation fails, repair the same slice first and rerun the same command.
Outputs
- Executed validation tasks
- Failed tasks with tail output
- Recommendations for heavier follow-up checks