hummin-cli 1.0.5 → 1.1.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.0] - 2026-09-19
4
+
5
+ ### Added
6
+
7
+ - Agent teamwork: inter-agent messaging across terminals and projects - UDS broker with offline inbox and replay (`agent_send`, `agent_inbox`, `/agents`, `/agent-name`), and a shared cross-session task board (`task_board`, `/team`).
8
+ - Cron scheduler: schedule detached `hummin -p` wake-ups per project (`cron_create`/`cron_list`/`cron_delete`, `/cron`); single-scheduler lock, one queued wake per entry.
9
+ - MCP client: stdio JSON-RPC transport for `mcpServers` in settings (project entries trust-gated); tools register as `mcp_<server>_<tool>`; `/mcp` status panel with restart.
10
+ - LSP client for TypeScript via `typescript-language-server`: `lsp_diagnostics`, `lsp_definition`, `lsp_references`, `lsp_hover` (1-based coordinates); auto-activates on tsconfig/jsconfig projects; `/lsp` status panel.
11
+ - `ask_user` tool: structured multiple-choice questions through the TUI with optional free text; sequential asks no longer hang; fleet-style bordered question panel.
12
+ - Bash sandboxing: macOS seatbelt / Linux bubblewrap workspace mode (writes limited to the working directory and temp, secrets unreadable, optional network deny) with real capability probing; `/sandbox` toggle; spawned task children inherit the mode.
13
+ - Declarative hooks: `hooks.json` (global and trust-gated project) runs shell commands on `tool_call`, `tool_result`, `agent_start`, and `agent_end`; `tool_call` hooks can block with a reason; `/hooks` table and reload.
14
+ - BashGuard advisory matrix: in-band warnings for destructive commands, out-of-tree `sed -i`, and outside-cwd writes; opt-in blocking and read-only deny mode (`/bashguard`).
15
+ - Usage visibility: `/context` (system prompt, tools, conversation, cache-hit ratio, compaction trigger; est vs exact labeled) and `/cost` (per-model totals, served-locally vs cloud split).
16
+ - Footer navigator: `alt+down` (or `down` on an empty editor) opens a selectable list of Background tasks, TODOs, Agents, and Fleet, each opening its panel; native styled TODOs footer segment (`TODOs x/y · current item`).
17
+ - Background panel: `ctrl+b` or `/background` opens a live panel with view-tail/cancel actions, and `ctrl+x` stops the selected running task/monitor or clears a finished one; the footer status reports counts by kind ("2 tasks, 1 monitor").
18
+ - Fleet: selecting an offline fleet model in `/model` offers to start its server first (`fleet.autoStart` skips the prompt), with readiness-gated selection via the shared fleet-actions library.
19
+
20
+ ### Changed
21
+
22
+ - Background tasks and monitors survive agent interrupts: the turn's abort signal is no longer forwarded to background jobs (foreground tasks remain abortable).
23
+ - Task rows show what is running (`Task "<prompt>" · model`); background task completions and monitor notices render as collapsible one-line rows instead of always-expanded blocks.
24
+ - The plan checklist is labeled "TODOs" everywhere and an always-current footer segment shows progress and the current item.
25
+ - Custom `statusline.left`/`statusline.right` segments and the default footer right side use dim middot separators; vim modal editing is available via `editorMode: "vim"` (`HUMMIN_VIM=1`).
26
+
27
+ ### Fixed
28
+
29
+ - Collapsed bash tool rows are a single line again: the command is collapsed to one line and truncated to the terminal width, with the duration/status suffix preserved; the full multi-line command and output remain available expanded.
30
+ - Fixed the sandbox extension hard-blocking bash in the default (`off`) mode; plain execution is used unless workspace mode is active, with an actionable `[Sandbox]` message when a mechanism is unavailable.
31
+ - Fixed the agents broker crashing extension startup when two sessions raced for the broker socket; the loser now connects as a client.
32
+ - Fixed the seatbelt capability probe using `/bin/true`, which does not exist on macOS.
33
+ - Fixed background task completion notices being delivered twice.
34
+
35
+ ## [1.0.6] - 2026-09-18
36
+
37
+ ### Changed
38
+
39
+ - The hummin logo (pixel hummingbird mark) now heads the README on GitHub and npm.
40
+
3
41
  ## [1.0.5] - 2026-09-18
4
42
 
5
43
  ### Changed
@@ -32,9 +70,11 @@
32
70
  ### Changed
33
71
 
