July 7, 2026 — Matteo Merola

Release Notes: v0.25 – v0.28

Four releases in one week — GitHub webhook integration, per-agent LLM overrides, a token usage dashboard, and chain-of-thought feedback mode.

v0.25 — GitHub App Webhook

humux can now receive GitHub webhook events directly. When someone opens a PR, pushes a commit, or creates an issue, the agent gets notified in real time. This replaces polling-based GitHub integrations and lets agents react to repository events as they happen.

config.yml
agents:
  - slug: forge
    github:
      webhook_secret: ${vault:GH_WEBHOOK_SECRET}
      author_gate:
        - mattmezza       # only my events
      ping_chat: -100123  # notify this Telegram chat

v0.26 — Webhook Mention Gate

Building on v0.25's webhook foundation, this release adds a mention gate: agents only process webhook events where they're specifically @mentioned in the body. This prevents noise from high-traffic repositories where the agent should only respond when explicitly called.

v0.27 — Per-Agent LLM Override

Different agents have different needs. A coding agent benefits from the strongest reasoning model. A triage agent that classifies emails can use a cheaper, faster model. v0.27 lets you set the LLM provider and model per agent, overriding the system default.

config.yml
agents:
  - slug: forge
    llm:
      provider: anthropic
      model: claude-sonnet-4-20250514

  - slug: triage
    llm:
      provider: ollama
      model: llama3.1:8b

v0.28 — Token Dashboard + CoT Feedback

The largest release in this batch. Two major features: a token usage dashboard for cost visibility, and a chain-of-thought feedback mode for debugging agent reasoning.

Token usage dashboard

Chain-of-thought feedback

When enabled per agent, the chain-of-thought mode gives you real-time visibility into what the agent is thinking. Instead of waiting for the final response, you see a thinking indicator as the model reasons through the problem.

Other changes in v0.28

Upgrading

All four releases are backwards-compatible. Pull the latest image and restart:

bash
docker compose pull && docker compose up -d

The new features are opt-in: GitHub webhooks require configuring a GitHub App, per-agent LLM overrides default to the system model, and CoT feedback mode is off by default. The token dashboard is always available in the admin UI.

Full changelogs for each release are on GitHub Releases.