-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhank.json
More file actions
75 lines (75 loc) · 2.13 KB
/
hank.json
File metadata and controls
75 lines (75 loc) · 2.13 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
{
"$schema": "https://unpkg.com/hankweave@latest/schemas/hank.schema.json",
"meta": {
"name": "Four Voices, One Page",
"version": "1.1.0",
"description": "A demo of Hankweave multi-harness codons, loops, and budgets."
},
"globalSystemPromptFile": "./prompts/system.md",
"overrides": {
"budget": {
"maxDollars": 2.00,
"maxTimeSeconds": 600
}
},
"hank": [
{
"id": "architect",
"name": "The Architect (Claude Sonnet)",
"model": "sonnet",
"continuationMode": "fresh",
"promptFile": "./prompts/01-architect.md",
"checkpointedFiles": ["workspace/**/*"],
"budget": { "maxDollars": 0.50 }
},
{
"id": "engineer",
"name": "The Engineer (GPT-5.3 Codex)",
"model": "gpt-5.3-codex",
"continuationMode": "fresh",
"promptFile": "./prompts/02-engineer.md",
"checkpointedFiles": ["workspace/**/*"],
"budget": { "maxDollars": 0.30 }
},
{
"id": "storyteller",
"name": "The Storyteller (Gemini 3 Flash)",
"model": "pi/google/gemini-3-flash-preview",
"continuationMode": "fresh",
"promptFile": "./prompts/03-storyteller.md",
"checkpointedFiles": ["workspace/**/*"],
"budget": { "maxDollars": 0.20 }
},
{
"id": "perfectionist",
"name": "The Perfectionist (GPT-5.4)",
"model": "opencode/openai/gpt-5.4",
"continuationMode": "fresh",
"promptFile": "./prompts/04-perfectionist.md",
"checkpointedFiles": ["workspace/**/*"],
"budget": { "maxDollars": 0.50 }
},
{
"type": "loop",
"id": "fresh-eyes",
"name": "Fresh Eyes Review",
"terminateOn": { "type": "iterationLimit", "limit": 2 },
"budget": { "maxDollars": 0.30 },
"codons": [
{
"id": "review",
"name": "Fresh Eyes Pass",
"model": "haiku",
"continuationMode": "fresh",
"promptFile": "./prompts/05-fresh-eyes.md",
"checkpointedFiles": ["workspace/**/*"],
"outputFiles": [
{
"copy": ["workspace/index.html"]
}
]
}
]
}
]
}