miii-cli 0.2.7 → 0.2.8

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.
Files changed (2) hide show
  1. package/README.md +28 -18
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ```
6
6
  ╭──────────────────────────────────────────────────────────────────────╮
7
- │ miii v0.2.5
7
+ │ miii v0.2.8
8
8
  │ model: qwen2.5-coder:7b │
9
9
  ├──────────────────────────────────────────────────────────────────────┤
10
10
  │ ✦ cross-referencing vibes… 12s │
@@ -74,7 +74,7 @@ miii
74
74
  Model picker opens on launch. Select a model. Start coding.
75
75
 
76
76
  ```bash
77
- miii # default session
77
+ miii # new session, named from first message
78
78
  miii --model qwen2.5-coder # specific model
79
79
  miii --session myproject # named session
80
80
  miii -s work -m codellama # short flags
@@ -83,7 +83,7 @@ miii -s work -m codellama # short flags
83
83
  miii checks for updates on startup and lets you know when a new version is available:
84
84
 
85
85
  ```
86
- ├── miii v0.2.5 → v0.2.6 available run: npm install -g miii-cli ───┤
86
+ ├── miii v0.2.7 → v0.2.8 available run: npm install -g miii-cli ───┤
87
87
  ```
88
88
 
89
89
  ---
@@ -268,18 +268,19 @@ Chains up to 6 tool hops per response — read, edit, test, verify, commit in on
268
268
 
269
269
  ## Sessions
270
270
 
271
- Every conversation persists automatically to disk.
271
+ Every `miii` run starts a fresh session automatically. The session is named after your first message — so `fix the auth bug` becomes the session `fix-the-auth-bug`. Use `--session` to resume a specific one.
272
272
 
273
273
  ```bash
274
- miii # resumes last session
274
+ miii # new session every time, named from first message
275
275
  miii --session feature-auth # resumes or creates "feature-auth"
276
276
  ```
277
277
 
278
278
  ```
279
- /session <name> switch to a session (creates if new)
280
- /sessions list all sessions with message counts
281
- /new fresh auto-named session
282
- /clear clear current session
279
+ /session <name> switch to a session (creates if new)
280
+ /session delete <name> delete a saved session
281
+ /sessions list all sessions with message counts
282
+ /new fresh auto-named session
283
+ /clear clear current session history
283
284
  ```
284
285
 
285
286
  Sessions at `~/.config/miii/sessions/`. History capped at 100 messages in-context, full history on disk. Debounced writes — no I/O on every message.
@@ -301,6 +302,7 @@ Type `/` to open the command palette with fuzzy search.
301
302
  | `/model <name>` | Switch model mid-session — no restart |
302
303
  | `/models` | Model picker, pull new Ollama models |
303
304
  | `/session <name>` | Switch or create session |
305
+ | `/session delete <name>` | Delete a saved session |
304
306
  | `/sessions` | List all sessions |
305
307
  | `/new` | Fresh auto-named session |
306
308
  | `/clear` | Clear current history |
@@ -374,6 +376,18 @@ Loaded in order from `.miii.json` (project) → `~/.config/miii/config.json` (gl
374
376
  | `↑ / ↓` | Navigate command palette or file picker |
375
377
  | `esc` | Close overlay / abort in-flight request |
376
378
  | `ctrl+c` | Abort current request or exit |
379
+ | `backspace` | Remove pasted content chip |
380
+
381
+ ## Paste detection
382
+
383
+ Paste a large file or code block and miii collapses it into a chip instead of flooding the input:
384
+
385
+ ```
386
+ ❯ ⎘ pasted 84 lines
387
+ backspace removes paste enter to send
388
+ ```
389
+
390
+ The full content is sent with your message when you press enter. Threshold: ≥ 3 lines or ≥ 200 characters.
377
391
 
378
392
  ---
379
393
 
@@ -390,13 +404,9 @@ npm test # 8 integration tests
390
404
 
391
405
  ---
392
406
 
393
- ## What's new in 0.2.5
407
+ ## What's new in 0.2.8
394
408
 
395
- - **Web search** — `web_search` + `web_extract` tools powered by Tavily
396
- - **npm skill ecosystem** — install/uninstall `miii-skill-*` packages, write your own
397
- - **Auto-test after edits** — model runs test suite after every file change, feeds failures back
398
- - **Live model switching** — `/model <name>` mid-session, no restart
399
- - **Update check** — startup banner when a new version is available
400
- - **Hook architecture** — `useSession`, `useModelPicker`, `useRunLoop` for clean internals
401
- - **Ambiguous patch detection** — `patch_file` throws on multiple matches
402
- - **176K bundle** — vs ~50MB for the Python alternatives
409
+ - **Auto-named sessions** — every run starts fresh; session named from first message (`fix-the-auth-bug`)
410
+ - **Session delete** — `/session delete <name>` to remove saved sessions
411
+ - **Paste detection** — large pastes collapse to `⎘ pasted N lines` chip; full content sent on enter
412
+ - **Thinking animation fix** — messages and tool calls no longer bleed into the scrollback buffer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miii-cli",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "type": "module",
5
5
  "description": "Claude Code-level terminal workflows powered by your local models.",
6
6
  "license": "MIT",