job-forge 2.14.5 → 2.14.6
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.
- package/.codex/config.toml +0 -5
- package/.cursor/rules/main.mdc +2 -2
- package/AGENTS.md +2 -2
- package/CLAUDE.md +2 -2
- package/iso/instructions.md +2 -2
- package/package.json +2 -2
package/.codex/config.toml
CHANGED
|
@@ -15,11 +15,6 @@ model_reasoning_effort = "high"
|
|
|
15
15
|
model = "gpt-5.4-nano"
|
|
16
16
|
model_provider = "openai"
|
|
17
17
|
|
|
18
|
-
[model_providers.openai]
|
|
19
|
-
name = "OpenAI"
|
|
20
|
-
base_url = "https://api.openai.com/v1"
|
|
21
|
-
env_key = "OPENAI_API_KEY"
|
|
22
|
-
|
|
23
18
|
[mcp_servers.geometra]
|
|
24
19
|
command = "npx"
|
|
25
20
|
args = ["-y", "@geometra/mcp"]
|
package/.cursor/rules/main.mdc
CHANGED
|
@@ -304,7 +304,7 @@ Mode routing is specified in the top-level **## Routing** section. Each mode is
|
|
|
304
304
|
|
|
305
305
|
## Offer Verification -- MANDATORY
|
|
306
306
|
|
|
307
|
-
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (
|
|
307
|
+
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (The JD extraction section at the top of `modes/auto-pipeline.md` and its "at most once per session" rule are the detailed contract.)
|
|
308
308
|
|
|
309
309
|
**When Geometra MCP is available** (interactive sessions), ALWAYS use it to verify offers:
|
|
310
310
|
1. `geometra_connect` to the URL (via proxy)
|
|
@@ -325,7 +325,7 @@ Pick tools by name directly — reduces unnecessary tool discovery:
|
|
|
325
325
|
|
|
326
326
|
| Task | Preferred tools |
|
|
327
327
|
|------|------------------|
|
|
328
|
-
| JD from URL | Greenhouse boards API when the URL matches (see `modes/auto-pipeline.md`
|
|
328
|
+
| JD from URL | Greenhouse boards API when the URL matches (see JD extraction in `modes/auto-pipeline.md`) → else `geometra_connect` + `geometra_page_model` → else WebFetch → WebSearch last |
|
|
329
329
|
| Offer still live? | Same as JD when Geometra is available; else WebFetch per above |
|
|
330
330
|
| One apply subagent (single job) | One `geometra_connect` per job URL; reuse `sessionId` through schema + fill; submit via atomic `geometra_run_actions` per `modes/apply.md` [H1]. Do **not** `geometra_disconnect` between `geometra_form_schema` and submit on the same form unless recovery requires it |
|
|
331
331
|
| Chromium pool between orchestrator dispatch rounds | `geometra_list_sessions` + `geometra_disconnect({ closeBrowser: true })` per Hard limit [H3] — orchestrator-only; not a substitute for finishing the in-subagent form flow |
|
package/AGENTS.md
CHANGED
|
@@ -299,7 +299,7 @@ Mode routing is specified in the top-level **## Routing** section. Each mode is
|
|
|
299
299
|
|
|
300
300
|
## Offer Verification -- MANDATORY
|
|
301
301
|
|
|
302
|
-
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (
|
|
302
|
+
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (The JD extraction section at the top of `modes/auto-pipeline.md` and its "at most once per session" rule are the detailed contract.)
|
|
303
303
|
|
|
304
304
|
**When Geometra MCP is available** (interactive sessions), ALWAYS use it to verify offers:
|
|
305
305
|
1. `geometra_connect` to the URL (via proxy)
|
|
@@ -320,7 +320,7 @@ Pick tools by name directly — reduces unnecessary tool discovery:
|
|
|
320
320
|
|
|
321
321
|
| Task | Preferred tools |
|
|
322
322
|
|------|------------------|
|
|
323
|
-
| JD from URL | Greenhouse boards API when the URL matches (see `modes/auto-pipeline.md`
|
|
323
|
+
| JD from URL | Greenhouse boards API when the URL matches (see JD extraction in `modes/auto-pipeline.md`) → else `geometra_connect` + `geometra_page_model` → else WebFetch → WebSearch last |
|
|
324
324
|
| Offer still live? | Same as JD when Geometra is available; else WebFetch per above |
|
|
325
325
|
| One apply subagent (single job) | One `geometra_connect` per job URL; reuse `sessionId` through schema + fill; submit via atomic `geometra_run_actions` per `modes/apply.md` [H1]. Do **not** `geometra_disconnect` between `geometra_form_schema` and submit on the same form unless recovery requires it |
|
|
326
326
|
| Chromium pool between orchestrator dispatch rounds | `geometra_list_sessions` + `geometra_disconnect({ closeBrowser: true })` per Hard limit [H3] — orchestrator-only; not a substitute for finishing the in-subagent form flow |
|
package/CLAUDE.md
CHANGED
|
@@ -299,7 +299,7 @@ Mode routing is specified in the top-level **## Routing** section. Each mode is
|
|
|
299
299
|
|
|
300
300
|
## Offer Verification -- MANDATORY
|
|
301
301
|
|
|
302
|
-
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (
|
|
302
|
+
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (The JD extraction section at the top of `modes/auto-pipeline.md` and its "at most once per session" rule are the detailed contract.)
|
|
303
303
|
|
|
304
304
|
**When Geometra MCP is available** (interactive sessions), ALWAYS use it to verify offers:
|
|
305
305
|
1. `geometra_connect` to the URL (via proxy)
|
|
@@ -320,7 +320,7 @@ Pick tools by name directly — reduces unnecessary tool discovery:
|
|
|
320
320
|
|
|
321
321
|
| Task | Preferred tools |
|
|
322
322
|
|------|------------------|
|
|
323
|
-
| JD from URL | Greenhouse boards API when the URL matches (see `modes/auto-pipeline.md`
|
|
323
|
+
| JD from URL | Greenhouse boards API when the URL matches (see JD extraction in `modes/auto-pipeline.md`) → else `geometra_connect` + `geometra_page_model` → else WebFetch → WebSearch last |
|
|
324
324
|
| Offer still live? | Same as JD when Geometra is available; else WebFetch per above |
|
|
325
325
|
| One apply subagent (single job) | One `geometra_connect` per job URL; reuse `sessionId` through schema + fill; submit via atomic `geometra_run_actions` per `modes/apply.md` [H1]. Do **not** `geometra_disconnect` between `geometra_form_schema` and submit on the same form unless recovery requires it |
|
|
326
326
|
| Chromium pool between orchestrator dispatch rounds | `geometra_list_sessions` + `geometra_disconnect({ closeBrowser: true })` per Hard limit [H3] — orchestrator-only; not a substitute for finishing the in-subagent form flow |
|
package/iso/instructions.md
CHANGED
|
@@ -299,7 +299,7 @@ Mode routing is specified in the top-level **## Routing** section. Each mode is
|
|
|
299
299
|
|
|
300
300
|
## Offer Verification -- MANDATORY
|
|
301
301
|
|
|
302
|
-
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (
|
|
302
|
+
**Read local artifacts before the network.** If `reports/` already contains this posting URL (or company+role with a full JD in the body), **Read** that report for verification or evaluation instead of WebFetch/Geometra. If `data/pipeline.md` or `jds/` points at frozen JD text (`local:jds/{file}` or pasted blocks), **Read** that first. Reuse JD text already in the same conversation — do not fetch the same URL twice. (The JD extraction section at the top of `modes/auto-pipeline.md` and its "at most once per session" rule are the detailed contract.)
|
|
303
303
|
|
|
304
304
|
**When Geometra MCP is available** (interactive sessions), ALWAYS use it to verify offers:
|
|
305
305
|
1. `geometra_connect` to the URL (via proxy)
|
|
@@ -320,7 +320,7 @@ Pick tools by name directly — reduces unnecessary tool discovery:
|
|
|
320
320
|
|
|
321
321
|
| Task | Preferred tools |
|
|
322
322
|
|------|------------------|
|
|
323
|
-
| JD from URL | Greenhouse boards API when the URL matches (see `modes/auto-pipeline.md`
|
|
323
|
+
| JD from URL | Greenhouse boards API when the URL matches (see JD extraction in `modes/auto-pipeline.md`) → else `geometra_connect` + `geometra_page_model` → else WebFetch → WebSearch last |
|
|
324
324
|
| Offer still live? | Same as JD when Geometra is available; else WebFetch per above |
|
|
325
325
|
| One apply subagent (single job) | One `geometra_connect` per job URL; reuse `sessionId` through schema + fill; submit via atomic `geometra_run_actions` per `modes/apply.md` [H1]. Do **not** `geometra_disconnect` between `geometra_form_schema` and submit on the same form unless recovery requires it |
|
|
326
326
|
| Chromium pool between orchestrator dispatch rounds | `geometra_list_sessions` + `geometra_disconnect({ closeBrowser: true })` per Hard limit [H3] — orchestrator-only; not a substitute for finishing the in-subagent form flow |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "job-forge",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.6",
|
|
4
4
|
"description": "AI-powered job search pipeline built on opencode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@razroo/iso": "^0.2.5",
|
|
91
91
|
"@razroo/iso-harness": "^0.6.1",
|
|
92
|
-
"@razroo/iso-route": "^0.5.
|
|
92
|
+
"@razroo/iso-route": "^0.5.2",
|
|
93
93
|
"@razroo/iso-trace": "^0.3.1",
|
|
94
94
|
"@razroo/opencode-model-fallback": "^0.3.1"
|
|
95
95
|
}
|