-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathclaude-tools.json
More file actions
190 lines (190 loc) · 7.11 KB
/
claude-tools.json
File metadata and controls
190 lines (190 loc) · 7.11 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
[
{
"name": "delegate_task",
"description": "Delegate a task to a specialized sub-agent within the Network-AI swarm. The swarm uses a shared blackboard for coordination. Use this to route work to agents like data_analyst, strategy_advisor, or risk_assessor.",
"input_schema": {
"type": "object",
"properties": {
"targetAgent": {
"type": "string",
"description": "The identifier of the target agent to receive the task (e.g. data_analyst, strategy_advisor, risk_assessor)"
},
"taskPayload": {
"type": "object",
"description": "The task context, instructions, and any required data"
},
"priority": {
"type": "string",
"enum": ["low", "normal", "high", "critical"],
"description": "Task priority level for queue ordering. Defaults to normal."
},
"timeout": {
"type": "number",
"description": "Maximum execution time in milliseconds. Defaults to 30000."
},
"requiresAuth": {
"type": "boolean",
"description": "Whether this task requires AuthGuardian permission grant before execution."
}
},
"required": ["targetAgent", "taskPayload"]
}
},
{
"name": "query_swarm_state",
"description": "Query the current state of the agent swarm — active tasks, blackboard contents, agent availability, and permission grants.",
"input_schema": {
"type": "object",
"properties": {
"scope": {
"type": "string",
"enum": ["all", "agents", "tasks", "blackboard", "permissions"],
"description": "The scope of state information to retrieve. Defaults to all."
},
"agentFilter": {
"type": "array",
"items": { "type": "string" },
"description": "Optional list of agent IDs to filter results"
},
"includeHistory": {
"type": "boolean",
"description": "Include historical task execution data. Defaults to false."
}
}
}
},
{
"name": "spawn_parallel_agents",
"description": "Spawn multiple sub-agents in parallel for complex task decomposition. Results are combined using a synthesis strategy.",
"input_schema": {
"type": "object",
"properties": {
"tasks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"agentType": { "type": "string" },
"taskPayload": { "type": "object" }
},
"required": ["agentType", "taskPayload"]
},
"description": "Array of parallel tasks to execute simultaneously"
},
"synthesisStrategy": {
"type": "string",
"enum": ["merge", "vote", "chain", "first-success"],
"description": "How to combine results from parallel agents. Defaults to merge."
}
},
"required": ["tasks"]
}
},
{
"name": "request_permission",
"description": "Request permission from AuthGuardian before accessing a protected resource type. Always call this before DATABASE, PAYMENTS, EMAIL, or FILE_EXPORT operations.",
"input_schema": {
"type": "object",
"properties": {
"resourceType": {
"type": "string",
"enum": ["DATABASE", "PAYMENTS", "EMAIL", "FILE_EXPORT"],
"description": "The type of protected resource being requested"
},
"justification": {
"type": "string",
"description": "Clear reason for requesting access — must be specific to the current task"
},
"scope": {
"type": "string",
"description": "Specific scope of access needed (e.g. read:invoices, read:revenue)"
}
},
"required": ["resourceType", "justification"]
}
},
{
"name": "update_blackboard",
"description": "Write or update an entry on the shared blackboard for cross-agent coordination. The blackboard persists state between agents.",
"input_schema": {
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "The blackboard entry key (e.g. task:001:data_analyst)"
},
"value": {
"description": "The data to store — can be any JSON-serializable value"
},
"ttl": {
"type": "number",
"description": "Time-to-live in seconds. Entry expires and returns null after this duration."
}
},
"required": ["key", "value"]
}
},
{
"name": "inject_context",
"description": "Read the persistent project context (Layer 3 memory) and return a formatted markdown block for injection into an agent system prompt. Contains goals, tech stack, architecture decisions, milestones, and banned approaches that persist across all sessions.",
"input_schema": {
"type": "object",
"properties": {}
}
},
{
"name": "update_context",
"description": "Persist a decision, milestone, stack entry, goal, or banned approach to the project context file (Layer 3 memory). Use this to record information that every agent in every future session should know.",
"input_schema": {
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": ["decisions", "milestones", "stack", "goals", "banned", "project"],
"description": "The context section to update"
},
"add": {
"description": "Item to append — JSON object for decisions/milestones, plain string for goals/banned"
},
"set": {
"type": "object",
"description": "Key-value pairs to merge (use for stack and project sections)"
},
"complete": {
"type": "string",
"description": "Milestone name to mark as completed (milestones section only)"
}
},
"required": ["section"]
}
},
{
"name": "run_qa_harness",
"description": "Run a batch of blackboard entries through the QA quality gate and return aggregate results including pass rate, contradictions between agents, and a regression snapshot.",
"input_schema": {
"type": "object",
"properties": {
"scenarios": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string", "description": "Unique scenario identifier" },
"key": { "type": "string", "description": "Blackboard key" },
"value": { "description": "The value to gate — any JSON-serializable data" },
"sourceAgent": { "type": "string", "description": "Agent that produced the value" },
"minScore": { "type": "number", "description": "Per-scenario quality threshold override (0-1)" }
},
"required": ["id", "key", "value", "sourceAgent"]
},
"description": "Array of scenarios to run through quality gates"
},
"qualityThreshold": {
"type": "number",
"description": "Global minimum quality score (0-1). Defaults to 0.7."
}
},
"required": ["scenarios"]
}
}
]