@polka-codes/cli 0.3.2 → 0.3.3
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 +3 -3
- package/cli.mjs +2 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,13 +25,13 @@ npx @polka-codes/cli
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
# Run interactive session
|
|
28
|
-
polka
|
|
28
|
+
polka-codes
|
|
29
29
|
|
|
30
30
|
# Run specific task
|
|
31
|
-
polka task "improve readme"
|
|
31
|
+
polka-codes task "improve readme"
|
|
32
32
|
|
|
33
33
|
# Create config file
|
|
34
|
-
polka config
|
|
34
|
+
polka-codes config
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Configuration
|
package/cli.mjs
ADDED
package/dist/index.js
CHANGED
|
@@ -36179,7 +36179,7 @@ class CoderAgent extends AgentBase {
|
|
|
36179
36179
|
}
|
|
36180
36180
|
}
|
|
36181
36181
|
// package.json
|
|
36182
|
-
var version = "0.3.
|
|
36182
|
+
var version = "0.3.3";
|
|
36183
36183
|
|
|
36184
36184
|
// src/Chat.ts
|
|
36185
36185
|
import readline from "node:readline";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polka-codes/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"yaml": "^2.7.0",
|
|
27
27
|
"zod": "^3.24.1"
|
|
28
28
|
},
|
|
29
|
-
"files": ["dist", "cli.
|
|
29
|
+
"files": ["dist", "cli.mjs"],
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/lodash": "^4.17.14"
|
|
32
32
|
}
|