Files
ai-workflow-course/modules/07-worktrees-running-agents-in-parallel/lab/agent-b-prompt.md
T
claude 513d7e7ac8
Sync course wiki / sync-wiki (push) Successful in 11s
Reframe sweep M7-27 + capstone (AI drives git, lesson=theory, de-slop) (#93)
Co-authored-by: claude <claude@jpaul.io>
Co-committed-by: claude <claude@jpaul.io>
2026-06-22 21:58:36 -04:00

15 lines
593 B
Markdown

# Agent B prompt — the `remaining` command
Paste this into the AI session you've pointed at the `tasks-app-remaining` worktree folder.
---
Add a `remaining` command to this task app that prints how many tasks are still pending.
- Reuse the existing `pending()` method on `TaskList` in `tasks.py`; don't reimplement it.
- Wire a `remaining` command into the dispatch in `cli.py`.
- Running `python cli.py remaining` should print something like `2 pending` (the number of tasks not
marked done).
Make the change, then stop. I'll review the diff, then have you commit it on this branch.