forked from kunchenguid/firstmate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrew-dispatch.json
More file actions
24 lines (24 loc) · 1.11 KB
/
Copy pathcrew-dispatch.json
File metadata and controls
24 lines (24 loc) · 1.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
{
"rules": [
{
"when": "The task depends on fresh news, current events, live public facts, or recent market and product changes.",
"use": { "harness": "grok" },
"why": "Grok is the preferred dispatch when current web-connected context is central to the work."
},
{
"when": "The task is a trivial mechanical edit such as a rote rename, formatting sweep, targeted typo fix, or simple file gathering.",
"use": { "harness": "claude", "model": "haiku", "effort": "low" },
"why": "Use the cheapest fast profile when the task is narrow and low ambiguity."
},
{
"when": "The task is a big or ambiguous multi-file feature, a risky refactor, or work that requires holding many moving parts in mind.",
"use": [
{ "harness": "claude", "model": "claude-sonnet-5", "effort": "high" },
{ "harness": "codex", "model": "gpt-5.5", "effort": "high" }
],
"select": "quota-balanced",
"why": "Use a strong coding profile for broad design and implementation work."
}
],
"default": { "harness": "codex", "model": "gpt-5.5", "effort": "medium" }
}