Context
definitions.py:193 contains: "run /simplify or /refactor to simplify and improve the code" — this assumes gstack or similar skill collections are installed. If they're not, the agent either ignores the instruction or errors.
Proposal
Replace the external skill dependency with an internalized instruction:
Before:
- run /simplify or /refactor to simplify and improve the code
After:
- Review your changes for unnecessary complexity, dead code, duplicated logic, and opportunities to simplify before committing.
Rationale
askcc-cli should be self-contained. Referencing external skills that may not be installed creates silent failures or confusion. The simplification intent can be expressed directly in the prompt without requiring an external dependency.
Context
definitions.py:193contains:"run /simplify or /refactor to simplify and improve the code"— this assumes gstack or similar skill collections are installed. If they're not, the agent either ignores the instruction or errors.Proposal
Replace the external skill dependency with an internalized instruction:
Before:
After:
Rationale
askcc-cli should be self-contained. Referencing external skills that may not be installed creates silent failures or confusion. The simplification intent can be expressed directly in the prompt without requiring an external dependency.