opencode-autoresearch 3.13.2 → 3.14.1

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.
Files changed (71) hide show
  1. package/.opencode-plugin/plugin.json +1 -1
  2. package/INSTALL.md +52 -2
  3. package/README.md +5 -3
  4. package/VERSION +1 -1
  5. package/dist/cli.js +562 -35
  6. package/dist/cli.js.map +1 -1
  7. package/dist/compaction.d.ts +17 -0
  8. package/dist/compaction.d.ts.map +1 -0
  9. package/dist/compaction.js +175 -0
  10. package/dist/compaction.js.map +1 -0
  11. package/dist/constants.d.ts +3 -1
  12. package/dist/constants.d.ts.map +1 -1
  13. package/dist/constants.js +9 -1
  14. package/dist/constants.js.map +1 -1
  15. package/dist/error-categories.d.ts +12 -0
  16. package/dist/error-categories.d.ts.map +1 -0
  17. package/dist/error-categories.js +137 -0
  18. package/dist/error-categories.js.map +1 -0
  19. package/dist/evidence.d.ts +24 -0
  20. package/dist/evidence.d.ts.map +1 -0
  21. package/dist/evidence.js +82 -0
  22. package/dist/evidence.js.map +1 -0
  23. package/dist/helpers.d.ts +13 -0
  24. package/dist/helpers.d.ts.map +1 -1
  25. package/dist/helpers.js +40 -0
  26. package/dist/helpers.js.map +1 -1
  27. package/dist/index.d.ts +1 -1
  28. package/dist/leaderboard.d.ts +27 -0
  29. package/dist/leaderboard.d.ts.map +1 -0
  30. package/dist/leaderboard.js +195 -0
  31. package/dist/leaderboard.js.map +1 -0
  32. package/dist/memory-manager.d.ts.map +1 -1
  33. package/dist/memory-manager.js +8 -2
  34. package/dist/memory-manager.js.map +1 -1
  35. package/dist/metric-comparator.d.ts +15 -0
  36. package/dist/metric-comparator.d.ts.map +1 -0
  37. package/dist/metric-comparator.js +58 -0
  38. package/dist/metric-comparator.js.map +1 -0
  39. package/dist/run-manager.d.ts +1 -0
  40. package/dist/run-manager.d.ts.map +1 -1
  41. package/dist/run-manager.js +41 -14
  42. package/dist/run-manager.js.map +1 -1
  43. package/dist/serialize.d.ts +8 -0
  44. package/dist/serialize.d.ts.map +1 -0
  45. package/dist/serialize.js +50 -0
  46. package/dist/serialize.js.map +1 -0
  47. package/dist/strategy-pack.d.ts +31 -0
  48. package/dist/strategy-pack.d.ts.map +1 -0
  49. package/dist/strategy-pack.js +90 -0
  50. package/dist/strategy-pack.js.map +1 -0
  51. package/dist/subagent-pool.d.ts.map +1 -1
  52. package/dist/subagent-pool.js +22 -14
  53. package/dist/subagent-pool.js.map +1 -1
  54. package/dist/task-queue.d.ts +36 -0
  55. package/dist/task-queue.d.ts.map +1 -0
  56. package/dist/task-queue.js +65 -0
  57. package/dist/task-queue.js.map +1 -0
  58. package/dist/types.d.ts +45 -2
  59. package/dist/types.d.ts.map +1 -1
  60. package/dist/verifier-parser.d.ts.map +1 -1
  61. package/dist/verifier-parser.js +3 -1
  62. package/dist/verifier-parser.js.map +1 -1
  63. package/dist/whats-new.d.ts +12 -0
  64. package/dist/whats-new.d.ts.map +1 -0
  65. package/dist/whats-new.js +106 -0
  66. package/dist/whats-new.js.map +1 -0
  67. package/dist/worker.d.ts +11 -0
  68. package/dist/worker.d.ts.map +1 -0
  69. package/dist/worker.js +75 -0
  70. package/dist/worker.js.map +1 -0
  71. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoresearch",
3
- "version": "3.13.2",
3
+ "version": "3.14.1",
4
4
  "description": "Auto Research for OpenCode. Run a structured autonomous iteration loop with a standing subagent pool.",
5
5
  "author": {
6
6
  "name": "Maleick",
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.13.2` release tag:
18
+ Paste this one line into OpenCode to install and verify Auto Research. This URL is pinned to the immutable `v3.14.1` release tag:
19
19
 
20
20
  ```text
21
- Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.13.2/INSTALL.md
21
+ Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.14.1/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.13.2-58a6ff?style=flat" alt="v3.13.2">
8
+ <img src="https://img.shields.io/badge/version-v3.14.1-58a6ff?style=flat" alt="v3.14.1">
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.13.2` release instructions:
102
+ For OpenCode, paste this one-line install prompt into your agent. This URL is pinned to the immutable `v3.14.1` release instructions:
103
103
 
104
104
  ```text
105
- Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.13.2/INSTALL.md
105
+ Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.14.1/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.13.2
1
+ 3.14.1