Add todo tool for task management and enhance CLI features
- Introduced a new `todo_tool.py` for planning and tracking multi-step tasks, enhancing the agent's capabilities. - Updated CLI to include a floating autocomplete dropdown for commands and improved user instructions for better navigation. - Revised toolsets to incorporate the new `todo` tool and updated documentation to reflect changes in available tools and commands. - Enhanced user experience with new keybindings and clearer command descriptions in the CLI.
This commit is contained in:
parent
225ae32e7a
commit
9e85408c7b
7 changed files with 80 additions and 15 deletions
20
toolsets.py
20
toolsets.py
|
|
@ -189,6 +189,11 @@ TOOLSETS = {
|
|||
"image_generate",
|
||||
# Text-to-speech
|
||||
"text_to_speech",
|
||||
# Browser automation (requires Browserbase API key)
|
||||
"browser_navigate", "browser_snapshot", "browser_click",
|
||||
"browser_type", "browser_scroll", "browser_back",
|
||||
"browser_press", "browser_close", "browser_get_images",
|
||||
"browser_vision",
|
||||
# Skills - access knowledge base
|
||||
"skills_list", "skill_view",
|
||||
# Planning & task management
|
||||
|
|
@ -216,6 +221,11 @@ TOOLSETS = {
|
|||
"image_generate",
|
||||
# Text-to-speech
|
||||
"text_to_speech",
|
||||
# Browser automation (requires Browserbase API key)
|
||||
"browser_navigate", "browser_snapshot", "browser_click",
|
||||
"browser_type", "browser_scroll", "browser_back",
|
||||
"browser_press", "browser_close", "browser_get_images",
|
||||
"browser_vision",
|
||||
# Skills - access knowledge base
|
||||
"skills_list", "skill_view",
|
||||
# Planning & task management
|
||||
|
|
@ -243,6 +253,11 @@ TOOLSETS = {
|
|||
"image_generate",
|
||||
# Text-to-speech
|
||||
"text_to_speech",
|
||||
# Browser automation (requires Browserbase API key)
|
||||
"browser_navigate", "browser_snapshot", "browser_click",
|
||||
"browser_type", "browser_scroll", "browser_back",
|
||||
"browser_press", "browser_close", "browser_get_images",
|
||||
"browser_vision",
|
||||
# Skills
|
||||
"skills_list", "skill_view",
|
||||
# Planning & task management
|
||||
|
|
@ -270,6 +285,11 @@ TOOLSETS = {
|
|||
"image_generate",
|
||||
# Text-to-speech
|
||||
"text_to_speech",
|
||||
# Browser automation (requires Browserbase API key)
|
||||
"browser_navigate", "browser_snapshot", "browser_click",
|
||||
"browser_type", "browser_scroll", "browser_back",
|
||||
"browser_press", "browser_close", "browser_get_images",
|
||||
"browser_vision",
|
||||
# Skills - access knowledge base
|
||||
"skills_list", "skill_view",
|
||||
# Planning & task management
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue