mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 15:03:31 +00:00
docs: add To-Dos section explaining no built-in support
- Clear stance: no built-in to-dos - Rationale: they confuse models more than help - Alternative: stateful TODO.md file with checkboxes - Simple example provided - Agent can read/update file as needed
This commit is contained in:
parent
e9935beb5f
commit
9066f58ca7
1 changed files with 17 additions and 0 deletions
|
|
@ -411,6 +411,23 @@ Context transfer between agents is generally poor. Information gets lost, compre
|
|||
|
||||
If you need parallel work on independent tasks, manually run multiple `pi` sessions in different terminal tabs. You're the orchestrator.
|
||||
|
||||
## To-Dos
|
||||
|
||||
**pi does not and will not support built-in to-dos.** In my experience, to-do lists generally confuse models more than they help.
|
||||
|
||||
If you need task tracking, make it stateful by writing to a file:
|
||||
|
||||
```markdown
|
||||
# TODO.md
|
||||
|
||||
- [x] Implement user authentication
|
||||
- [x] Add database migrations
|
||||
- [ ] Write API documentation
|
||||
- [ ] Add rate limiting
|
||||
```
|
||||
|
||||
The agent can read and update this file as needed. Using checkboxes keeps track of what's done and what remains. Simple, visible, and under your control.
|
||||
|
||||
## Planned Features
|
||||
|
||||
Things that might happen eventually:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue