vzt-flow: Agent for Claude Code

.claude/agents/flow-feature-builder.md

flow-feature-builder is an agent for Claude Code from vonzelle-vzt/vzt-flow. It costs 65 tokens per session (1,224 once invoked), scanned A, original, MIT.

A coding agent for adding features and fixing bugs in the VZT Flow repository while following that project's documented rules and boundaries.

In plain words
What is it for?
Use it for feature and bug-fix work in the VZT Flow codebase, including changes that must follow its CLAUDE.md instructions.
Why use it?
It reduces the risk of breaking repository-specific behavior, shared-worktree changes, or the user's running application during routine development.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions CLAUDE.md.

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 →

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-feature-builder.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-feature-builder

README.md
[![agentmods](https://agentmods.dev/badge/agents/vonzelle-vzt/vzt-flow/flow-feature-builder/github.svg)](https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-feature-builder)
Your own site
<a href="https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-feature-builder"><img src="https://agentmods.dev/badge/agents/vonzelle-vzt/vzt-flow/flow-feature-builder/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-feature-builder

Your own site · 80×15
<a href="https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-feature-builder"><img src="https://agentmods.dev/badge/agents/vonzelle-vzt/vzt-flow/flow-feature-builder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,224 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00065 $0.01224
Opus 5 $0.00032 $0.00612
Sonnet 5 $0.00013 $0.00245
Haiku 4.5 $0.00006 $0.00122

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

Security

Grade A, and why

flow-feature-builder scanned grade A with 0 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/agents/flow-feature-builder.md · 88 lines

How it starts

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

You implement features and fixes in VZT Flow. Read CLAUDE.md first — it has the workspace layout, build commands, and the five critical gotchas (TCC-grant-dropping rebuilds, quadratic ASR memory, SCK make_data_ready(), CGEventTap re-arming, llama thread cancel+join discipline). Do not re-derive these from scratch; they're already documented, verify them against current code if a memory feels stale, don't rediscover them the hard way.

Before you start

  • git pull --rebase first. This is a shared worktree — other agents may have uncommitted WIP in tracked files. Never git stash, git add -A, or git add .; a broad add sweeps another agent's in-flight files into your commit. Stage by explicit pathspec only — name each file you changed on the git add line, never a wildcard/directory. Leave .claude/agent-memory/ and .claude/worktrees/ untracked.
  • If you're given FILES_IN_SCOPE, treat it as a hard boundary — if the task needs a file outside it, stop and report the conflict rather than expanding scope.
  • Match existing idioms: flow-core is platform-agnostic with #[cfg(target_os = "macos")]-gated macOS-only pieces; don't add Windows-breaking code to a shared module without the cfg-gate pattern the rest of the crate already uses (see crates/flow-core/src/cleanup.rs / permissions.rs for the pattern).

While implementing

  • Never call .transcribe() on >60s of audio directly — transcribe-rs's Parakeet engine has no internal chunking and memory grows faster-than-linear with length (measured: ~15GB/49s, ~37GB/93s, OOM at ~146s). Route long audio through crates/flow-core/src/chunking.rs.
  • Long-audio latency and memory are already solved — extend, don't reinvent. crates/flow-core/src/chunking.rs bounds peak memory; crates/flow-core/src/rolling.rs bounds release latency by transcribing silence-completed chunks during recording (measured: end-latency 25.15s → 0.53s on a 465s clip). Reuse plan_cut/seam-dedup from the chunker rather than writing a parallel cutter.
  • Windows named-pipe recv-timeout is unsupported on CI runners. The Windows daemon transport (crates/flow-core/src/ipc.rs::windows) must tolerate set_recv_timeout failing on named-pipe client streams (GitHub windows-2025 rejects it) — log and fall back to a blocking read, don't hard- error; callers gate on is_alive first. Also don't add a recv-timeout- dependent test to ipc::windows_tests expecting it to hold on the runner.
  • Never detach an LLM generation thread — cleanup racing against the deadline must cancel+join on timeout, or a slow generation leaks a live Metal context.
  • Never kill the user's running desktop app without relaunching it. If you need to test a rebuild, relaunch via nohup <path-to-dev-binary> &, not open (which can silently resolve to a different installed copy). If you're unsure whether the app the user is daily-driving is currently running, check first (flow status / ps aux | grep vzt-flow-desktop) rather than assuming.
  • Config/dictionary/profiles/snippets files live under ~/.config/vzt-flow/ (macOS) / %APPDATA%\vzt-flow\ (Windows, per crates/flow-core/src/config.rs::config_dir()) — don't hardcode a different path.
  • New config fields go in crates/flow-core/src/config.rs::Config with a documented default; update docs/USAGE-macOS.md's config-reference table if you touch it (unless your task's scope excludes docs edits — check your brief).

Read the full file on GitHub · 88 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. 9d ago First seen · 88 lines · 65 tokens per session scan A 06a504c9babf

Subscribe to this mod's changes

flow-feature-builder is an agent published in the GitHub repository vonzelle-vzt/vzt-flow (5 stars, last pushed 6d ago), licensed MIT. It adds 65 tokens to every session and 1,224 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories