tools/time/SKILL.md
Teaches the agent how to use the time tools — current time, timezone conversion, parsing dates, formatting, date arithmetic.
npx skillsauth add osaurus-ai/osaurus-tools osaurus-timeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A small, pure-function toolkit for clock and calendar work. No network, no state.
osaurus.reminders.current_time once at the start of any task that needs "now". Pass the user's timezone if you know it; otherwise omit and the system zone is used.parse_date to turn user-supplied strings into a Unix timestamp before doing any math.add_duration / diff_dates for arithmetic.format_date only at the end, when you need a human-readable string.Every tool returns:
{ "ok": true, "data": { ... }, "warnings": ["..."] }
{ "ok": false, "error": { "code": "INVALID_ARGS", "message": "...", "hint": "..." } }
Always check ok before reading data. Bad timezone IDs and unparseable date strings produce structured errors — don't swallow them.
America/New_York, not EST). Call list_timezones if you need to validate one.relative format is locale-controlled; pass locale: "en_US" for stable English output.add_duration accepts ISO 8601 durations like P1DT2H (1 day, 2 hours) or signed seconds.tools
How to use the web search tools. Default to `search(query=...)` — the plugin auto-picks the best backend and races free fallbacks in parallel. Only override defaults when you have a specific reason.
tools
Teaches the agent how to use the HTTP fetch tools — JSON APIs, Readability HTML extraction, file downloads, with built-in SSRF and size limits.
tools
Teaches the agent how to use the headless browser tools — per-agent persistent sessions, the open_login helper, refs, batching, detail levels, console/network inspection, dialogs, viewport/UA, cookies, and lock/unlock for multi-agent safety.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.