mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-26 15:40:18 +00:00
* refactor: deduplicate tool parameter extraction and remove dead stub tools Delete 4 never-registered stub tools (marketplace, restaurant, ecommerce, taskrabbit) removing ~625 lines of dead code. Add require_str/require_param helpers to tool.rs and refactor ~30 call sites across 10 tool files from 4-6 line inline extractions to single-line calls. Consolidate worker HTTP client with get_json/post_json helpers, reducing boilerplate in 4 methods. Co-Authored-By: Claude Opus 4.6 <[email protected]> * fix: return JSON from orchestrator /complete endpoint The report_complete handler returned bare StatusCode::OK (no body), which broke the post_json helper that expects a JSON response. Return {"status": "ok"} for consistency with other worker endpoints. Addresses review feedback on PR #98. Co-Authored-By: Claude Opus 4.6 <[email protected]> --------- Co-authored-by: Claude Opus 4.6 <[email protected]>
115 lines
3.6 KiB
Rust
115 lines
3.6 KiB
Rust
//! Time utility tool.
|
|
|
|
use async_trait::async_trait;
|
|
use chrono::{DateTime, Utc};
|
|
|
|
use crate::context::JobContext;
|
|
use crate::tools::tool::{Tool, ToolError, ToolOutput, require_str};
|
|
|
|
/// Tool for getting current time and date operations.
|
|
pub struct TimeTool;
|
|
|
|
#[async_trait]
|
|
impl Tool for TimeTool {
|
|
fn name(&self) -> &str {
|
|
"time"
|
|
}
|
|
|
|
fn description(&self) -> &str {
|
|
"Get current time, convert timezones, or calculate time differences."
|
|
}
|
|
|
|
fn parameters_schema(&self) -> serde_json::Value {
|
|
serde_json::json!({
|
|
"type": "object",
|
|
"properties": {
|
|
"operation": {
|
|
"type": "string",
|
|
"enum": ["now", "parse", "format", "diff"],
|
|
"description": "The time operation to perform"
|
|
},
|
|
"timestamp": {
|
|
"type": "string",
|
|
"description": "ISO 8601 timestamp (for parse/format/diff operations)"
|
|
},
|
|
"format": {
|
|
"type": "string",
|
|
"description": "Output format string (for format operation)"
|
|
},
|
|
"timestamp2": {
|
|
"type": "string",
|
|
"description": "Second timestamp (for diff operation)"
|
|
}
|
|
},
|
|
"required": ["operation"]
|
|
})
|
|
}
|
|
|
|
async fn execute(
|
|
&self,
|
|
params: serde_json::Value,
|
|
_ctx: &JobContext,
|
|
) -> Result<ToolOutput, ToolError> {
|
|
let start = std::time::Instant::now();
|
|
|
|
let operation = require_str(¶ms, "operation")?;
|
|
|
|
let result = match operation {
|
|
"now" => {
|
|
let now = Utc::now();
|
|
serde_json::json!({
|
|
"iso": now.to_rfc3339(),
|
|
"unix": now.timestamp(),
|
|
"unix_millis": now.timestamp_millis()
|
|
})
|
|
}
|
|
"parse" => {
|
|
let timestamp = require_str(¶ms, "timestamp")?;
|
|
|
|
let dt: DateTime<Utc> = timestamp.parse().map_err(|e| {
|
|
ToolError::InvalidParameters(format!("invalid timestamp: {}", e))
|
|
})?;
|
|
|
|
serde_json::json!({
|
|
"iso": dt.to_rfc3339(),
|
|
"unix": dt.timestamp(),
|
|
"unix_millis": dt.timestamp_millis()
|
|
})
|
|
}
|
|
"diff" => {
|
|
let ts1 = require_str(¶ms, "timestamp")?;
|
|
|
|
let ts2 = require_str(¶ms, "timestamp2")?;
|
|
|
|
let dt1: DateTime<Utc> = ts1.parse().map_err(|e| {
|
|
ToolError::InvalidParameters(format!("invalid timestamp: {}", e))
|
|
})?;
|
|
let dt2: DateTime<Utc> = ts2.parse().map_err(|e| {
|
|
ToolError::InvalidParameters(format!("invalid timestamp2: {}", e))
|
|
})?;
|
|
|
|
let diff = dt2.signed_duration_since(dt1);
|
|
|
|
serde_json::json!({
|
|
"seconds": diff.num_seconds(),
|
|
"minutes": diff.num_minutes(),
|
|
"hours": diff.num_hours(),
|
|
"days": diff.num_days()
|
|
})
|
|
}
|
|
_ => {
|
|
return Err(ToolError::InvalidParameters(format!(
|
|
"unknown operation: {}",
|
|
operation
|
|
)));
|
|
}
|
|
};
|
|
|
|
Ok(ToolOutput::success(result, start.elapsed()))
|
|
}
|
|
|
|
fn requires_sanitization(&self) -> bool {
|
|
false // Internal tool, no external data
|
|
}
|
|
}
|