codev-code 1.18.3-1 → 1.18.3-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/README.md +15 -1
- package/package.json +14 -18
package/README.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
1
|
# CoDev Code
|
|
2
2
|
|
|
3
|
-
|
|
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": "
|
|
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-
|
|
10
|
+
"version": "1.18.3-2",
|
|
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-
|
|
27
|
-
"codev-code-darwin-x64-baseline": "1.18.3-
|
|
28
|
-
"codev-code-windows-x64": "1.18.3-
|
|
29
|
-
"codev-code-linux-arm64": "1.18.3-
|
|
30
|
-
"codev-code-windows-x64-baseline": "1.18.3-
|
|
31
|
-
"codev-code-linux-x64-musl": "1.18.3-
|
|
32
|
-
"codev-code-linux-x64-baseline": "1.18.3-
|
|
33
|
-
"codev-code-linux-x64": "1.18.3-
|
|
34
|
-
"codev-code-darwin-x64": "1.18.3-
|
|
35
|
-
"codev-code-windows-arm64": "1.18.3-
|
|
36
|
-
"codev-code-linux-x64-baseline-musl": "1.18.3-
|
|
37
|
-
"codev-code-linux-arm64-musl": "1.18.3-
|
|
22
|
+
"codev-code-darwin-arm64": "1.18.3-2",
|
|
23
|
+
"codev-code-darwin-x64-baseline": "1.18.3-2",
|
|
24
|
+
"codev-code-windows-x64": "1.18.3-2",
|
|
25
|
+
"codev-code-linux-arm64": "1.18.3-2",
|
|
26
|
+
"codev-code-windows-x64-baseline": "1.18.3-2",
|
|
27
|
+
"codev-code-linux-x64-musl": "1.18.3-2",
|
|
28
|
+
"codev-code-linux-x64-baseline": "1.18.3-2",
|
|
29
|
+
"codev-code-linux-x64": "1.18.3-2",
|
|
30
|
+
"codev-code-darwin-x64": "1.18.3-2",
|
|
31
|
+
"codev-code-windows-arm64": "1.18.3-2",
|
|
32
|
+
"codev-code-linux-x64-baseline-musl": "1.18.3-2",
|
|
33
|
+
"codev-code-linux-arm64-musl": "1.18.3-2"
|
|
38
34
|
}
|
|
39
35
|
}
|