codev-code 1.18.3-1 → 1.18.4-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 +15 -1
  2. package/package.json +14 -18
package/README.md CHANGED
@@ -1,3 +1,17 @@
1
1
  # CoDev Code
2
2
 
3
- Whatever I don't like about the upstream, I'll fix here—and push back upstream because I'm not a selfish brick.
3
+ ## Install
4
+
5
+ ```sh
6
+ npm i -g codev-code
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ cd your-project
13
+ codev
14
+ ```
15
+
16
+ This opens the interactive terminal UI. Run `codev --help` for the full
17
+ command list, or `codev run "..."` for non-interactive use.
package/package.json CHANGED
@@ -1,17 +1,13 @@
1
1
  {
2
2
  "name": "codev-code",
3
- "description": "Just another AI agent harness",
4
- "repository": {
5
- "type": "git",
6
- "url": "git+https://github.com/quickbeard/codev-code.git"
7
- },
3
+ "description": "It's the AI coding agent.",
8
4
  "bin": {
9
5
  "codev": "./bin/codev.exe"
10
6
  },
11
7
  "scripts": {
12
8
  "postinstall": "node ./postinstall.mjs"
13
9
  },
14
- "version": "1.18.3-1",
10
+ "version": "1.18.4-1",
15
11
  "license": "MIT",
16
12
  "os": [
17
13
  "darwin",
@@ -23,17 +19,17 @@
23
19
  "x64"
24
20
  ],
25
21
  "optionalDependencies": {
26
- "codev-code-darwin-arm64": "1.18.3-1",
27
- "codev-code-darwin-x64-baseline": "1.18.3-1",
28
- "codev-code-windows-x64": "1.18.3-1",
29
- "codev-code-linux-arm64": "1.18.3-1",
30
- "codev-code-windows-x64-baseline": "1.18.3-1",
31
- "codev-code-linux-x64-musl": "1.18.3-1",
32
- "codev-code-linux-x64-baseline": "1.18.3-1",
33
- "codev-code-linux-x64": "1.18.3-1",
34
- "codev-code-darwin-x64": "1.18.3-1",
35
- "codev-code-windows-arm64": "1.18.3-1",
36
- "codev-code-linux-x64-baseline-musl": "1.18.3-1",
37
- "codev-code-linux-arm64-musl": "1.18.3-1"
22
+ "codev-code-darwin-arm64": "1.18.4-1",
23
+ "codev-code-darwin-x64-baseline": "1.18.4-1",
24
+ "codev-code-windows-x64": "1.18.4-1",
25
+ "codev-code-linux-arm64": "1.18.4-1",
26
+ "codev-code-windows-x64-baseline": "1.18.4-1",
27
+ "codev-code-linux-x64-musl": "1.18.4-1",
28
+ "codev-code-linux-x64-baseline": "1.18.4-1",
29
+ "codev-code-linux-x64": "1.18.4-1",
30
+ "codev-code-darwin-x64": "1.18.4-1",
31
+ "codev-code-windows-arm64": "1.18.4-1",
32
+ "codev-code-linux-x64-baseline-musl": "1.18.4-1",
33
+ "codev-code-linux-arm64-musl": "1.18.4-1"
38
34
  }
39
35
  }