job-forge 2.8.0 → 2.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,11 +16,6 @@ tools:
16
16
  gmail_get_message: true
17
17
  temperature: 0.1
18
18
  reasoningEffort: minimal
19
- fallback_models:
20
- - opencode/minimax-m2.5-free
21
- - opencode/nemotron-3-super-free
22
- - opencode-go/minimax-m2.7
23
- - opencode/glm-5.1
24
19
  ---
25
20
 
26
21
  You are the @general-free subagent. You run on a free-tier model, which means the orchestrator has delegated this task to you **specifically because the work is procedural**: deterministic steps, scripted outputs, no nuanced writing required.
@@ -7,8 +7,6 @@ tools:
7
7
  gmail_*: false
8
8
  temperature: 0.3
9
9
  reasoningEffort: medium
10
- fallback_models:
11
- - opencode/claude-haiku-4-5
12
10
  ---
13
11
 
14
12
  You are the @general-paid subagent. The orchestrator delegated this task to you because it requires quality writing or judgment — the kind of work `@general-free` isn't well-suited for.
@@ -13,9 +13,6 @@ tools:
13
13
  task: false
14
14
  temperature: 0
15
15
  reasoningEffort: none
16
- fallback_models:
17
- - opencode/big-pickle
18
- - opencode/nemotron-3-super-free
19
16
  ---
20
17
 
21
18
  You are the @glm-minimal subagent. You handle narrow, one-shot extractions where the orchestrator has pre-digested the context and just needs you to do a specific transform.
@@ -1,19 +1,14 @@
1
1
  ---
2
2
  description: Procedural worker on free-tier model. Use for form filling via Geometra, tracker updates, TSV merges, scan dedup, OTP retrieval, and other mechanical/scripted tasks where quality-sensitive text generation is NOT required.
3
3
  targets:
4
- # Claude Code / Cursor / Codex: no inline override iso-route's resolved
5
- # role map stamps model from models.yaml (role name = filename slug).
6
- # OpenCode keeps its provider-specific model identifier inline.
4
+ # No inline model: iso-route 0.2.0+ stamps provider/model from the
5
+ # per-target resolution in models.yaml (role = filename slug). Claude
6
+ # Code reads .claude/iso-route.resolved.json; OpenCode reads
7
+ # opencode.json's agent.<slug>.model (iso-harness 0.6.0+).
7
8
  opencode:
8
9
  mode: subagent
9
- model: opencode/big-pickle
10
10
  temperature: 0.1
11
11
  reasoningEffort: minimal
12
- fallback_models:
13
- - opencode/minimax-m2.5-free
14
- - opencode/nemotron-3-super-free
15
- - opencode-go/minimax-m2.7
16
- - opencode/glm-5.1
17
12
  tools:
18
13
  geometra_connect: true
19
14
  geometra_page_model: true
@@ -1,16 +1,14 @@
1
1
  ---
2
2
  description: Quality-sensitive worker on paid model. Use for offer evaluation narratives (Blocks A-F), cover letter generation, "Why X?" form answers, interview STAR stories, and other tasks where writing quality and judgment matter.
3
3
  targets:
4
- # Claude Code / Cursor / Codex: no inline override iso-route's resolved
5
- # role map stamps model from models.yaml (role name = filename slug).
6
- # OpenCode keeps its provider-specific model identifier inline.
4
+ # No inline model: iso-route 0.2.0+ stamps provider/model from the
5
+ # per-target resolution in models.yaml (role = filename slug). Claude
6
+ # Code reads .claude/iso-route.resolved.json; OpenCode reads
7
+ # opencode.json's agent.<slug>.model (iso-harness 0.6.0+).
7
8
  opencode:
8
9
  mode: subagent
9
- model: opencode/glm-5.1
10
10
  temperature: 0.3
11
11
  reasoningEffort: medium
12
- fallback_models:
13
- - opencode/claude-haiku-4-5
14
12
  tools:
15
13
  geometra_*: false
16
14
  gmail_*: false
@@ -1,17 +1,14 @@
1
1
  ---
2
2
  description: Narrow-scope extractor on free-tier model. Use for single-purpose tasks where the orchestrator passes the exact input and expects a small, structured output — e.g., "extract these 8 fields from this JD text" or "parse this form schema into a label→type map". NOT for multi-step workflows.
3
3
  targets:
4
- # Claude Code / Cursor / Codex: no inline override iso-route's resolved
5
- # role map stamps model from models.yaml (role name = filename slug).
6
- # OpenCode keeps its provider-specific model identifier inline.
4
+ # No inline model: iso-route 0.2.0+ stamps provider/model from the
5
+ # per-target resolution in models.yaml (role = filename slug). Claude
6
+ # Code reads .claude/iso-route.resolved.json; OpenCode reads
7
+ # opencode.json's agent.<slug>.model (iso-harness 0.6.0+).
7
8
  opencode:
8
9
  mode: subagent
9
- model: opencode/minimax-m2.5-free
10
10
  temperature: 0
11
11
  reasoningEffort: none
12
- fallback_models:
13
- - opencode/big-pickle
14
- - opencode/nemotron-3-super-free
15
12
  tools:
16
13
  geometra_*: false
17
14
  gmail_*: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "job-forge",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "AI-powered job search pipeline built on opencode",
5
5
  "type": "module",
6
6
  "bin": {
@@ -82,8 +82,8 @@
82
82
  "playwright": "^1.58.1"
83
83
  },
84
84
  "devDependencies": {
85
- "@razroo/iso": "^0.2.2",
86
- "@razroo/iso-harness": "^0.5.0",
85
+ "@razroo/iso": "^0.2.3",
86
+ "@razroo/iso-harness": "^0.6.0",
87
87
  "@razroo/iso-route": "^0.2.0",
88
88
  "@razroo/iso-trace": "^0.1.0"
89
89
  }