mini-coder 0.2.1 → 0.2.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 +1 -1
- package/dist/mc.js +3165 -3097
- package/docs/KNOWN_ISSUES.md +1 -2
- package/package.json +2 -1
package/docs/KNOWN_ISSUES.md
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Bugs
|
|
4
4
|
|
|
5
|
-
- `/model` doesn't autocomplete models provider/name pattern.
|
|
6
5
|
- AI SDK expands `claude-3-5-haiku` → dated variant that Zen doesn't serve (404).
|
|
7
|
-
- Shell tool
|
|
6
|
+
- Shell tool: model can `tmux kill-session` the host tmux session if names collide (e.g. audit skill creates session named "audit" matching the user's). Not a code bug — the skill/model just picks a conflicting name. Mitigate via skill wording or session name prefixing.
|
|
8
7
|
|
|
9
8
|
## Features
|
|
10
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mini-coder",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A small, fast CLI coding agent",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"diff": "^8.0.3",
|
|
32
32
|
"yoctocolors": "^2.1.2",
|
|
33
33
|
"yoctomarkdown": "^0.0.7",
|
|
34
|
+
"yoctoselect": "0.0.2",
|
|
34
35
|
"zod": "^4.3.6"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|