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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +15 -15
package/README.md CHANGED
@@ -1,17 +1,18 @@
1
1
  # CoDev Code
2
2
 
3
- The AI coding agent of the CoDev ecosystem — a fork of [opencode](https://github.com/anomalyco/opencode).
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
- codev install
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-code
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 coding agent of the CoDev ecosystem (a fork of opencode)",
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-code": "./bin/opencode.exe"
9
+ "codev": "./bin/opencode.exe"
10
10
  },
11
11
  "scripts": {
12
12
  "postinstall": "node ./postinstall.mjs"
13
13
  },
14
- "version": "1.17.14",
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.14",
27
- "codev-code-darwin-x64-baseline": "1.17.14",
28
- "codev-code-windows-x64": "1.17.14",
29
- "codev-code-linux-arm64": "1.17.14",
30
- "codev-code-windows-x64-baseline": "1.17.14",
31
- "codev-code-linux-x64-musl": "1.17.14",
32
- "codev-code-linux-x64-baseline": "1.17.14",
33
- "codev-code-linux-x64": "1.17.14",
34
- "codev-code-darwin-x64": "1.17.14",
35
- "codev-code-windows-arm64": "1.17.14",
36
- "codev-code-linux-x64-baseline-musl": "1.17.14",
37
- "codev-code-linux-arm64-musl": "1.17.14"
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
  }