Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions docs/agent-tools/claude-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,22 @@
]
}
},
{
"name": "get_order_timeline_v1_entity_order__order_id__timeline_get",
"description": "Get Order Timeline\n\nOrder 360: order state, stage history, pipeline trail, customer block,\nand linked exceptions \u2014 one composed read (ops-surfaces-spec.md \u00a72).\n\nSame tenant scoping and 404 semantics as GET /entity/order/{order_id}.\nNot cached: this is the \"now\" surface (ADR 0011 constraint 3, spec \u00a71.8).\n\nExample:\n GET /v1/entity/order/ORD-20260404-1001/timeline",
"input_schema": {
"type": "object",
"properties": {
"order_id": {
"type": "string",
"title": "Order Id"
}
},
"required": [
"order_id"
]
}
},
{
"name": "get_metric_v1_metrics__metric_name__get",
"description": "Get Metric\n\nGet a real-time metric value.\n\nSupported metrics: revenue, order_count, avg_order_value, conversion_rate,\nactive_sessions, error_rate.\n\nWindow options: 5m, 15m, 1h, 6h, 24h.\n\nExample:\n GET /v1/metrics/revenue?window=1h",
Expand Down
19 changes: 19 additions & 0 deletions docs/agent-tools/openai-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,25 @@
}
}
},
{
"type": "function",
"function": {
"name": "get_order_timeline_v1_entity_order__order_id__timeline_get",
"description": "Get Order Timeline\n\nOrder 360: order state, stage history, pipeline trail, customer block,\nand linked exceptions \u2014 one composed read (ops-surfaces-spec.md \u00a72).\n\nSame tenant scoping and 404 semantics as GET /entity/order/{order_id}.\nNot cached: this is the \"now\" surface (ADR 0011 constraint 3, spec \u00a71.8).\n\nExample:\n GET /v1/entity/order/ORD-20260404-1001/timeline",
"parameters": {
"type": "object",
"properties": {
"order_id": {
"type": "string",
"title": "Order Id"
}
},
"required": [
"order_id"
]
}
}
},
{
"type": "function",
"function": {
Expand Down
Loading