34
72
  - Exact session-ID session lookups skip transcript scans ([#9601](https://github.com/earendil-works/pi/issues/9601)).
73
+ - Formatted Bash and PowerShell tool durations of at least one minute as minutes and seconds, with hours when needed ([#9628](https://github.com/earendil-works/pi/issues/9628)).
35
74
 
36
75
  ### Fixed
37
76
 
77
+ - Fixed mid-run threshold compaction silently skipping oversized trailing tool results ([#9740](https://github.com/earendil-works/pi/issues/9740)).
38
78
  - Fixed signal-terminated local shell commands being reported as successful with partial output ([#9577](https://github.com/earendil-works/pi/issues/9577) by [@BrendanJMurphy](https://github.com/BrendanJMurphy)).
39
79
  - Fixed local clipboard failures reporting success when the terminal ignored the fallback OSC 52 write, and added platform-specific setup guidance when no clipboard backend works ([#9618](https://github.com/earendil-works/pi/issues/9618)).
40
80
  - Fixed `before_agent_start` handlers returning `systemPrompt` (and `forceSystemPrompt`) on models with mid-conversation system messages: the forced prompt is now sent as the provider's leading system prompt instead of being appended as a section patch after the original prompt.
@@ -98,6 +138,7 @@ First hummin release. Hummin is a thin-overlay fork of pi: zero deletions from u
98
138
  - Fixed premature missing-model errors after login by waiting for catalog discovery. Radius now defaults to `balanced`, falling back to the first available Radius model when needed.
99
139
  - Fixed fullscreen mode reserving a blank row for custom footers that render zero rows ([#8919](https://github.com/earendil-works/pi/issues/8919)).
100
140
  - Fixed extension tools without parameter schemas to be rejected during registration instead of breaking provider requests ([#9300](https://github.com/earendil-works/pi/issues/9300)).
141
+ - Fixed loaded llama.cpp models with `enable_thinking` chat templates ignoring Pi's thinking level ([#9528](https://github.com/earendil-works/pi/issues/9528)).
101
142
 
102
143
  ## [0.85.1] - 2026-09-05
103
144
 
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ <p align="center">
2
+ <img alt="hummin logo" src="https://raw.githubusercontent.com/rennf93/hummin/main/.github/assets/logo-mark.png" width="320">
3
+ </p>
4
+
1
5
  # hummin
2
6
 
3
7
  A GLM-native terminal coding agent: the [pi agent harness](https://github.com/earendil-works/pi) (MIT, by Mario Zechner / earendil-works) retuned for Z.ai's GLM models and [colibri](https://github.com/JustVugg/colibri) local inference.
@@ -41,6 +45,16 @@ hummin -p "summarize this repo" # oneshot mode
41
45
 
42
46
  GLM-5.3, GLM-5.3-Flash and GLM-5.3-highspeed ship in the `zai` provider catalog (1M-token context, reasoning variants mapped to `reasoning_effort`). Pick models with `/model`; set a persistent default with the picker's "set as default" action.
43
47
 
48
+ ## Features
49
+
50
+ - **Agent teamwork**: sessions message each other across terminals and projects (`agent_send`, `/agents`), share a task board (`/team`), spawn bounded subagents (`task`, `/background` on `ctrl+b`), and run scheduled wake-ups (`/cron`).
51
+ - **Local fleet**: one provider across all your OpenAI-compatible servers (colibri, llama.cpp, Ollama, ...), health-probed and startable from the model picker, with per-origin serialization and real context windows.
52
+ - **Integrations**: MCP client (`mcpServers`), TypeScript LSP tools (diagnostics/definition/references/hover), declarative `hooks.json`, `ask_user` questions, DuckDuckGo search and SSRF-guarded fetch.
53
+ - **Safety**: bash sandboxing (macOS seatbelt / Linux bubblewrap) with `[Sandbox]` in-band blocks, destructive-command advisories (`/bashguard`), loop + budget guardrails, project trust, file checkpoints with `/rewind`.
54
+ - **Memory**: session distillation into lessons plus a self-curating Obsidian-compatible vault with BM25-ranked recall injected into every session.
55
+ - **Visibility**: `/context` token breakdown with cache-hit ratio, `/cost` with local-served vs cloud split, `/status` + `/doctor` dashboards, two-row statusline (user-definable segments).
56
+ - **UX**: vim editing mode, grouped command palette, custom statusline segments, fullscreen transcript search, themeable, remote browser control over loopback.
57
+
44
58
  ## Local inference (colibri, llama.cpp, ...)
45
59
 
46
60
  The bundled `hummin-colibri` extension registers ONE provider (`colibri`) that exposes every model found on your local OpenAI-compatible servers. The engine behind each server does not matter - colibri (MoE streaming), llama.cpp, Ollama all work; the server's own `/v1/models` is the source of truth for model ids, and the first server in the list that serves a model wins (duplicates dedupe into one entry with fallback ordering).