Skip to content

Releases: toustifer/agentflow

v0.2.6

Choose a tag to compare

@toustifer toustifer released this 05 Aug 04:43

Full Changelog: v0.2.5...v0.2.6

v0.2.5 — stable product shape and DAG-scoped rounds

Choose a tag to compare

@toustifer toustifer released this 27 Jul 09:42

Full Changelog: v0.2.4...v0.2.5

v0.2.4 — namespace-only Hub team (no machine bind)

Choose a tag to compare

@toustifer toustifer released this 25 Jul 10:04

Breaking product rule

No machine-wide Hub team bind.

  • ~/.agent-hub/config.json = JWT only
  • Team bind = per namespace via hub_bind_team({namespace_id, business_code})
  • Resolve: envnamespaceworkdir (home business_code ignored / cleared on bind)

Avoids multi-project conflicts when two namespaces need different teams.

Also includes: /agentflow update (skill+MCP version check), namespace bind APIs.

Upgrade

curl -fsSL https://raw.githubusercontent.com/toustifer/agentflow/master/scripts/install.sh \
  | VERSION=v0.2.4 bash -s -- --write-config

Restart Claude, then re-bind each project:

hub_bind_team({ namespace_id: "...", business_code: "z8gw" })
hub_status({ namespace_id: "..." })

v0.2.3 — /agentflow update (skill + MCP version check)

Choose a tag to compare

@toustifer toustifer released this 25 Jul 02:57

What's new

  • /agentflow update — checks skill and MCP binary vs GitHub latest
  • Shows where to look: VERSION file, binary path, Release page, docs
  • flow_ping now returns version / commit / date
  • Binary: agentflow version / version-json
  • Unknown CLI args no longer hang into HTTP mode

Also includes v0.2.2: namespace ↔ Hub team bind (hub_bind_team / hub_status).

Upgrade

curl -fsSL https://raw.githubusercontent.com/toustifer/agentflow/master/scripts/install.sh \
  | VERSION=v0.2.3 bash -s -- --write-config

Fully quit & restart Claude Code, then:

/agentflow update

Docs: https://hub.stifer.xyz/agent-setup.md

v0.2.2 — namespace↔Hub team bind

Choose a tag to compare

@toustifer toustifer released this 24 Jul 19:17

What's new

  • Namespace ↔ Hub team bind: one workdir/namespace maps to one Hub team (4-char business_code)
  • MCP tools: namespace_update, hub_bind_team, hub_status
  • Resolve order: envnamespace metadata → workdir hub-client → home config
  • Accepts display path paste (zhiji-z8gw → stores z8gw)

Install / upgrade

curl -fsSL https://raw.githubusercontent.com/toustifer/agentflow/master/scripts/install.sh \
  | VERSION=v0.2.2 bash -s -- --write-config

Then fully quit and restart Claude Code. Verify with flow_ping, then:

hub_bind_team({ namespace_id, business_code: "z8gw" })
hub_status({ namespace_id })  # source=namespace

Docs: https://hub.stifer.xyz/agent-setup.md

v0.2.1 — download-first install + MCP GATE

Choose a tag to compare

@toustifer toustifer released this 23 Jul 17:09

What's new

  • Download-first install — no Go / git clone for end users
  • skill.tgz — full Claude skill (hooks, flows, MCP GATE)
  • Prebuilt binaries for windows/linux/darwin (amd64 + darwin arm64)
  • MCP GATE — when mcp__agentflow__* tools are missing, agents must stop and fix MCP (no Bash/JSON-RPC/sqlite bypass)
  • Portable sticky hooks (no hardcoded Windows paths)

Install (macOS / Linux)

curl -fsSL https://raw.githubusercontent.com/toustifer/agentflow/master/scripts/install.sh \
  | VERSION=v0.2.1 bash -s -- --write-config

Then merge sticky hooks printed by the script into ~/.claude/settings.json, fully restart Claude Code.

Install (Windows PowerShell)

$env:VERSION='v0.2.1'
irm https://raw.githubusercontent.com/toustifer/agentflow/master/scripts/install.ps1 | iex

Verify (all required)

  1. Fully quit + restart Claude Code
  2. /mcp → agentflow not failed
  3. In-session: call mcp__agentflow__flow_ping (CLI Connected is not enough)
  4. grep -n "MCP GATE" ~/.claude/skills/agentflow/hooks/mode-lib.js

Docs: https://hub.stifer.xyz/agentflow-setup.md
Source tip: 36348e6 (scripts) · engine base 540ddf3 (MCP GATE)

v0.2.0 sticky mode · inspect · legacy DAG recovery

Choose a tag to compare

@toustifer toustifer released this 16 Jul 19:40

Highlights

  • Sticky mode: /agentflow on keeps agentflow context active across turns via UserPromptSubmit + statusline
  • Inspect trees: /agentflow inspect project/DAG/task/blockers/workers/next views
  • Legacy DAG recovery: default resume skips legacy/deprioritized DAGs; explicit /agentflow resume dag <dag_id> can target them
  • Safe worktree repair: invalid worktrees only repaired with resume_targeted + allow_repair, and paths are quarantined (.invalid-bak) instead of deleted

Binaries

File Platform
agentflow-windows-amd64.exe Windows x64
agentflow-linux-amd64 Linux x64
agentflow-darwin-amd64 macOS Intel
agentflow-darwin-arm64 macOS Apple Silicon

Source

Commit: 92a1c7b