workflow-automation-agent

workflow-automation-agent is a skill for Claude Code, Codex from khalilbenaz/claude-skills-collection. It costs 91 tokens per session (1,961 once invoked), scanned A, original, MIT.

A guide for building agents that carry out business processes through a sequence of automated steps. It covers triggers, chained actions, error handling, monitoring, state machines, long-running workflows, event systems, and screen automation.

In plain words
What is it for?
Automating onboarding and other business processes, connecting multiple systems, reacting to events, running browser-based tasks when no API exists, and coordinating long-running jobs.
Why use it?
It helps turn repetitive work into a controlled process while separating fixed steps from tasks that need judgment or human approval. It also provides ways to keep track of failures and work that runs for days or weeks.

Skill for Claude CodeCodex

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

Good fit Automating onboarding and other business processes, connecting multiple systems, reacting to events, running browser-based tasks when no API exists, and coordinating long-running jobs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khalilbenaz/claude-skills-collection/workflow-automation-agent
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.

Any agent
npx skills add khalilbenaz/claude-skills-collection --skill workflow-automation-agent
Clone the repo
git clone --depth 1 https://github.com/khalilbenaz/claude-skills-collection

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-automation-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/workflow-automation-agent/github.svg)](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/workflow-automation-agent)
Your own site
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/workflow-automation-agent"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/workflow-automation-agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for workflow-automation-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/workflow-automation-agent"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/workflow-automation-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,961 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 50
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00091 $0.01961
Opus 5 $0.00046 $0.00981
Sonnet 5 $0.00018 $0.00392
Haiku 4.5 $0.00009 $0.00196

Measured 12d ago against content hash 88608c7cbaff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

workflow-automation-agent scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

response = requests.post(API_URL, json=payload, timeout=10)
agent-skills/workflow-automation-agent/SKILL.md · 189 lines

How it starts

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

Workflow Automation Agent

Workflow

1. Cartographier les processus métier

  • Documenter chaque étape : acteur, système, volume, fréquence, temps moyen.
  • Identifier les tâches 100 % déterministes (à automatiser en priorité) vs les tâches à jugement (LLM ou escalade humaine).
  • Calculer le ROI : (temps_manuel_h × taux_horaire × volume_annuel) − coût_implémentation.
  • Critère d'exclusion : si le processus change plus d'une fois par trimestre, différer ou abstraire la logique dans un fichier de configuration.

2. Choisir l'architecture de l'agent

Besoin Pattern recommandé
Étapes séquentielles simples Pipeline linéaire (fonctions chaînées)
Branchements complexes + état persistant State machine (XState, Temporal)
Processus long-running (jours/semaines) Temporal Workflow ou Azure Durable Functions
Événements multi-sources Chorégraphie via message broker (RabbitMQ, Kafka)
Pas d'API disponible RPA UI avec Playwright ou UiPath

Exemple minimal Temporal (Python) :

@workflow.defn
class OnboardingWorkflow:
    @workflow.run
    async def run(self, user_id: str) -> str:
        await workflow.execute_activity(create_account, user_id, start_to_close_timeout=timedelta(minutes=5))
        await workflow.execute_activity(send_welcome_email, user_id, start_to_close_timeout=timedelta(minutes=2))
        return "done"

3. Implémenter les connecteurs

  • Un connecteur = une classe avec execute(), compensate(), health_check().
  • Toujours décorer avec retry + circuit breaker :
from tenacity import retry, stop_after_attempt, wait_exponential
from circuitbreaker import circuit

@circuit(failure_threshold=5, recovery_timeout=30)
@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=2, max=10))
def call_external_api(payload: dict) -> dict:
    response = requests.post(API_URL, json=payload, timeout=10)
    response.raise_for_status()
    return response.json()
  • RPA UI (sans API) : préférer les sélecteurs stables (data-testid, aria-label) aux sélecteurs CSS fragiles.

Read the full file on GitHub · 189 lines

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. 12d ago First seen · 189 lines · 91 tokens per session scan A 88608c7cbaff

Subscribe to this mod's changes

workflow-automation-agent is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 18d ago), licensed MIT. It adds 91 tokens to every session and 1,961 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.