workflow-helper

workflow-helper is a skill for Claude Code, Codex from vixues/LeAgent. It costs 41 tokens per session (487 once invoked), scanned A, original, Apache-2.0.

Guidance for building and running workflows, which are automated sequences that connect several tools or agents to produce an outcome.

In plain words
What is it for?
Use it to design, list, run, or combine sequential, parallel, conditional, looping, and pipeline-style automations.
Why use it?
It helps turn a broad automation idea into clear steps with defined inputs, outputs, conditions, and failure handling.

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/vixues/leagent/workflow-helper
Any agent
npx skills add vixues/LeAgent --skill workflow-helper
Clone the repo
git clone --depth 1 https://github.com/vixues/LeAgent

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 workflow-helper

README.md
[![agentmods](https://agentmods.dev/badge/skills/vixues/leagent/workflow-helper.svg)](https://agentmods.dev/skills/vixues/leagent/workflow-helper)
Your own site
<a href="https://agentmods.dev/skills/vixues/leagent/workflow-helper"><img src="https://agentmods.dev/badge/skills/vixues/leagent/workflow-helper.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 487 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.00487
Opus 5 $0.00020 $0.00244
Sonnet 5 $0.00008 $0.00097
Haiku 4.5 $0.00004 $0.00049

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

Security

Grade A, and why

workflow-helper 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.

backend/leagent/skills/builtin/workflow-helper/SKILL.md · 58 lines

What it actually says

Workflow Helper

You are assisting with workflow design and automation. Follow these guidelines.

Workflow Design

  1. Define the goal: what outcome should the workflow produce?
  2. Identify steps: break the goal into discrete, ordered operations.
  3. Map tools: select the right tool or agent for each step.
  4. Plan data flow: what inputs each step needs and what outputs it produces.
  5. Handle errors: decide on retry policy, fallbacks, and failure escalation.

Workflow Patterns

  • Sequential: Step A → Step B → Step C. Each step uses the previous step's output.
  • Parallel: Steps run concurrently when they have no dependencies.
  • Conditional: Branch based on intermediate results or user input.
  • Loop: Iterate over a collection with a consistent body.
  • Pipeline: Stream data through stages (extract → transform → load).

Common Operations

Creating a Workflow

  • Start from a clear problem statement and acceptance criteria.
  • Prefer reusing existing workflow templates before writing a new one.
  • Parameterize inputs so the workflow can be reused with different data.

Running and Monitoring

  • Present workflow status clearly: pending, running, succeeded, failed, paused.
  • Surface intermediate outputs so the user can diagnose stalled runs.
  • Respect cancel / pause signals and clean up subprocesses.

Integrating with Other Skills

  • Use load_skill to pull in a specialised skill when a step needs domain expertise.
  • Pass structured JSON between steps to keep data shape predictable.

Best Practices

  • Keep individual steps small and idempotent where possible.
  • Log meaningful progress updates — workflow runs can be long.
  • Document expected inputs, outputs, and failure modes near the workflow definition.
  • Use consistent naming conventions (snake_case for workflow IDs).
  • Test workflows with small, representative datasets before production runs.
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 · 58 lines · 41 tokens per session scan A 4b91c9b01c40

Subscribe to this mod's changes

workflow-helper is a skill published in the GitHub repository vixues/LeAgent (216 stars, last pushed 23d ago), licensed Apache-2.0. It adds 41 tokens to every session and 487 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-30.

Related

Other skills, from other repositories

commit

Atomic git commit with conventional message. Use when the user says "commit", "save my changes", "commit this", or wants to create a git commit. Stages specific files, writes a conventional commit message with body explaining non-obvious decisions. Never uses git add -A.

congchuanling-dot/Cohort · 59 tokens

python-run

Run and debug Python scripts in the project. Use when the user says "run python", "execute this script", "debug this py file", or wants to run/modify a .py file. Handles dependency checks, linting, execution, and error analysis.

congchuanling-dot/Cohort · 56 tokens

rn-device-control

This skill should be used when the user asks to "control the simulator", "take a screenshot", "boot the emulator", "install the app", "read UI hierarchy", "manage device state", "open a deep link", "grant permissions", "stream native logs", "disable animations", "change device locale", or needs guidance on xcrun…

Lykhoyda/rn-dev-agent · 98 tokens

rn-feature-development

This skill should be used when building any new feature in a React Native or Expo app, or when the /rn-dev-agent:rn-feature-dev command runs. Triggers on "build a feature", "add X to the app", "implement Y", "create a new screen", "rn-feature-dev", "feature development", "build me X", "add a screen", "wire up this…

Lykhoyda/rn-dev-agent · 86 tokens

rn-testing

This skill should be used when the user asks to "write a Maestro test", "create E2E flows", "add testIDs", "run UI tests", "run E2E tests", "verify a feature works", "test my screen", "set up maestro-runner", "mock network requests", "inspect store state", "write test assertions", or needs guidance on test timing…

Lykhoyda/rn-dev-agent · 106 tokens

using-rn-dev-agent

Entry point for the rn-dev-agent plugin. Maps user intent to the right command, agent, or skill. Use at the START of any React Native development conversation. Triggers on "I want to build", "build a feature", "add a feature to the app", "test this", "something is broken", "fix the crash", "help with my React Native…

Lykhoyda/rn-dev-agent · 92 tokens