opencode-autoresearch 3.13.1 → 3.14.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/.opencode-plugin/plugin.json +1 -1
- package/INSTALL.md +52 -2
- package/README.md +5 -3
- package/VERSION +1 -1
- package/dist/cli.js +543 -44
- package/dist/cli.js.map +1 -1
- package/dist/compaction.d.ts +17 -0
- package/dist/compaction.d.ts.map +1 -0
- package/dist/compaction.js +175 -0
- package/dist/compaction.js.map +1 -0
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/error-categories.d.ts +12 -0
- package/dist/error-categories.d.ts.map +1 -0
- package/dist/error-categories.js +137 -0
- package/dist/error-categories.js.map +1 -0
- package/dist/evidence.d.ts +24 -0
- package/dist/evidence.d.ts.map +1 -0
- package/dist/evidence.js +82 -0
- package/dist/evidence.js.map +1 -0
- package/dist/helpers.d.ts +13 -0
- package/dist/helpers.d.ts.map +1 -1
- package/dist/helpers.js +40 -0
- package/dist/helpers.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/leaderboard.d.ts +27 -0
- package/dist/leaderboard.d.ts.map +1 -0
- package/dist/leaderboard.js +195 -0
- package/dist/leaderboard.js.map +1 -0
- package/dist/memory-manager.d.ts.map +1 -1
- package/dist/memory-manager.js +8 -2
- package/dist/memory-manager.js.map +1 -1
- package/dist/metric-comparator.d.ts +15 -0
- package/dist/metric-comparator.d.ts.map +1 -0
- package/dist/metric-comparator.js +58 -0
- package/dist/metric-comparator.js.map +1 -0
- package/dist/run-manager.d.ts.map +1 -1
- package/dist/run-manager.js +18 -11
- package/dist/run-manager.js.map +1 -1
- package/dist/serialize.d.ts +8 -0
- package/dist/serialize.d.ts.map +1 -0
- package/dist/serialize.js +50 -0
- package/dist/serialize.js.map +1 -0
- package/dist/strategy-pack.d.ts +31 -0
- package/dist/strategy-pack.d.ts.map +1 -0
- package/dist/strategy-pack.js +90 -0
- package/dist/strategy-pack.js.map +1 -0
- package/dist/subagent-pool.d.ts.map +1 -1
- package/dist/subagent-pool.js +22 -14
- package/dist/subagent-pool.js.map +1 -1
- package/dist/task-queue.d.ts +36 -0
- package/dist/task-queue.d.ts.map +1 -0
- package/dist/task-queue.js +65 -0
- package/dist/task-queue.js.map +1 -0
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/verifier-parser.d.ts.map +1 -1
- package/dist/verifier-parser.js +3 -1
- package/dist/verifier-parser.js.map +1 -1
- package/dist/whats-new.d.ts +12 -0
- package/dist/whats-new.d.ts.map +1 -0
- package/dist/whats-new.js +106 -0
- package/dist/whats-new.js.map +1 -0
- package/dist/worker.d.ts +11 -0
- package/dist/worker.d.ts.map +1 -0
- package/dist/worker.js +75 -0
- package/dist/worker.js.map +1 -0
- package/package.json +1 -1
package/INSTALL.md
CHANGED
|
@@ -15,10 +15,10 @@ Both runtimes share the same state format (`.autoresearch/state.json`) and CLI (
|
|
|
15
15
|
|
|
16
16
|
### One-Line OpenCode Install
|
|
17
17
|
|
|
18
|
-
Paste this one line into OpenCode to install and verify Auto Research. This URL is pinned to the immutable `v3.
|
|
18
|
+
Paste this one line into OpenCode to install and verify Auto Research. This URL is pinned to the immutable `v3.14.0` release tag:
|
|
19
19
|
|
|
20
20
|
```text
|
|
21
|
-
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.
|
|
21
|
+
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.14.0/INSTALL.md
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Prerequisites
|
|
@@ -78,6 +78,56 @@ npx opencode-autoresearch doctor
|
|
|
78
78
|
|
|
79
79
|
Use the plugin-array install for normal OpenCode usage.
|
|
80
80
|
|
|
81
|
+
### Pinned Installation (Reproducible)
|
|
82
|
+
|
|
83
|
+
For reproducible installs in CI or production environments, pin to a specific version:
|
|
84
|
+
|
|
85
|
+
**Plugin array (pinned):**
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"plugin": ["opencode-autoresearch@3.13.1"]
|
|
89
|
+
}
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
**npm global (pinned):**
|
|
93
|
+
```bash
|
|
94
|
+
npm install -g opencode-autoresearch@3.13.1
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**npm global (with lockfile):**
|
|
98
|
+
```bash
|
|
99
|
+
npm install -g opencode-autoresearch@3.13.1
|
|
100
|
+
npm shrinkwrap # Creates npm-shrinkwrap.json for reproducibility
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**Verify package integrity:**
|
|
104
|
+
```bash
|
|
105
|
+
npm view opencode-autoresearch@3.13.1 dist.shasum
|
|
106
|
+
npm pack opencode-autoresearch@3.13.1 --dry-run
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### Upgrade and Rollback
|
|
110
|
+
|
|
111
|
+
**Upgrade to latest:**
|
|
112
|
+
```bash
|
|
113
|
+
# Plugin array: update version in opencode.json, then restart OpenCode
|
|
114
|
+
# npm global:
|
|
115
|
+
npm install -g opencode-autoresearch@latest
|
|
116
|
+
autoresearch doctor
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
**Rollback to previous version:**
|
|
120
|
+
```bash
|
|
121
|
+
npm install -g opencode-autoresearch@3.12.0
|
|
122
|
+
autoresearch doctor
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**View available versions:**
|
|
126
|
+
```bash
|
|
127
|
+
npm view opencode-autoresearch versions --json
|
|
128
|
+
npm view opencode-autoresearch dist-tags
|
|
129
|
+
```
|
|
130
|
+
|
|
81
131
|
---
|
|
82
132
|
|
|
83
133
|
## Hermes Agent Install
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<img src="https://img.shields.io/badge/version-v3.
|
|
8
|
+
<img src="https://img.shields.io/badge/version-v3.14.0-58a6ff?style=flat" alt="v3.14.0">
|
|
9
9
|
<a href="https://github.com/Maleick/AutoResearch/stargazers"><img src="https://img.shields.io/github/stars/Maleick/AutoResearch?style=flat&color=58a6ff" alt="Stars"></a>
|
|
10
10
|
<a href="https://github.com/Maleick/AutoResearch/commits/main"><img src="https://img.shields.io/github/last-commit/Maleick/AutoResearch?style=flat" alt="Last Commit"></a>
|
|
11
11
|
<a href="https://github.com/Maleick/AutoResearch/releases"><img src="https://img.shields.io/github/v/release/Maleick/AutoResearch?style=flat" alt="Version"></a>
|
|
@@ -99,10 +99,10 @@ See [`skills/autoresearch/references/self-improve-loop.md`](skills/autoresearch/
|
|
|
99
99
|
|
|
100
100
|
### OpenCode
|
|
101
101
|
|
|
102
|
-
For OpenCode, paste this one-line install prompt into your agent. This URL is pinned to the immutable `v3.
|
|
102
|
+
For OpenCode, paste this one-line install prompt into your agent. This URL is pinned to the immutable `v3.14.0` release instructions:
|
|
103
103
|
|
|
104
104
|
```text
|
|
105
|
-
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.
|
|
105
|
+
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.14.0/INSTALL.md
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
Recommended plugin install in `opencode.json`:
|
|
@@ -113,6 +113,8 @@ Recommended plugin install in `opencode.json`:
|
|
|
113
113
|
}
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
+
For reproducible/pinned installs, see [INSTALL.md](INSTALL.md#pinned-installation-reproducible).
|
|
117
|
+
|
|
116
118
|
Restart OpenCode, then run the setup wizard:
|
|
117
119
|
|
|
118
120
|
```text
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.14.0
|