codev-code 1.17.14 → 1.17.16-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.
- package/README.md +4 -3
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# CoDev Code
|
|
2
2
|
|
|
3
|
-
The AI
|
|
3
|
+
The AI agent harness.
|
|
4
4
|
|
|
5
5
|
The recommended install path is the CoDev hub, which also wires up the AI gateway:
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
8
|
npm install -g codev-ai
|
|
9
|
-
|
|
9
|
+
codevhub install
|
|
10
|
+
codev
|
|
10
11
|
```
|
|
11
12
|
|
|
12
13
|
Direct install:
|
|
13
14
|
|
|
14
15
|
```sh
|
|
15
16
|
npm install -g codev-code
|
|
16
|
-
codev
|
|
17
|
+
codev
|
|
17
18
|
```
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codev-code",
|
|
3
|
-
"description": "CoDev Code — the AI
|
|
3
|
+
"description": "CoDev Code — the AI agent harness",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/quickbeard/codev-code.git"
|
|
7
7
|
},
|
|
8
8
|
"bin": {
|
|
9
|
-
"codev
|
|
9
|
+
"codev": "./bin/opencode.exe"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"postinstall": "node ./postinstall.mjs"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.17.
|
|
14
|
+
"version": "1.17.16-1",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"os": [
|
|
17
17
|
"darwin",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"x64"
|
|
24
24
|
],
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"codev-code-darwin-arm64": "1.17.
|
|
27
|
-
"codev-code-darwin-x64-baseline": "1.17.
|
|
28
|
-
"codev-code-windows-x64": "1.17.
|
|
29
|
-
"codev-code-linux-arm64": "1.17.
|
|
30
|
-
"codev-code-windows-x64-baseline": "1.17.
|
|
31
|
-
"codev-code-linux-x64-musl": "1.17.
|
|
32
|
-
"codev-code-linux-x64-baseline": "1.17.
|
|
33
|
-
"codev-code-linux-x64": "1.17.
|
|
34
|
-
"codev-code-darwin-x64": "1.17.
|
|
35
|
-
"codev-code-windows-arm64": "1.17.
|
|
36
|
-
"codev-code-linux-x64-baseline-musl": "1.17.
|
|
37
|
-
"codev-code-linux-arm64-musl": "1.17.
|
|
26
|
+
"codev-code-darwin-arm64": "1.17.16-1",
|
|
27
|
+
"codev-code-darwin-x64-baseline": "1.17.16-1",
|
|
28
|
+
"codev-code-windows-x64": "1.17.16-1",
|
|
29
|
+
"codev-code-linux-arm64": "1.17.16-1",
|
|
30
|
+
"codev-code-windows-x64-baseline": "1.17.16-1",
|
|
31
|
+
"codev-code-linux-x64-musl": "1.17.16-1",
|
|
32
|
+
"codev-code-linux-x64-baseline": "1.17.16-1",
|
|
33
|
+
"codev-code-linux-x64": "1.17.16-1",
|
|
34
|
+
"codev-code-darwin-x64": "1.17.16-1",
|
|
35
|
+
"codev-code-windows-arm64": "1.17.16-1",
|
|
36
|
+
"codev-code-linux-x64-baseline-musl": "1.17.16-1",
|
|
37
|
+
"codev-code-linux-arm64-musl": "1.17.16-1"
|
|
38
38
|
}
|
|
39
39
|
}
|