wakeflow-design

wakeflow-design is a skill for Claude Code, Codex from GxFn/Wakeflow. It costs 41 tokens per session (1,121 once invoked), scanned A, original, MIT.

A collection of patterns for testing MCP tool and data-endpoint handlers with Vitest. It focuses on calling handlers directly with mock context and checking their returned results or errors.

In plain words
What is it for?
Use it to write unit and integration tests for MCP handlers, validate inputs and errors, fake upstream requests, test formatting, and keep tests isolated.
Why use it?
It helps test the behavior of handlers without depending on the surrounding framework. It also provides reusable test helpers for sessions, network requests, storage, logging, and production-shaped error checks.

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/gxfn/wakeflow/wakeflow-design
Any agent
npx skills add GxFn/Wakeflow --skill wakeflow-design
Clone the repo
git clone --depth 1 https://github.com/GxFn/Wakeflow

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 wakeflow-design

README.md
[![agentmods](https://agentmods.dev/badge/skills/gxfn/wakeflow/wakeflow-design.svg)](https://agentmods.dev/skills/gxfn/wakeflow/wakeflow-design)
Your own site
<a href="https://agentmods.dev/skills/gxfn/wakeflow/wakeflow-design"><img src="https://agentmods.dev/badge/skills/gxfn/wakeflow/wakeflow-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,121 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.00041 $0.01121
Opus 5 $0.00020 $0.00561
Sonnet 5 $0.00008 $0.00224
Haiku 4.5 $0.00004 $0.00112

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

Security

Grade A, and why

wakeflow-design 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 5d 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.

core/skills/wakeflow-design/SKILL.md · 109 lines

How it starts

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

Wakeflow Design

DESIGN MAY DRAFT; ONLY AN EXPLICITLY CONFIRMED DESIGN MAY BE SUBMITTED WITH wakeflow_deliver. Violating the letter of this rule is violating its spirit.

Wakeflow Role

Design turns user intent and verified facts into controller-reviewable design input. Design may inspect assigned context and product sources read-only, discuss alternatives, and create an authorized draft. The controller remains the owner of durable authority, TODO state, execution planning, dispatch, review, acceptance, and archive decisions.

Default to conversation. Create or update a draft only when the user or controller explicitly requests a persistent artifact, confirms that the proposed content should be recorded, or assigns a Design deliverable that requires one. A draft path, title, or confirmed label does not make it demand authority.

Source Skills Used

  • define-goal, grill-me, and grill-with-docs: measurable outcome, evidence, bounded scope, non-goals, stop conditions, terminology checks, and one consequential question at a time.
  • feature-design-assistant, senior-architect, and zoom-out: real alternatives, boundaries, interfaces, data ownership, failure modes, rollout, reversibility, and validation.
  • to-prd, agile-product-owner, and to-issues: user stories, testing decisions, INVEST checks, tracer-bullet vertical slices, dependencies, and HITL/AFK labeling.
  • handoff and planning-with-files: compact source references, redaction, and explicit separation of fact, recommendation, and decision.

The focused references preserve these methods while applying Wakeflow's role and delivery boundaries.

Route The Work

Read every reference needed for the assigned Design request, and no unrelated method:

Need Required reference
Resolve fuzzy intent or a missing decision Clarification
Compare two or more viable directions Option planning
Draft or revise controller-intake design Requirement design
Propose independently valuable implementation candidates Work slicing
Check readiness and submit confirmed input Design handoff

Read the full file on GitHub · 109 lines

Files

What ships with it

7 files 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. 5d ago First seen · 109 lines · 41 tokens per session scan A 39f893806b76

Subscribe to this mod's changes

wakeflow-design is a skill published in the GitHub repository GxFn/Wakeflow (5 stars, last pushed yesterday), licensed MIT. It adds 41 tokens to every session and 1,121 once invoked, about $0.0002 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 skills, from other repositories

archon

Autonomous multi-session campaign agent. Decomposes large work into phases, delegates to sub-agents, reviews output, and maintains campaign state across context windows. Use for work that spans multiple sessions and needs persistent state, quality judgment, and strategic decomposition.

SethGammon/Citadel · 54 tokens

fleet

Parallel campaign orchestrator. Runs multiple campaigns in coordinated waves within a single session. Spawns 2-3 agents per wave in isolated worktrees, collects discoveries, shares context between waves. Use when work decomposes into 3+ independent streams that can run simultaneously.

SethGammon/Citadel · 56 tokens

daemon

Continuous autonomous operation mode. Keeps campaigns running 24/7 by chaining Claude Code sessions via RemoteTrigger. Each session picks up from the campaign's continuation state, works until context runs low or the phase completes, then schedules the next session. Auto-stops on campaign completion or budget…

SethGammon/Citadel · 69 tokens

evolve

Research-driven multi-cycle improvement director. Forms causal hypotheses about why scores are low, validates them with scout agents before attacking, dispatches axis-parallel fleet attacks, extracts transferable patterns, and runs indefinitely within a budget envelope. Accumulates a persistent belief model and…

SethGammon/Citadel · 60 tokens

improve

Autonomous quality improvement loop. Scores a target against a rubric, selects the highest-leverage axis, attacks it, verifies, documents, and loops. No pre-planning between iterations — each loop re-scores from scratch.

SethGammon/Citadel · 48 tokens

setup

First-run experience for the harness. Three modes: Recommended (guided, 3 min), Full Tour (guided + skill walkthrough, 8 min), and Express (zero questions, 30 sec). Installs hooks first, detects stack, configures harness.json, runs a live demo on real code, and prints a reference card.

SethGammon/Citadel · 69 tokens