Review dotfiles changes for quality before merge
Review changes using Task tool with general agent and this prompt.
# Run automated checks
make lint && make test
# View changes
git diff HEAD~1..HEAD
git status --short
Syntax & Style:
zsh -n passes for all .zsh files#!/usr/bin/env zsh or #!/usr/bin/env bash# =========================Module Organization:
zsh/zshrc only sources modules (no logic)zsh/.zshenv minimal (core exports only)zsh/config/*.zshIntegrations:
command -v, , [ -f ][ -s ]Testing:
test/zsh_test.shGit:
<type>(<scope>): <description># Code Review
Review the dotfiles repository changes.
1. Run: git diff HEAD~1..HEAD
2. Run: make lint && make test
3. Check:
- Zsh syntax valid
- Module organization correct
- Guards for optional tools
- Tests pass
- Commit format valid
Output:
### Summary
[Overview]
### Issues
[Critical/Important/Minor with file:line]
### Assessment
Ready to merge? Yes/No/With fixes