$npx -y skills add fusengine/agents --skill commit-optimizationOptimization guide for fuse-commit-pro commit workflow. Documents settings to reduce token usage.
| 1 | # Commit Optimization |
| 2 | |
| 3 | ## Optimization: Disable Built-in Git Instructions |
| 4 | |
| 5 | For best results with fuse-commit-pro, add this to your `~/.claude/settings.json`: |
| 6 | |
| 7 | ```json |
| 8 | { |
| 9 | "includeGitInstructions": false |
| 10 | } |
| 11 | ``` |
| 12 | |
| 13 | This removes Claude Code's built-in commit/PR workflow instructions from the system prompt, saving 2-5% context tokens. fuse-commit-pro provides its own comprehensive git workflow that supersedes the defaults. |
| 14 | |
| 15 | Note: `CLAUDE_CODE_DISABLE_GIT_INSTRUCTIONS=1` env var takes precedence over this setting. |