-
-
Notifications
You must be signed in to change notification settings - Fork 40
feat(todo): add agent tools for todo lists, remove notes_set_done #2035
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
c58726c
feat(todo): add agent tools for todo lists, remove notes_set_done
hognek 9816e42
fix(todo): strip internal fields from list_lists, document owner-auth…
hognek c80e8c4
fix(todo): use whitelist for list_lists response fields
hognek 8faa569
fix(todo): remove unused agent_name from list_lists and set_done, doc…
hognek c8a3978
fix(github): fix SecretsStore mock in _build_app_with_app_config to r…
hognek 9d1e173
fix(todo): bind agent_name to owner_user_id via agent_registry
hognek 4cc2636
fix(todo): reorder owner check before archived check to prevent state…
hognek 51895bc
fix(todo): resolve owner for deployed agents via config fallback
hognek c66221c
fix(todo): address CR findings — precise owner-resolve errors, remove…
hognek 04f1ed8
fix(todo): three pre-merge fixes for #2035
hognek bbad64e
test(todo): assert field whitelist in real-store registry-hit test
hognek f81af19
fix(skills): migrate orphan skill assignments before deleting
hognek 8d2c305
refactor(todo): extract _resolve_and_validate_owner helper, deduplica…
hognek faf9eea
chore: retrigger CI (Kilo review was infra failure on prior runs)
hognek 9d6b6df
fix(todo): bind owner auth to agent identity in no-registry fallback
hognek de5ed27
fix(todo): use authenticated identity for deployed agents not in regi…
hognek a9b52aa
chore: retrigger CI (doc-gate clean locally, deleted-symbols check st…
hognek 70ea9cf
docs: doc-gate waiver — todo tool split from notes_set_done (#2035)
hognek 8b54b2c
docs: trim todo-tool prose to fit compiled-manual size budget (#2035)
hognek e63049c
docs: fix todo tool names in changelog fragment (#2035)
hognek c96ed26
fix(skills): drop notes-scoped config when migrating notes_set_done -…
hognek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| ### Added | ||
|
|
||
| - Agent-accessible todo-list tools: `todo_list_lists`, `todo_add_item`, `todo_set_done` (#2035). | ||
|
|
||
| ### Removed | ||
|
|
||
| - `notes_set_done` agent tool superseded by the richer todo tools above (#2035). |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Todo tool entries omit arguments in both manuals. The same three lines were added to the source manual and to the compiled manual, and neither states the tool arguments that every neighbouring entry states.
docs/agent-manual/09-os-control.md#L15-L17: add the returned fields fortodo_list_listsand thelist_id,text,item_id,donearguments fortodo_add_itemandtodo_set_done.docs/taos-agent-manual.md#L179-L181: mirror the same wording in the compiled manual and confirm it stays within the manual size limit.🧰 Tools
🪛 LanguageTool
[style] ~17-~17: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... - todo_add_item — add an item. - todo_set_done — mark done. A typical flow...
(ENGLISH_WORD_REPEAT_BEGINNING_RULE)
📍 Affects 2 files
docs/agent-manual/09-os-control.md#L15-L17(this comment)docs/taos-agent-manual.md#L179-L181🤖 Prompt for AI Agents