mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-07-09 17:08:29 +00:00
Add comprehensive file-level DOX documentation across the repo and update directory AGENTS.md indexes. Many new `*.py.dox.md` files were added under api, helpers, tools, plugins, extensions, webui, and other dirs to document endpoint purpose, ownership, runtime contracts, work guidance, and verification. Several AGENTS.md files were created or updated (agents profiles, api, docker, extensions, helpers, plugins, skills, webui components, etc.) to list child DOX files and clarify documentation/work guidance. Also add example and bundled profile DOX files (agent0, default, developer, hacker, researcher) and minor updates to helpers/dirty_json.py and its tests. These changes improve on-disk documentation coverage and establish the convention that each direct runtime file should have a matching `*.dox.md` describing its contracts and verification steps.
3.4 KiB
3.4 KiB
scheduler.py DOX
Purpose
- Own the
scheduler.pyagent tool. - This module creates, updates, lists, runs, waits for, and deletes scheduled/planned/adhoc tasks.
- Keep this file-level DOX profile synchronized with
scheduler.pybecause this directory is intentionally flat.
Ownership
scheduler.pyowns the runtime implementation.scheduler.py.dox.mdowns durable notes about responsibilities, contracts, side effects, and verification for that implementation.- Classes:
SchedulerTool(Tool)async execute(self, **kwargs)async list_tasks(self, **kwargs) -> Responseasync find_task_by_name(self, **kwargs) -> Responseasync show_task(self, **kwargs) -> Responseasync run_task(self, **kwargs) -> Responseasync delete_task(self, **kwargs) -> Responseasync update_task(self, **kwargs) -> Responseasync create_scheduled_task(self, **kwargs) -> Response
- Top-level functions:
_current_action(tool: Tool, kwargs: dict) -> str_normalize_timezone(value: Any) -> str | None_schedule_timezone(kwargs: dict) -> str | None_task_schedule_from_input(schedule: Any, timezone: str | None=...) -> TaskSchedule_validate_task_schedule(task_schedule: TaskSchedule) -> str_task_plan_from_input(plan: Any) -> tuple[TaskPlan | None, str]- Notable constants/configuration names:
DEFAULT_WAIT_TIMEOUT,LOCAL_TIMEZONE_ALIASES.
Runtime Contracts
- Tool modules must define
helpers.tool.Toolsubclasses and returnhelpers.tool.Responsefromexecute(...). - Update this file whenever tool arguments, output shape,
break_loopbehavior, intervention handling, prompt instructions, or side effects change. SchedulerToolis aTool.SchedulerTooldefinesexecute(...).- Observed side-effect areas: filesystem writes, filesystem deletion, settings/state persistence, secret handling, scheduler state.
- Imported dependency areas include:
agent,asyncio,datetime,helpers,helpers.localization,helpers.projects,helpers.task_scheduler,helpers.tool,json,pytz,random,re,typing.
Key Concepts
- Important called helpers/classes observed in the source:
str.strip.lower.replace,str.strip,_normalize_timezone,TaskSchedule,task_schedule.to_crontab,timezone_name.lower,Localization.get.get_timezone,pytz.timezone,schedule.split,re.match,parse_datetime,TaskPlan.create,_current_action,get_context_project_name,TaskScheduler.get.get_tasks,Response,TaskScheduler.get.find_task_by_name,TaskScheduler.get.get_task_by_uuid,scheduler.get_task_by_uuid,self._resolve_project_metadata. - Keep request/response, tool, or helper semantics documented here at the same time as source changes.
Work Guidance
- Keep tool output concise, model-readable, and safe for history persistence.
- Coordinate argument or behavior changes with prompt tool instructions and skill guidance.
- Respect intervention flow for long-running, external, or user-visible operations.
Verification
- Run targeted tool and prompt-contract tests for changed behavior; smoke-test agent execution when no focused test exists.
- Related tests observed by source search:
tests/test_task_scheduler_timezone.pytests/test_timezone_regressions.pytests/test_tool_action_contracts.pytests/test_tool_request_normalization.py
Child DOX Index
No child DOX files.