Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 33 additions & 14 deletions plugins/osaurus.time.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,34 @@
"capabilities": {
"tools": [
{
"name": "current_time",
"description": "Get the current date and time, optionally in a specific IANA timezone."
"widget": true,
"description": "Get the current date and time, optionally in a specific IANA timezone.",
"name": "current_time"
},
{
"name": "format_date",
"description": "Format a Unix timestamp or date string into a chosen format."
"description": "Format a Unix timestamp or date string into a chosen format.",
"name": "format_date"
},
{
"name": "parse_date",
"description": "Parse a date string into a Unix timestamp + ISO 8601 in the given timezone. Use this before any date arithmetic."
"description": "Parse a date string into a Unix timestamp + ISO 8601 in the given timezone. Use this before any date arithmetic.",
"name": "parse_date"
},
{
"name": "convert_timezone",
"description": "Re-express an instant in a different timezone. Returns the same wall instant projected into the target zone."
"description": "Re-express an instant in a different timezone. Returns the same wall instant projected into the target zone.",
"name": "convert_timezone"
},
{
"name": "add_duration",
"description": "Add (or subtract) a duration from a date. Pass either an ISO 8601 duration like 'P1DT2H' or a raw 'seconds' value."
"description": "Add (or subtract) a duration from a date. Pass either an ISO 8601 duration like 'P1DT2H' or a raw 'seconds' value.",
"name": "add_duration"
},
{
"name": "diff_dates",
"description": "Compute the difference between two dates. Returns total seconds, an ISO 8601 duration, and a human summary."
"description": "Compute the difference between two dates. Returns total seconds, an ISO 8601 duration, and a human summary.",
"name": "diff_dates"
},
{
"name": "list_timezones",
"description": "List all known IANA timezone identifiers, optionally filtered by prefix. Use this to validate user-supplied zones."
"widget": true,
"description": "List all known IANA timezone identifiers, optionally filtered by prefix. Use this to validate user-supplied zones.",
"name": "list_timezones"
}
],
"skills": [
Expand Down Expand Up @@ -126,6 +128,23 @@
}
}
]
},
{
"version": "2.0.3",
"release_date": "2026-05-11",
"artifacts": [
{
"os": "macos",
"arch": "arm64",
"url": "https://github.com/osaurus-ai/osaurus-tools/releases/download/time-2.0.3/osaurus.time-2.0.3-macos-arm64.zip",
"sha256": "34dd286896a6239f0ab3cc40f9c233f267af05120cf9808f25af2222a0ea9087",
"size": 64621,
"min_macos": "13.0",
"minisign": {
"signature": "untrusted comment: signature from minisign secret key\nRWTmCafy0+6ViRNFOze+JJpKbZMAFrwT/vELbgL8wefPtFgnQjrap5KuwUMYgMJI9nHKle9kYocDiWQ9xtf+M5936hlBu2t6bgo=\ntrusted comment: timestamp:1778495512\tfile:osaurus.time-2.0.3-macos-arm64.zip\nczhWAIT0LM/Gp/mOXf4xhKA2R3myfoSyphRRvZmf2F85G9hbC8guy9FopDmxaTlFxEVy2iHLfAoWNwTGGMf4AA=="
}
}
]
}
],
"public_keys": {
Expand Down
Loading