File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -207,15 +207,11 @@ The `hooks` field defines commands to run at specific trigger points. The output
207
207
"agentSpawn" : [
208
208
{
209
209
"command" : " git status" ,
210
- "timeout_ms" : 30000 ,
211
- "max_output_size" : 10240 ,
212
- "cache_ttl_seconds" : 0
213
210
}
214
211
],
215
212
"userPromptSubmit" : [
216
213
{
217
214
"command" : " ls -la" ,
218
- "timeout_ms" : 5000
219
215
}
220
216
]
221
217
}
@@ -224,9 +220,6 @@ The `hooks` field defines commands to run at specific trigger points. The output
224
220
225
221
Each hook is defined with:
226
222
- ` command ` (required): The command to execute
227
- - ` timeout_ms ` (optional): Maximum execution time in milliseconds (default: 30000)
228
- - ` max_output_size ` (optional): Maximum output size in bytes (default: 10240)
229
- - ` cache_ttl_seconds ` (optional): How long to cache the output (default: 0)
230
223
231
224
Available hook triggers:
232
225
- ` agentSpawn ` : Triggered when the agent is initialized
@@ -294,13 +287,11 @@ Here's a complete example of an agent configuration file:
294
287
"agentSpawn" : [
295
288
{
296
289
"command" : " git status" ,
297
- "timeout_ms" : 30000
298
290
}
299
291
],
300
292
"userPromptSubmit" : [
301
293
{
302
294
"command" : " ls -la" ,
303
- "timeout_ms" : 5000
304
295
}
305
296
]
306
297
},
You can’t perform that action at this time.
0 commit comments