Conversation
Introduces a new native tool `eca__todo` to help the agent plan, organize, and track progress across complex, multi-step tasks. - Maintains a persistent TODO state per chat in the DB - Supports operations: plan, add, update, start, complete, delete, clear - Includes dependency tracking (blocked_by) and cycle detection - Enforces sequential execution by default to prevent improper batching - Covered by comprehensive unit and integration tests
ericdallo
reviewed
Mar 4, 2026
ericdallo
reviewed
Mar 4, 2026
- Remove the `goal` field from the TODO state and `plan` operation, as discrete tasks often do not share a single high-level objective. - Unify the JSON tool parameter schema to use `snake_case` (e.g., `active_summary`) to match existing fields like `blocked_by`. - Restrict the `active_summary` parameter exclusively to the `start` operation, where it semantically belongs. - Update agent prompts (`todo.md`, `code_agent.md`) to explicitly forbid batch-starting tasks unless performing genuinely parallel work (e.g., dispatching subagents). - Update all corresponding tool tests to reflect the new state shape and validation logic.
ericdallo
reviewed
Mar 4, 2026
Member
ericdallo
left a comment
There was a problem hiding this comment.
Looks great!
I did the UI version in todo branch of eca-emacs
ericdallo
approved these changes
Mar 4, 2026
eca__todo tool for multi-step task planning and trackingeca__task tool for multi-step task planning and tracking
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces a new native tool
eca__taskto help the agent plan, organize, and track progress across complex, multi-step tasks.Maintains a persistent task state per chat in the DB
Supports operations: plan, add, update, start, complete, delete, clear
Includes dependency tracking (blocked_by) and cycle detection
Enforces sequential execution by default to prevent improper batching
Covered by comprehensive unit and integration tests
I added a entry in changelog under unreleased section.
This is not an AI slop.