-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtools.json
More file actions
84 lines (84 loc) · 2.17 KB
/
tools.json
File metadata and controls
84 lines (84 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[
{
"description": "Query issue tracker state for candidate dispatch and state refresh operations.",
"inputSchema": {
"properties": {
"active_states": {
"items": {
"type": "string"
},
"type": "array"
},
"issue_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"mode": {
"type": "string"
},
"query": {
"type": "string"
},
"states": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"name": "tracker_query"
},
{
"description": "Update an issue's state, priority, or assignee. Use this to transition an issue through the workflow or hand off to another agent.",
"inputSchema": {
"properties": {
"assignee_id": {
"description": "The ID of the agent or user to assign (e.g. agent-claude, agent-codex)",
"type": "string"
},
"identifier": {
"description": "The issue identifier (e.g. OPS-123)",
"type": "string"
},
"priority": {
"description": "The priority level (0-4)",
"type": "integer"
},
"state": {
"description": "The new state (e.g. In Progress, In Review, Done)",
"type": "string"
}
},
"required": [
"identifier"
],
"type": "object"
},
"name": "update_issue"
},
{
"description": "Explicitly request to hand off the current task to another agent provider. Use this if the task requires a model with different capabilities (e.g. larger context, better reasoning).",
"inputSchema": {
"properties": {
"provider": {
"description": "The target agent provider (e.g. claude, gemini, codex, opencode)",
"type": "string"
},
"reason": {
"description": "The reason for the handoff request",
"type": "string"
}
},
"required": [
"provider",
"reason"
],
"type": "object"
},
"name": "request_handoff"
}
]