@fabriccode/cli 7.0.117 → 7.0.119
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 +8 -0
- package/package.json +31 -13
- package/postinstall.mjs +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
The AI coding agent built for the terminal. Generate code from natural language, automate tasks, and run terminal commands -- powered by 500+ AI models.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
Kilo is the all-in-one agentic engineering platform. Build, ship, and iterate faster with the most popular open source coding agent.
|
|
8
|
+
|
|
9
|
+
[Website](https://kilo.ai) · [Install](https://kilo.ai/install) · [IDE](https://kilo.ai/landing/vs-code) · [CLI](https://kilo.ai/cli) · [Docs](https://kilo.ai/docs) · [Models](https://kilo.ai/leaderboard) · [Gateway](https://kilo.ai/gateway) · [Pricing](https://kilo.ai/pricing) · [Kilo Pass](https://kilo.ai/pricing/kilo-pass)
|
|
10
|
+
|
|
11
|
+
[500+ models](https://kilo.ai/leaderboard). One open source agent in [VS Code](https://kilo.ai/vscode-marketplace), [JetBrains](https://plugins.jetbrains.com/plugin/27133-kilo-code), [CLI](https://www.npmjs.com/package/@kilocode/cli), [Slack](https://kilo.ai/slack), and [Cloud](https://kilo.ai/cloud).
|
|
12
|
+
|
|
5
13
|
## Install
|
|
6
14
|
|
|
7
15
|
```bash
|
package/package.json
CHANGED
|
@@ -6,21 +6,39 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "7.0.
|
|
9
|
+
"version": "7.0.119",
|
|
10
10
|
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"cli",
|
|
13
|
+
"tui",
|
|
14
|
+
"terminal",
|
|
15
|
+
"ai",
|
|
16
|
+
"agent",
|
|
17
|
+
"assistant",
|
|
18
|
+
"coding-agent",
|
|
19
|
+
"kilo-code",
|
|
20
|
+
"kilo",
|
|
21
|
+
"opencode",
|
|
22
|
+
"ink",
|
|
23
|
+
"react",
|
|
24
|
+
"copilot",
|
|
25
|
+
"autocomplete",
|
|
26
|
+
"developer-tools"
|
|
27
|
+
],
|
|
28
|
+
"private": false,
|
|
11
29
|
"optionalDependencies": {
|
|
12
|
-
"@fabriccode/cli-linux-arm64-musl": "7.0.
|
|
13
|
-
"@fabriccode/cli-darwin-x64-baseline": "7.0.
|
|
14
|
-
"@fabriccode/cli-windows-arm64": "7.0.
|
|
15
|
-
"@fabriccode/cli-linux-arm64": "7.0.
|
|
16
|
-
"@fabriccode/cli-linux-x64": "7.0.
|
|
17
|
-
"@fabriccode/cli-darwin-arm64": "7.0.
|
|
18
|
-
"@fabriccode/cli-windows-x64": "7.0.
|
|
19
|
-
"@fabriccode/cli-linux-x64-musl": "7.0.
|
|
20
|
-
"@fabriccode/cli-windows-x64-baseline": "7.0.
|
|
21
|
-
"@fabriccode/cli-darwin-x64": "7.0.
|
|
22
|
-
"@fabriccode/cli-linux-x64-baseline-musl": "7.0.
|
|
23
|
-
"@fabriccode/cli-linux-x64-baseline": "7.0.
|
|
30
|
+
"@fabriccode/cli-linux-arm64-musl": "7.0.119",
|
|
31
|
+
"@fabriccode/cli-darwin-x64-baseline": "7.0.119",
|
|
32
|
+
"@fabriccode/cli-windows-arm64": "7.0.119",
|
|
33
|
+
"@fabriccode/cli-linux-arm64": "7.0.119",
|
|
34
|
+
"@fabriccode/cli-linux-x64": "7.0.119",
|
|
35
|
+
"@fabriccode/cli-darwin-arm64": "7.0.119",
|
|
36
|
+
"@fabriccode/cli-windows-x64": "7.0.119",
|
|
37
|
+
"@fabriccode/cli-linux-x64-musl": "7.0.119",
|
|
38
|
+
"@fabriccode/cli-windows-x64-baseline": "7.0.119",
|
|
39
|
+
"@fabriccode/cli-darwin-x64": "7.0.119",
|
|
40
|
+
"@fabriccode/cli-linux-x64-baseline-musl": "7.0.119",
|
|
41
|
+
"@fabriccode/cli-linux-x64-baseline": "7.0.119"
|
|
24
42
|
},
|
|
25
43
|
"repository": {
|
|
26
44
|
"type": "git",
|
package/postinstall.mjs
CHANGED
|
@@ -126,7 +126,7 @@ function findBinary() {
|
|
|
126
126
|
}
|
|
127
127
|
// fabriccode_change end
|
|
128
128
|
|
|
129
|
-
// fabriccode_change start - copy tree-sitter WASM
|
|
129
|
+
// fabriccode_change start - copy runtime resources (tree-sitter WASM) next to cached binary
|
|
130
130
|
function copyTreeSitterResources(binaryPath) {
|
|
131
131
|
const source = path.join(path.dirname(binaryPath), "tree-sitter")
|
|
132
132
|
const target = path.join(__dirname, "bin", "tree-sitter")
|