warpp-workflow-authoring

warpp-workflow-authoring is a skill for Claude Code, Codex from intelligencedev/manifold. It costs 103 tokens per session (2,268 once invoked), scanned A, original, MIT.

A guide for creating WARPP workflows in Manifold, where data moves between connected processing steps called nodes. The workflow is saved as typed JSON, meaning each connection must use an allowed kind of data.

In plain words
What is it for?
Building and editing Manifold flows, automations, pipelines, and other directed step-by-step data processes.
Why use it?
It helps prevent invalid connections, unsupported expressions, and workflows that cannot be saved or run. It also provides a repeatable way to check the workflow with Manifold's validation tools.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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/intelligencedev/manifold/warpp-workflow-authoring
Any agent
npx skills add intelligencedev/manifold --skill warpp-workflow-authoring
Clone the repo
git clone --depth 1 https://github.com/intelligencedev/manifold

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 warpp-workflow-authoring

README.md
[![agentmods](https://agentmods.dev/badge/skills/intelligencedev/manifold/warpp-workflow-authoring.svg)](https://agentmods.dev/skills/intelligencedev/manifold/warpp-workflow-authoring)
Your own site
<a href="https://agentmods.dev/skills/intelligencedev/manifold/warpp-workflow-authoring"><img src="https://agentmods.dev/badge/skills/intelligencedev/manifold/warpp-workflow-authoring.svg" alt="Measured on agentmods" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,268 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.1 $0.00103 $0.02268
Opus 5 $0.00051 $0.01134
Sonnet 5 $0.00021 $0.00454
Haiku 4.5 $0.00010 $0.00227

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

Security

Grade A, and why

warpp-workflow-authoring 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 6d 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.

assets/skills/warpp-workflow-authoring/SKILL.md · 165 lines

How it starts

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

Authoring WARPP Workflows

WARPP is Manifold's typed-port dataflow engine. A workflow is a directed acyclic graph of nodes. Data moves only through typed wires or literals — there are no expressions. Your job is to produce a valid workflow document (JSON) and prove it valid with workflow_save.

The one rule

Every node is a pure function with declared, typed input and output ports. An input binding is exactly one of:

  • {"from": "nodeID.port"} — a wire from an upstream node's output port
  • {"value": <literal>} — a fixed literal typed into the node

Never both. Never an expression string, template, or ${...}. To reshape data, use a data node (data.extract, data.template, data.parse, …).

The authoring loop (do this every time)

  1. Discover tools with tool_search. For every step that performs an external action (web search/fetch, file I/O, calling an API or another agent, sending a message, RAG, an MCP capability, …), call tool_search with a natural-language description of the capability you need — e.g. "search the web", "read a file", "query a database", "send a slack message". The user may have configured MCP servers that publish tools you cannot know ahead of time, so do not assume a tool exists or guess its name — search, then pick the best-matching result for the step. If several match, choose the most specific/appropriate one.
  2. workflow_catalog — fetch the live node manifests for the tools you chose (plus the builtins), their exact port names/types, and the coercion table. Every registry tool is available as a node typed tool.<name>. Never guess a node type or a port name — read them from the catalog.
  3. Build the document (shape below). Prefer wiring (from) over literals for anything that should be dynamic.
  4. workflow_save — it validates and returns diagnostics. If any come back, fix each one (they carry a code, message, and path) and save again. Do not stop until it saves with no error diagnostics.
  5. workflow_run (only if asked to test) — runs it and returns the declared outputs.

Read the full file on GitHub · 165 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. 6d ago First seen · 165 lines · 103 tokens per session scan A 2cddf9e87afb

Subscribe to this mod's changes

warpp-workflow-authoring is a skill published in the GitHub repository intelligencedev/manifold (497 stars, last pushed 28d ago), licensed MIT. It adds 103 tokens to every session and 2,268 once invoked, about $0.0005 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