Learn-skills.dev simplify
Manually trigger the cdd-code-simplifier agent to review and simplify code
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/aaddrick/claude-desktop-debian/simplify" ~/.claude/skills/neversight-learn-skills-dev-simplify-6a42e2 && rm -rf "$T"
manifest:
data/skills-md/aaddrick/claude-desktop-debian/simplify/SKILL.mdsource content
Run the cdd-code-simplifier agent to review and simplify code for clarity, consistency, and maintainability.
Your Task
Use the Task tool with
subagent_type: "cdd-code-simplifier" to run the code simplifier.
Scope determination:
- If guidance was provided after
, pass it to the agent as part of the prompt/simplify - If no guidance provided, have the agent focus on recently modified files (use
orgit diff --name-only main...HEAD
to identify them)git status
User guidance: $ARGUMENTS
After the agent completes:
- Review the changes made
- If changes were made, ask if the user wants to commit them
- Provide a brief summary of what was simplified
Examples
- Simplify recently modified files/simplify
- Simplify with specific guidance/simplify focus on build.sh error handling
- Narrow the scope/simplify only look at the new functions I added