-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
73 lines (73 loc) · 2.2 KB
/
Copy pathopencode.json
File metadata and controls
73 lines (73 loc) · 2.2 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
{
"$schema": "https://opencode.ai/config.json",
"share": "disabled",
"instructions": [
"AGENTS.md",
"docs/privacy-model.md",
"docs/browser-use-policy.md"
],
"permission": {
"edit": "ask",
"bash": "ask"
},
"command": {
"eval": {
"description": "Run the offline synthetic opportunity eval suite.",
"template": "Run `npm run eval`, inspect mismatches, and report scoring regressions without changing files unless asked.",
"agent": "scorer"
},
"review-opportunity": {
"description": "Score a pasted or fixture-based opportunity against the rubric.",
"template": "Review the opportunity in $ARGUMENTS using docs/scoring-rubric.md as the human-readable source of truth and config/scoring-rubric.json as the generated runtime rubric. Record evidence, risk flags, missing information, score, and decision. Do not browse unless the user explicitly authorizes a visible browser session.",
"agent": "scorer"
}
},
"agent": {
"planner": {
"mode": "primary",
"description": "Planning-only agent for CareerDeepSeek architecture and workflow changes.",
"prompt": "{file:.opencode/prompts/planner.md}",
"permission": {
"edit": "ask",
"bash": "ask",
"task": {
"*": "deny",
"scorer": "allow",
"reviewer": "allow"
}
}
},
"scorer": {
"mode": "subagent",
"description": "Scores job opportunities using the public rubric and synthetic fixtures.",
"prompt": "{file:.opencode/prompts/scorer.md}",
"permission": {
"edit": "deny",
"bash": "ask",
"webfetch": "deny",
"websearch": "deny"
}
},
"reviewer": {
"mode": "subagent",
"description": "Reviews scoring results, privacy boundaries, and proposed prompt or rubric changes.",
"prompt": "{file:.opencode/prompts/reviewer.md}",
"permission": {
"edit": "deny",
"bash": "ask",
"webfetch": "deny",
"websearch": "deny"
}
}
},
"watcher": {
"ignore": [
"node_modules/**",
"evals/reports/**",
"data/**",
"private/**",
"screenshots/**",
"raw-pages/**"
]
}
}