Writing Relayflows
SkillAI & modelsGuides your agent through writing claude skill-style Relayflows flows in TypeScript or YAML.
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use the Writing Relayflows skill
About this skill
Use when authoring a Relayflows flow (@relayflows/surface / @relayflows/sdk, the journal-based v2 engine, the CLI is `flows`, package versions 2.0.x) in TypeScript or YAML/JSON. Covers the three-rung ladder (run/llm/agent), the resident verbs (human/dispatch/done), verification gates, TypeScript vs
What this skill tells your AI
The instructions your AI receives, as published by agentworkforce/relay in .openskills/writing-relayflows/SKILL.md and read by ahel’s review.
Use when authoring a Relayflows flow (@relayflows/surface / @relayflows/sdk, the journal-based v2 engine — the CLI is flows, package versions 2.0.x) in TypeScript or YAML/JSON. Covers the three-rung ladder (run/llm/agent), the resident verbs (human/dispatch/done), verification gates, TypeScript vs YAML authoring, per-step cli/model selection and its resolution order, flows.json, and flows check/run/resume with their real refusal shapes and exit codes. Not for the older, unrelated @relayflows/core WorkflowBuilder engine (.pattern('dag')/.agent()/.step() chains) that writing-agent-relay-workflows and migrating-persona-to-relayflow cover — that's a different product despite the similar name.
Overview
Relayflows turns a coding-agent task into steps a journal can inspect, verify, and resume. A flow is data (YAML/JSON) or code (TypeScript) that compiles to the same journal-backed kernel spec. Every effect is journaled before it's treated as real — a journal write that fails fails the step, with no silent fallback.
Name collision warning. This repo also has skills for an older, unrelated engine that is also casually called "Relayflow" (singular) — @relayflows/core's WorkflowBuilder, a chained builder (workflow('name').pattern('dag').agent(...).step(...).run()). That's writing-agent-relay-workflows and migrating-persona-to-relayflow's territory. This skill is the v2 engine: @relayflows/surface's flow() function and the YAML/JSON dialect compiled by @relayflows/sdk. If you see .pattern(, .agent( as a chained builder call, or ctx.workflow.run(), you're in the other engine — stop and use one of those skills instead.
When to use this skill
- Writing a new
.flow.tsor.flow.yaml/.flow.jsonfor theflowsCLI (package@relayflows/sdk, binary nameflows). - Deciding whether a step needs
run(shell),llm(bare model call), oragent(harnessed coding agent in a workspace). - Wiring up
cli/modelfor anagentorllmstep, in either language. - Debugging a
REFUSED [...]message fromflows checkorflows run. - Choosing between TypeScript and YAML for a given flow.
The ladder
Three step verbs, one per rung — never more (packages/sdk/src/spec.ts, export type StepType = 'deterministic' | 'llm' | 'agent';):
run/deterministic— a shell command. No model. Implicit gate isexit_code == 0.llm/llm— a bare model call. Prompt in, verified output out. No workspace, no tool use.agent/agent— a harnessed coding agent in a workspace. Returns{ summary, artifacts }, not raw text.
Plus four resident verbs that aren't ladder rungs: human (durable approval), dispatch (hand off to a child flow), done (typed finish), and in YAML, on/triggers (event entry points — out of scope for this skill).
Most flows only need run and llm. Climb to agent once a step needs hands on a real workspace.
Two ways to author the same thing
TypeScript
import { flow } from '@relayflows/surface';
export default flow('hello', async (f) => {
const greeting = await f.run('echo "Hello from Relayflows"');
console.log(greeting.trim());
const answer = await f.agent('greeter', {
task: 'Reply with one short hello sentence. Do not use tools or modify files.',
cli: 'claude',
model: 'claude-sonnet-4-6',
});
console.log(answer.summary);
f.done('success');
});
YAML
version: '0.1.0'
name: hello
steps:
- id: greeting
type: deterministic
command: 'echo "Hello from Relayflows"'
- id: greeter
type: agent
dependsOn: [greeting]
instruction: 'Reply with one short hello sentence. Do not use tools or modify files.'
cli: claude
model: claude-sonnet-4-6
The real Ctx contract (TypeScript)
packages/surface/src/context.ts, current as of origin/main@86a2ec2:
export interface AgentResult {
summary: string;
artifacts: string[];
}
export interface AgentOptions {
task: string;
workspace?: string;
cli?: string;
model?: string;
}
export interface Ctx {
run(command: string): Step<string>;
llm(strings: TemplateStringsArray, ...values: unknown[]): Step<string>;
llm(
prompt: string,
options: { output: Record<string, unknown>; cli?: string; model?: string }
): Step<unknown>;
agent(name: string, options: AgentOptions): Step<AgentResult>;
human(question: string, options: { to: string }): Promise<boolean>;
dispatch<T>(flow: string, input: unknown): Promise<T>;
done(reason: RunCompletionReason): void;
cloud: CloudHelper;
slack: SlackHelper;
}
The real step shapes (YAML/JSON, packages/sdk/src/spec.ts)
```ts
interface DeterministicStepSpec {
type: 'deterministic';
id: string;
command: string;
dependsOn?: string[];
timeoutMs?: number;
verification?: VerificationSpec; // omit for implicit exit_code
}
interface LlmStepSpec {
type: 'llm';
id: string;
prompt: string;
dependsOn?: string[];
verification?: OutputVerificationSpec;
model?: string;
cli?: string;
}
interface AgentStepSpec {
type: 'agent';
id: string;
instruction: string;
dependsOn?: string[];
verification?: OutputVerificationSpec;
agent?: string; // selects a named FlowSpec.agents entry
cli?: string;
model?: string;
surfaces?: { workspace?: { surface: string }[]; streams?: { stream: string }[]; external?: string[] };
recoveryMode?: 'reset' | 'inspect' | 'manual'; // default 'reset'
permissions?: {
fileGlobs?: string[];
networkAllowlist?: string[];
accessPreset?: 'readonly' | 'readwrite';
};
}
interface FlowSpec {
version: string; // required, e.g. '0.1.0' — not optional
name?: string;
cli?: string; // flow-level CLI default
agents?: Record<string, { cli: string; model: string }>; // both fields required
steps: StepSpec[];
budget?: { maxTokensIn?: number; maxTokensOut?: number; maxDollars?: string };
}
Verification gates
Verification is control flow, not decoration — a gate decides whether a step actually completed, not just whether the process exited cleanly (packages/sdk/src/spec.ts, VerificationGateType):
- id: classify
type: llm
prompt: 'Classify this ticket as bug, feature, or question: "the export button does nothing"'
cli: claude
model: claude-sonnet-4-6
verification:
type: output_contains
value: bug
cli / model: what a step actually runs on
Both YAML and TypeScript agent/llm steps can set cli and model directly (TypeScript since flows#310, AgentOptions.cli?/.model?). Resolution order for cli — checked once per step by preflight.ts's resolveCli (packages/sdk/src/preflight.ts:265-282), identical regardless of authoring language because both compile to the same StepSpec:
$ flows check hello.flow.yaml # agent step, no cli anywhere
REFUSED [cli_unresolved] Step "greeter" has no CLI at step, flow, or project level. No flows.json was found from "..." to the filesystem root.
flows.json
{ "cli": "claude", "executors": ["cron"], "models": ["claude-sonnet-4-6"] }
Human approval and dispatch (TypeScript resident verbs)
```ts
import { flow } from '@relayflows/surface';
export default flow('ship-feature', async (f) => {
const plan = await f.agent('planner', {
task: 'Research and plan: add OAuth2 support',
workspace: 'acme/api: readonly', // compiles to relayauth path scopes
});
const ok = await f.human(`Ship this?\n${plan.summary}`, { to: 'khaliq' });
if (!ok) return f.done('canceled');
const pr = await f.dispatch('garden/implement', plan); // hands off to a child flow
f.done('success');
});
Running it: flows check / run / resume
Real usage (packages/sdk/src/cli.ts):
flows check [--json] <flow.yaml|spec.json>
flows run [--json] [--no-spawn] [--no-observer-link] [--data-dir <dir>] [--local-agent] <flow.yaml|spec.json>
flows run [--json] [--no-spawn] [--no-observer-link] [--data-dir <dir>] [--local-agent] <flow.ts> --input <inline-json-or-file>
flows resume [--json] [--no-spawn] [--no-observer-link] [--data-dir <dir>] <run-id>
Common mistakes
- Forgetting
versionin a YAML/JSONFlowSpec. It's required, not optional —flows checkrefuses a spec without it. - Adding
agents:to a TypeScriptflow()header.FlowHeaderhas no such field; it throwsTypeError: flow header has unknown fields: agentsat authoring time. Named-agent maps +agent:selector are YAML/JSON-only (flows#300 tracks TypeScript composition viause:, not yet shipped). - Assuming
flows.json'smodelssets a default model. It only validates models already declared elsewhere; it never selects one. - Not awaiting a step, or manually
.then()-chaining one. Both are refused (unawaited_step/unsupported_verb) rather than silently ignored — the executor closes every root operation's lifecycle explicitly. - Running a
.flow.tswithout--input. Required even for flows that don't use their input argument. - Expecting a fifth
done()reason. The set is closed:success | step_failed | canceled | budget_exceeded. Don't inventpartialorskipped.
What this skill does NOT cover
- Named-agent maps in TypeScript (
agents: { reviewer: { cli, model } }+ reuse across steps by name) — YAML/JSON only today. Tracked for TS composition viause:at flows#300. recoveryMode,permissions,surfaces,budget,memoryon agent steps — real YAML/JSON fields with no TypeScript equivalent. Author that step in YAML and reach it from TypeScript withf.dispatchif you need them.- Cloud execution (
flows run --cloud), triggers/webhooks, memory retrieval, and thef.mcp/f.slackhelper namespaces — each is its own surface with its own gotchas; see the Relayflows product docs for what's shipped versus designed-but-not-yet-implemented. - The older
@relayflows/coreWorkflowBuilderengine — seewriting-agent-relay-workflowsandmigrating-persona-to-relayflowin this repo.
Quick reference
| Verb / field | Language | Notes |
|---|---|---|
f.run(command) / type: deterministic | both | shell command, implicit exit_code gate |
f.llm(...) / type: llm | both | bare model call, no workspace |
f.agent(name, opts) / type: agent | both | harnessed coding agent, returns {summary, artifacts} |
f.human(question, {to}) | TS only | durable approval; YAML has no equivalent yet |
f.dispatch(flow, input) | TS only | hand off to a named child flow |
f.done(reason) / — | TS / kernel | one of success | step_failed | canceled | budget_exceeded |
options.cli / step.cli | both | per-call/step CLI override (TS: flows#310) |
options.model / step.model | both | per-call/step model; no flow/project default |
agent: <name> + agents: {...} | YAML/JSON only | named cli/model pair, reused by selector |
flows check <file> | CLI | pure validate + preflight, no daemon |
flows run <file> [--input ...] | CLI | actually executes; .flow.ts needs --input |
flows resume <run-id> | CLI | resume a parked/crashed run |
Verified against
AgentWorkforce/flows@86a2ec2 (origin/main). Built packages/surface and packages/sdk from source in a clean worktree (published npm @relayflows/surface@2.0.8 is stale — it predates flows#310 and lacks cli/model on AgentOptions; local build was symlinked in instead), then ran the real CLI:
$ flows check hello.flow.yaml # this skill's YAML example, cli/model added, flows.json models allowlist set
CHECK PASSED hello.flow.yaml # exit 0
$ flows check hello.flow.ts # this skill's TypeScript example
CHECK PASSED hello.flow.ts # exit 0
$ flows check extract.flow.yaml # this skill's output_contains example
CHECK PASSED extract.flow.yaml # exit 0
$ flows check hello.flow.yaml # same YAML, no flows.json anywhere
REFUSED [cli_unresolved] Step "greeter" has no CLI at step, flow, or project level. ... # exit 2
$ flows check hello.flow.yaml # step model not in flows.json's models[]
REFUSED [model_unknown] Step "greeter" declares model "claude-sonnet-4-6" ... not listed in project model registry ... # exit 2
Signals
- GitHub stars
- 851
- Forks
- 66
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Key
writing-relayflows- Source
- github.com/agentworkforce/relay