vzt-flow: Agent for Claude Code

.claude/agents/flow-releaser.md

flow-releaser is an agent for Claude Code from vonzelle-vzt/vzt-flow. It costs 58 tokens per session (975 once invoked), scanned C, original, MIT.

An agent for releasing VZT Flow software. It synchronizes four version fields, creates a Git tag, monitors the release workflow, and checks the generated files against the installation scripts.

In plain words
What is it for?
Use it when bumping, tagging, shipping, or verifying a VZT Flow release.
Why use it?
It guides the release steps that could otherwise leave versions inconsistent or produce an incomplete installation package.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is vonzelle-vzt/vzt-flow's own configuration. It tells Claude Code how to work on vzt-flow itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything vzt-flow configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./target/release/flow doctor # or wherever install.sh put the CLI — check its PATH output.

Reuse

Borrowing it

Nothing to install: this file belongs to vonzelle-vzt/vzt-flow. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/vonzelle-vzt/vzt-flow/main/.claude/agents/flow-releaser.md
Clone the repo
git clone --depth 1 https://github.com/vonzelle-vzt/vzt-flow

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flow-releaser

README.md
[![agentmods](https://agentmods.dev/badge/agents/vonzelle-vzt/vzt-flow/flow-releaser/github.svg)](https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-releaser)
Your own site
<a href="https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-releaser"><img src="https://agentmods.dev/badge/agents/vonzelle-vzt/vzt-flow/flow-releaser/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flow-releaser

Your own site · 80×15
<a href="https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-releaser"><img src="https://agentmods.dev/badge/agents/vonzelle-vzt/vzt-flow/flow-releaser.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 975 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00058 $0.00975
Opus 5 $0.00029 $0.00487
Sonnet 5 $0.00012 $0.00195
Haiku 4.5 $0.00006 $0.00097

Measured 12d ago against content hash c90f8ad9e043, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

flow-releaser scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://raw.githubusercontent.com/vonzelle-vzt/vzt-flow/main/scripts/install.sh | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://raw.githubusercontent.com/vonzelle-vzt/vzt-flow/main/scripts/install.sh | bash
.claude/agents/flow-releaser.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You cut VZT Flow releases. This repo has no signing/notarization yet (see docs/PRD.md's Out of scope section) — releases are unsigned CI builds, which is expected, not a defect to fix mid-release.

1. Version bump — four places must agree

There is no single source of truth; check and sync all four:

grep -n '"version"' apps/desktop/src-tauri/tauri.conf.json apps/desktop/package.json mcp/package.json
grep -n '^version' Cargo.toml   # workspace version — crates/flow-core and
                                 # crates/flow-cli both use `version.workspace = true`

Bump all four to the same new version. Do not bump crates/*/Cargo.toml directly — they inherit from the workspace root.

After bumping, confirm the workspace still builds clean (a version bump alone shouldn't break anything, but Cargo.lock needs to pick it up):

source ~/.cargo/env
cargo build --release --workspace

2. Tag and push

Release triggers on tag push matching v* (.github/workflows/release.yml). Tag the exact commit that has all four version fields bumped:

git tag v<X.Y.Z>
git push origin v<X.Y.Z>

3. Watch the release workflow

gh run list --workflow=release.yml --limit 1
gh run watch <run-id>

Four jobs: macos (aarch64 — primary), macos-x64 (Intel, cross-compiled), windows (x64), and a Windows Arm job (continue-on-error: true — allowed to fail, don't block the release on it). If macos or windows fail, that blocks the release; investigate before proceeding.

4. Verify the asset list matches install.sh / install.ps1

The workflow uploads these artifact names (from .github/workflows/release.yml):

  • vzt-flow-macos-aarch64-dmg (the .dmg, named VZT Flow_<version>_aarch64.dmg by Tauri's convention)
  • vzt-flow-cli-macos-aarch64 (tarball: flow binary + mcp/dist + mcp/node_modules)
  • vzt-flow-macos-x86_64-dmg (dmg named ..._x64.dmg — Tauri calls x86_64 "x64")
  • vzt-flow-cli-macos-x86_64.tar.gz
  • vzt-flow-windows-x64-installers (.msi and/or -setup.exe)

Read the full file on GitHub · 97 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 97 lines · 58 tokens per session scan C c90f8ad9e043

Subscribe to this mod's changes

flow-releaser is an agent published in the GitHub repository vonzelle-vzt/vzt-flow (5 stars, last pushed yesterday), licensed MIT. It adds 58 tokens to every session and 975 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.