This commit is contained in:
2026-08-24 20:02:32 -04:00
parent acb73bcc58
commit 4205d9068e
2 changed files with 9 additions and 0 deletions
+6
View File
@@ -16,6 +16,12 @@
- Always use `git --no-pager diff` instead of `git diff` to prevent the pager from blocking non-interactive commands. - Always use `git --no-pager diff` instead of `git diff` to prevent the pager from blocking non-interactive commands.
## Delegation
- MUST delegate every requested Git commit, Git push, or Perforce submit to the `submitter` agent through tasker after implementation and validation are complete.
- NEVER run `git commit`, `git push`, or `p4 submit` directly.
- When the user requests individual commits, implement and validate each unit, then invoke `submitter` sequentially before starting the next unit.
## Code Quality ## Code Quality
- Inspect relevant code before editing. Start with search, symbols, and targeted reads. - Inspect relevant code before editing. Start with search, symbols, and targeted reads.
+3
View File
@@ -1,5 +1,8 @@
{ {
"tmux": { "tmux": {
"enabled": false "enabled": false
},
"submission": {
"requireSubmitter": true
} }
} }