@kilocode/cli 0.0.1-alpha.0 → 0.0.1-alpha.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 +14 -0
- package/index.js +2 -0
- package/package.json +3 -12
package/README.md
CHANGED
|
@@ -8,6 +8,20 @@ Terminal User Interface for Kilo Code
|
|
|
8
8
|
npm install -g @kilocode/cli
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
Then, make sure you place your Kilo Code API token in the CLI config:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
kilocode config # this opens up your editor
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
You can find your Kilo Code API token on your profile page at [app.kilocode.ai](https://app.kilocode.ai), and place it in the `kilocodeToken` field in the CLI config.
|
|
18
|
+
|
|
19
|
+
## Known Issues
|
|
20
|
+
|
|
21
|
+
### Outdated dependency warnings
|
|
22
|
+
|
|
23
|
+
When installing Kilo Code CLI you'll be greeted by some scary looking dependency deprecation warnings. We're aware of the issue and will resolve it shortly.
|
|
24
|
+
|
|
11
25
|
## Usage
|
|
12
26
|
|
|
13
27
|
### Interactive Mode
|
package/index.js
CHANGED
|
@@ -331,6 +331,8 @@ var init_logs = __esm({
|
|
|
331
331
|
return;
|
|
332
332
|
}
|
|
333
333
|
try {
|
|
334
|
+
const logDir = path2.dirname(this.logFilePath);
|
|
335
|
+
fs2.ensureDirSync(logDir);
|
|
334
336
|
const logLine = this.formatLogEntryForFile(entry) + "\n";
|
|
335
337
|
appendFileSync(this.logFilePath, logLine, "utf8");
|
|
336
338
|
} catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kilocode/cli",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.1",
|
|
4
4
|
"description": "Terminal User Interface for Kilo Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -115,21 +115,12 @@
|
|
|
115
115
|
"engines": {
|
|
116
116
|
"node": ">=20.19.2"
|
|
117
117
|
},
|
|
118
|
-
"keywords": [
|
|
119
|
-
"cli",
|
|
120
|
-
"tui",
|
|
121
|
-
"terminal",
|
|
122
|
-
"ai",
|
|
123
|
-
"assistant",
|
|
124
|
-
"kilocode",
|
|
125
|
-
"kilo",
|
|
126
|
-
"ink"
|
|
127
|
-
],
|
|
118
|
+
"keywords": ["cli", "tui", "terminal", "ai", "assistant", "kilocode", "kilo", "ink"],
|
|
128
119
|
"author": "Kilo Code",
|
|
129
120
|
"license": "Apache-2.0",
|
|
130
121
|
"repository": {
|
|
131
122
|
"type": "git",
|
|
132
|
-
"url": "
|
|
123
|
+
"url": "https://github.com/kilo-org/kilocode.git",
|
|
133
124
|
"directory": "cli"
|
|
134
125
|
},
|
|
135
126
|
"bugs": {
|