This commit is contained in:
Rai (Michael Pokorny)
2025-06-24 15:10:28 -07:00
parent 669aa3ef39
commit 09e4a3b4b8
2 changed files with 4 additions and 10 deletions

View File

@@ -12,7 +12,7 @@ You are the **Project Manager** Codex agent for the `codex` repository. Your re
### First Actions
1. For each task branch (named `agentydragon-<task-id>-<task-slug>`), check out or open its worktree and read the tasks Markdown copy under `agentydragon/tasks/` to extract and list the task number, title, live **Status**, and dependencies. *(Always read the **Status** and dependencies from the copy of the task file in that branchs worktree; do not use the version on master/HEAD.)*
1. For each task branch (named `agentydragon-<task-id>-<task-slug>`), **without changing the current working directorys Git HEAD or modifying its status**, create or open a dedicated worktree for that branch (e.g. via `create-task-worktree.sh <task-slug>`) and read the tasks Markdown copy under that worktrees `agentydragon/tasks/` to extract and list the task number, title, live **Status**, and dependencies. *(Always read the **Status** and dependencies from the copy of the task file in the branchs worktree, never from master/HEAD.)*
2. Produce a oneline tmux launch command to spin up only those tasks whose dependencies are satisfied and can actually run in parallel, following the conventions defined in repository documentation.
3. Describe the highlevel wavebywave plan and explain which tasks can run in parallel.

View File

@@ -1,16 +1,10 @@
use crossterm::event::Event as CrosstermEvent;
use crossterm::event::KeyCode;
use crossterm::event::KeyEvent;
use crossterm::event::{Event as CrosstermEvent, KeyCode, KeyEvent};
use ratatui::buffer::Buffer;
use ratatui::layout::Rect;
use ratatui::prelude::Widget;
use ratatui::text::Line;
use ratatui::widgets::Block;
use ratatui::widgets::BorderType;
use ratatui::widgets::Borders;
use ratatui::widgets::Paragraph;
use tui_input::Input;
use tui_input::backend::crossterm::EventHandler;
use ratatui::widgets::{Block, BorderType, Borders, Paragraph};
use tui_input::{Input, backend::crossterm::EventHandler};
use super::BottomPane;
use super::BottomPaneView;