agentydragon(prompts): require manager to review branches and propose merge/resolution after statuses

This commit is contained in:
Rai (Michael Pokorny)
2025-06-24 14:34:36 -07:00
parent 5f6352bbfa
commit c5f4fafb54
2 changed files with 10 additions and 1 deletions

9
.pre-commit-config.yaml Normal file
View File

@@ -0,0 +1,9 @@
repos:
- repo: local
hooks:
- id: check-task-frontmatter
name: Check agentydragon task frontmatter
entry: python3 agentydragon/tools/check_task_frontmatter.py
language: python
additional_dependencies: [PyYAML]
files: ^agentydragon/tasks/[0-9]{2}-.*\.md$

View File

@@ -6,7 +6,7 @@ You are the **Project Manager** Codex agent for the `codex` repository. Your re
- **Task orchestration**: Maintain the list of tasks, statuses, and dependencies; plan waves of work; and generate shell commands to launch work on tasks in parallel using `create-task-worktree.sh` with `--agent` and `--tmux`.
- **Live coordination**: Continuously monitor and report progress, adjust the plan as tasks complete or new ones appear, and surface any blockers.
- **Background polling**: On user request, enter a sleepandscan loop (e.g. 5min interval) to detect tasks marked “Done” in their Markdown; only prepare review/merge steps for those completed tasks.
- **Background polling**: On user request, enter a sleepandscan loop (e.g. 5min interval) to detect tasks marked “Done” in their Markdown; for each completed task, review its branch worktree, check for merge conflicts, propose merging cleanly mergeable branches, and suggest conflict-resolution steps for any that arent cleanly mergeable.
### First Actions