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.
curl -O https://raw.githubusercontent.com/vonzelle-vzt/vzt-flow/main/.claude/agents/flow-feature-builder.mdgit clone --depth 1 https://github.com/vonzelle-vzt/vzt-flowWrote 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.
[](https://agentmods.dev/agents/vonzelle-vzt/vzt-flow/flow-feature-builder)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 --rebasefirst. This is a shared worktree — other agents may have uncommitted WIP in tracked files. Nevergit stash,git add -A, orgit 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 thegit addline, 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-coreis 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 (seecrates/flow-core/src/cleanup.rs/permissions.rsfor 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 throughcrates/flow-core/src/chunking.rs. - Long-audio latency and memory are already solved — extend, don't
reinvent.
crates/flow-core/src/chunking.rsbounds peak memory;crates/flow-core/src/rolling.rsbounds release latency by transcribing silence-completed chunks during recording (measured: end-latency 25.15s → 0.53s on a 465s clip). Reuseplan_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 tolerateset_recv_timeoutfailing on named-pipe client streams (GitHub windows-2025 rejects it) — log and fall back to a blocking read, don't hard- error; callers gate onis_alivefirst. Also don't add a recv-timeout- dependent test toipc::windows_testsexpecting 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> &, notopen(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, percrates/flow-core/src/config.rs::config_dir()) — don't hardcode a different path. - New config fields go in
crates/flow-core/src/config.rs::Configwith a documented default; updatedocs/USAGE-macOS.md's config-reference table if you touch it (unless your task's scope excludes docs edits — check your brief).
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.
- 9d ago First seen · 88 lines · 65 tokens per session scan A 06a504c9babf
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.
Other agents, from other repositories
operator
An operator for carrying out explicitly requested tasks on a Windows computer through visible application actions. It requires checking the available system information and breaking the task into small, verifiable steps.
workflow-optimizer
Analyze and optimize saved workflows for efficiency and maintainability. Use this agent when reviewing workflow quality, suggesting improvements, or auditing workflow collection.
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.