-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime.json
More file actions
42 lines (42 loc) · 990 Bytes
/
runtime.json
File metadata and controls
42 lines (42 loc) · 990 Bytes
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
{
"framework": "skill-framework/v1",
"runtime": {
"run_dir": ".skill-framework/runs",
"lock_timeout_seconds": 30,
"atomic_writes": true,
"event_log": {
"path": "events.jsonl",
"append_only": true
},
"snapshot": {
"path": "state.json",
"must_match_replay": true
},
"node_plan": {
"path": "node-plan.json",
"must_be_topological": true
},
"node_results": {
"dir": "node-results",
"require_all_steps": true,
"reject_unknown_steps": true
},
"loop_guards": {
"max_state_visits": {
"route_request": 6,
"author": 5,
"validate": 5,
"runtime": 5,
"render_diagram": 5,
"blocked": 5
},
"max_consecutive_self_transitions": 3
},
"context_slicing": {
"hide_runtime_only_from_agent": true,
"include_active_instruction": true,
"include_active_rules": true,
"respect_max_context_items": true
}
}
}