@sorenllm/opencode-forge 0.2.2 → 0.3.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.
- package/README.md +153 -3
- package/dist/index.js +1236 -68
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sorenllm/opencode-forge",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Single general-purpose forge agent for opencode with two orthogonal harnesses: a plan harness (file-backed plans in .opencode/plan/, approve/close confirmation gates, tick discipline, hard write-ban while planning)
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Single general-purpose forge agent for opencode with two orthogonal harnesses and two hang backstops: a plan harness (file-backed plans in .opencode/plan/, approve/close confirmation gates, tick discipline, hard write-ban while planning), a goal harness (autonomous, host-verified objectives in .opencode/goal/), a job supervisor (forge_shell with exit-bound completion — immune to stdio-EOF hangs — idle/success early return, background jobs with poll/log/kill/handoff, exit wakes on session idle), and a builtin-shell hang watchdog (marked timing across all sessions, graded tree-kill with dry-run/off modes, auditable ledger).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -28,7 +28,10 @@
|
|
|
28
28
|
"planning",
|
|
29
29
|
"workflow",
|
|
30
30
|
"single-agent",
|
|
31
|
-
"goal"
|
|
31
|
+
"goal",
|
|
32
|
+
"background-jobs",
|
|
33
|
+
"shell",
|
|
34
|
+
"watchdog"
|
|
32
35
|
],
|
|
33
36
|
"license": "MIT",
|
|
34
37
|
"author": "chengsongren",
|