opencode-autoresearch 3.18.1 → 3.18.2
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 +7 -7
- package/README.md +3 -3
- package/VERSION +1 -1
- package/dist/cli-commands.d.ts +29 -0
- package/dist/cli-commands.d.ts.map +1 -0
- package/dist/cli-commands.js +1389 -0
- package/dist/cli-commands.js.map +1 -0
- package/dist/cli-helpers.d.ts +32 -0
- package/dist/cli-helpers.d.ts.map +1 -0
- package/dist/cli-helpers.js +243 -0
- package/dist/cli-helpers.js.map +1 -0
- package/dist/cli.js +42 -1907
- package/dist/cli.js.map +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/index.d.ts +1 -1
- 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.
|
|
18
|
+
Paste this one line into OpenCode to install and verify Auto Research. This URL is pinned to the immutable `v3.18.2` release tag:
|
|
19
19
|
|
|
20
20
|
```text
|
|
21
|
-
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.18.
|
|
21
|
+
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.18.2/INSTALL.md
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Prerequisites
|
|
@@ -85,25 +85,25 @@ For reproducible installs in CI or production environments, pin to a specific ve
|
|
|
85
85
|
**Plugin array (pinned):**
|
|
86
86
|
```json
|
|
87
87
|
{
|
|
88
|
-
"plugin": ["opencode-autoresearch@3.
|
|
88
|
+
"plugin": ["opencode-autoresearch@3.14.2"]
|
|
89
89
|
}
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
**npm global (pinned):**
|
|
93
93
|
```bash
|
|
94
|
-
npm install -g opencode-autoresearch@3.
|
|
94
|
+
npm install -g opencode-autoresearch@3.14.2
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
**npm global (with lockfile):**
|
|
98
98
|
```bash
|
|
99
|
-
npm install -g opencode-autoresearch@3.
|
|
99
|
+
npm install -g opencode-autoresearch@3.14.2
|
|
100
100
|
npm shrinkwrap # Creates npm-shrinkwrap.json for reproducibility
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
**Verify package integrity:**
|
|
104
104
|
```bash
|
|
105
|
-
npm view opencode-autoresearch@3.
|
|
106
|
-
npm pack opencode-autoresearch@3.
|
|
105
|
+
npm view opencode-autoresearch@3.14.2 dist.shasum
|
|
106
|
+
npm pack opencode-autoresearch@3.14.2 --dry-run
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
### Upgrade and Rollback
|
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.18.
|
|
8
|
+
<img src="https://img.shields.io/badge/version-v3.18.2-58a6ff?style=flat" alt="v3.18.2">
|
|
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.18.
|
|
102
|
+
For OpenCode, paste this one-line install prompt into your agent. This URL is pinned to the immutable `v3.18.2` release instructions:
|
|
103
103
|
|
|
104
104
|
```text
|
|
105
|
-
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.18.
|
|
105
|
+
Fetch and follow instructions from https://raw.githubusercontent.com/Maleick/AutoResearch/refs/tags/v3.18.2/INSTALL.md
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
Recommended plugin install in `opencode.json`:
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.18.
|
|
1
|
+
3.18.2
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export type CommandGroup = Record<string, string | string[]>;
|
|
2
|
+
export declare function handleWizard(grouped: CommandGroup, _useJson: boolean): Promise<number>;
|
|
3
|
+
export declare function handleInit(grouped: CommandGroup, verbose: boolean, dryRun: boolean, _useJson: boolean): Promise<number>;
|
|
4
|
+
export declare function handleStatus(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
5
|
+
export declare function handleExplain(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
6
|
+
export declare function handleHistory(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
7
|
+
export declare function handleScores(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
8
|
+
export declare function handleScore(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
9
|
+
export declare function handleConfig(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
10
|
+
export declare function handleContract(useJson: boolean): Promise<number>;
|
|
11
|
+
export declare function handleSummary(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
12
|
+
export declare function handleValidate(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
13
|
+
export declare function handleReport(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
14
|
+
export declare function handleSuggest(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
15
|
+
export declare function handleExport(grouped: CommandGroup): Promise<number>;
|
|
16
|
+
export declare function handleCompletion(grouped: CommandGroup): Promise<number>;
|
|
17
|
+
export declare function handleLaunch(grouped: CommandGroup, dryRun: boolean): Promise<number>;
|
|
18
|
+
export declare function handleComplete(grouped: CommandGroup, dryRun: boolean): Promise<number>;
|
|
19
|
+
export declare function handleStop(grouped: CommandGroup, dryRun: boolean): Promise<number>;
|
|
20
|
+
export declare function handleResume(grouped: CommandGroup, dryRun: boolean): Promise<number>;
|
|
21
|
+
export declare function handleRecord(grouped: CommandGroup, dryRun: boolean): Promise<number>;
|
|
22
|
+
export declare function handleDigest(grouped: CommandGroup, useJson: boolean, dryRun: boolean): Promise<number>;
|
|
23
|
+
export declare function handleDoctor(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
24
|
+
export declare function handleGoal(grouped: CommandGroup, cmdArgs: string[], useJson: boolean, _verbose: boolean, _dryRun: boolean): Promise<number>;
|
|
25
|
+
export declare function handleQueue(grouped: CommandGroup, cmdArgs: string[], useJson: boolean, _dryRun: boolean): Promise<number>;
|
|
26
|
+
export declare function handlePack(grouped: CommandGroup, cmdArgs: string[], useJson: boolean): Promise<number>;
|
|
27
|
+
export declare function handleLeaderboard(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
28
|
+
export declare function handleWorker(grouped: CommandGroup, useJson: boolean): Promise<number>;
|
|
29
|
+
//# sourceMappingURL=cli-commands.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-commands.d.ts","sourceRoot":"","sources":["../src/cli-commands.ts"],"names":[],"mappings":"AA4BA,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC,CAAC;AAG7D,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAqB5F;AAGD,wBAAsB,UAAU,CAC9B,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,GAC1E,OAAO,CAAC,MAAM,CAAC,CAkDjB;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAmD3F;AAGD,wBAAsB,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAiD5F;AAGD,wBAAsB,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CA2C5F;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CA6G3F;AAGD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CA0C1F;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAoC3F;AAGD,wBAAsB,cAAc,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAiDtE;AAGD,wBAAsB,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAyC5F;AAGD,wBAAsB,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CA0B7F;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAgI3F;AAGD,wBAAsB,aAAa,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAqD5F;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC,CAqDzE;AAGD,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC,CAyB7E;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAkD1F;AAGD,wBAAsB,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAM5F;AAGD,wBAAsB,UAAU,CAAC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAMxF;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAM1F;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAoD1F;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAiD5G;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CA4E3F;AAGD,wBAAsB,UAAU,CAC9B,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,GAC9F,OAAO,CAAC,MAAM,CAAC,CAiIjB;AAGD,wBAAsB,WAAW,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAgD/H;AAGD,wBAAsB,UAAU,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAqC5G;AAGD,wBAAsB,iBAAiB,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAShG;AAGD,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,CAyB3F"}
|