-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
88 lines (88 loc) · 2.74 KB
/
Copy pathtools.json
File metadata and controls
88 lines (88 loc) · 2.74 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
85
86
87
88
{
"tools": [
{
"name": "list_platforms",
"inputSchema": {
"type": "object",
"properties": {},
"required": []
}
},
{
"name": "list_instances",
"inputSchema": {
"type": "object",
"properties": {
"status": { "type": "string", "enum": ["all", "active", "completed", "failed"], "description": "Filter by status", "default": "all" },
"limit": { "type": "number", "description": "Maximum number of instances to return", "default": 20 }
},
"required": []
}
},
{
"name": "get_instance_status",
"inputSchema": {
"type": "object",
"properties": {
"instance_id": { "type": "string", "description": "The instance ID" }
},
"required": ["instance_id"]
}
},
{
"name": "get_instance_messages",
"inputSchema": {
"type": "object",
"properties": {
"instance_id": { "type": "string", "description": "The instance ID" }
},
"required": ["instance_id"]
}
},
{
"name": "kill_instance",
"inputSchema": {
"type": "object",
"properties": {
"instance_id": { "type": "string", "description": "The instance ID to kill" }
},
"required": ["instance_id"]
}
},
{
"name": "get_running_instances",
"inputSchema": {
"type": "object",
"properties": {},
"required": []
}
},
{
"name": "spawn_instance",
"inputSchema": {
"type": "object",
"properties": {
"prompt": { "type": "string", "description": "What Claude should do" },
"platform": { "type": "string", "description": "Target platform (default: github)", "enum": ["linear", "github", "gitlab", "jira", "notion", "obsidian"] },
"repo_url": { "type": "string", "description": "Git repo URL to work on (e.g. https://github.com/owner/repo)" },
"branch": { "type": "string", "description": "Branch name for this task" },
"base_branch": { "type": "string", "description": "Base branch (default: main)" },
"parent_instance_id": { "type": "string", "description": "Parent instance that spawned this one" },
"project_id": { "type": "string", "description": "Group related instances together" },
"working_dir": { "type": "string", "description": "Override working directory" }
},
"required": ["prompt"]
}
},
{
"name": "get_project_instances",
"inputSchema": {
"type": "object",
"properties": {
"project_id": { "type": "string", "description": "The project ID to query" }
},
"required": ["project_id"]
}
}
]
}