build-task-benchmarks

build-task-benchmarks is a skill for Claude Code, Codex from radiantlogicinc/fastworkflow. It costs 161 tokens per session (3,244 once invoked), scanned A, original, Apache-2.0.

A guide for building conversation benchmarks for fastWorkflow, a system that turns natural-language requests into application actions. It uses short conversations as reusable tests and combines them into longer realistic tasks.

In plain words
What is it for?
Use it to create 3–15-turn unit-test conversations and 20–100-step tasks that chain them together across workspaces and contexts.
Why use it?
A command can work by itself while a multi-step user task still fails because information or context is lost between turns. These two test levels help show where the failure occurs.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/radiantlogicinc/fastworkflow/build-task-benchmarks
Any agent
npx skills add radiantlogicinc/fastworkflow --skill build-task-benchmarks
Clone the repo
git clone --depth 1 https://github.com/radiantlogicinc/fastworkflow

Made for: Claude Code, Codex.

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 build-task-benchmarks

README.md
[![agentmods](https://agentmods.dev/badge/skills/radiantlogicinc/fastworkflow/build-task-benchmarks.svg)](https://agentmods.dev/skills/radiantlogicinc/fastworkflow/build-task-benchmarks)
Your own site
<a href="https://agentmods.dev/skills/radiantlogicinc/fastworkflow/build-task-benchmarks"><img src="https://agentmods.dev/badge/skills/radiantlogicinc/fastworkflow/build-task-benchmarks.svg" alt="Measured on agentmods" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,244 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00161 $0.03244
Opus 5 $0.00081 $0.01622
Sonnet 5 $0.00032 $0.00649
Haiku 4.5 $0.00016 $0.00324

Measured 4d ago against content hash a83d3dfdf0b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

build-task-benchmarks 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 4d 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.

fastworkflow/skills_for_coding_fastworkflows/build-task-benchmarks/SKILL.md · 261 lines

How it starts

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

Building task benchmarks

A per-command smoke test proves a command reaches its backend. It cannot tell you whether a user can get a job done, because a job is many commands in sequence, and everything that makes sequences hard — navigation, handles passed between turns, the context a turn lands in — is exactly what a per-command test removes.

Build the benchmark in two tiers. Never skip the first one.

Tier Shape Answers
Conversations 3-15 turns, one errand, usually one workspace Does each capability work in its natural setting?
Tasks 20-100 steps, several conversations chained, many contexts Does a real job complete?

The tiers are not two views of the same thing. Tier 1 is your unit-test layer and the block library tier 2 is assembled from. That is what makes a tier-2 failure attributable: every block is independently green, so a step that only fails at length is a length problem, not a command problem. If you write tier 2 first you will spend your time debugging whether the command or the chain is broken.

Tier 1 — conversations as unit tests

Structure

A conversation is a name, a purpose, and an ordered list of turns. A turn is what the user says, the command that should handle it, its parameters, and optionally what to capture from the response and which context it should land in. Full dataclass and runner skeleton: reference.md.

Four rules make the difference between a real harness and a loop over command calls:

  1. Navigation is real. The context a turn lands in is the context the next turn runs in. Do not reset between turns. A conversation that only works because each turn was handed a fresh context is not testing anything a user will do.
  2. Handles come out of the rendered response. Parse the uid a later turn needs from the text an earlier turn produced, not from internal state. The rendered response is all an agent ever sees, so if a listing does not expose its handles legibly, that is a defect this suite should catch.
  3. Run the validation hook. Signature.validate_extracted_parameters is part of the runtime path, and normalising rules write back onto the parameter object the command body then reads. Skipping it tests a call the runtime never makes. Return a validation failure as a soft outcome, not an exception — the runtime hands the message back for correction, so a bad call is still a conversation.
  4. Writes are opt-in and paired. Every write turn gets a restore turn, so a default run is net-neutral. Anything genuinely destructive is validated (its input object is constructed) and never sent.

Read the full file on GitHub · 261 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 261 lines · 161 tokens per session scan A a83d3dfdf0b3

Subscribe to this mod's changes

build-task-benchmarks is a skill published in the GitHub repository radiantlogicinc/fastworkflow (52 stars, last pushed today), licensed Apache-2.0. It adds 161 tokens to every session and 3,244 once invoked, about $0.0008 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-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens