2b926c733b
- Add new todo tool with create, list, update, mark_done, mark_pending, delete actions - Each subagent has isolated todo storage keyed by agent_id - Support bulk todo creation via JSON array or bullet list - Add TUI renderers for all todo actions with status markers - Update notes tool to remove priority and todo-related functionality - Add task tracking guidance to StrixAgent system prompt - Fix instruction file error handling in CLI
65 lines
1.7 KiB
Python
65 lines
1.7 KiB
Python
import os
|
|
|
|
from .executor import (
|
|
execute_tool,
|
|
execute_tool_invocation,
|
|
execute_tool_with_validation,
|
|
extract_screenshot_from_result,
|
|
process_tool_invocations,
|
|
remove_screenshot_from_result,
|
|
validate_tool_availability,
|
|
)
|
|
from .registry import (
|
|
ImplementedInClientSideOnlyError,
|
|
get_tool_by_name,
|
|
get_tool_names,
|
|
get_tools_prompt,
|
|
needs_agent_state,
|
|
register_tool,
|
|
tools,
|
|
)
|
|
|
|
|
|
SANDBOX_MODE = os.getenv("STRIX_SANDBOX_MODE", "false").lower() == "true"
|
|
|
|
HAS_PERPLEXITY_API = bool(os.getenv("PERPLEXITY_API_KEY"))
|
|
|
|
if not SANDBOX_MODE:
|
|
from .agents_graph import * # noqa: F403
|
|
from .browser import * # noqa: F403
|
|
from .file_edit import * # noqa: F403
|
|
from .finish import * # noqa: F403
|
|
from .notes import * # noqa: F403
|
|
from .proxy import * # noqa: F403
|
|
from .python import * # noqa: F403
|
|
from .reporting import * # noqa: F403
|
|
from .terminal import * # noqa: F403
|
|
from .thinking import * # noqa: F403
|
|
from .todo import * # noqa: F403
|
|
|
|
if HAS_PERPLEXITY_API:
|
|
from .web_search import * # noqa: F403
|
|
else:
|
|
from .browser import * # noqa: F403
|
|
from .file_edit import * # noqa: F403
|
|
from .proxy import * # noqa: F403
|
|
from .python import * # noqa: F403
|
|
from .terminal import * # noqa: F403
|
|
|
|
__all__ = [
|
|
"ImplementedInClientSideOnlyError",
|
|
"execute_tool",
|
|
"execute_tool_invocation",
|
|
"execute_tool_with_validation",
|
|
"extract_screenshot_from_result",
|
|
"get_tool_by_name",
|
|
"get_tool_names",
|
|
"get_tools_prompt",
|
|
"needs_agent_state",
|
|
"process_tool_invocations",
|
|
"register_tool",
|
|
"remove_screenshot_from_result",
|
|
"tools",
|
|
"validate_tool_availability",
|
|
]
|