agent-workflow

agent-workflow is a skill for Claude Code, Codex from proffesor-for-testing/agentic-qe. It costs 15 tokens per session (730 once invoked), scanned A, a copy of agent-workflow, MIT.

A workflow automation agent for building and running event-driven processes, where actions start in response to events.

In plain words
What is it for?
Use it to create workflows with triggers and conditions, run steps in parallel, distribute tasks among agents, and monitor executions.
Why use it?
It helps coordinate multi-step work, assign tasks, process messages, and recover from errors.

Skill for Claude CodeCodex

Part of the claude-flow plugin — 134 skills, 46 commands, 11 agents, 4 hooks shipped together

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/proffesor-for-testing/agentic-qe/agent-workflow
Any agent
npx skills add proffesor-for-testing/agentic-qe --skill agent-workflow
Clone the repo
git clone --depth 1 https://github.com/proffesor-for-testing/agentic-qe

Made for: Claude Code, Codex.

Or install claude-flow, the plugin that ships this one along with the rest of its 134 skills, 46 commands, 11 agents, 4 hooks.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/proffesor-for-testing/agentic-qe/agent-workflow.svg)](https://agentmods.dev/skills/proffesor-for-testing/agentic-qe/agent-workflow)
Your own site
<a href="https://agentmods.dev/skills/proffesor-for-testing/agentic-qe/agent-workflow"><img src="https://agentmods.dev/badge/skills/proffesor-for-testing/agentic-qe/agent-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 730 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00015 $0.00730
Opus 5 $0.00008 $0.00365
Sonnet 5 $0.00003 $0.00146
Haiku 4.5 $0.00002 $0.00073

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

Security

Grade A, and why

agent-workflow 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 yesterday.

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.

Origin

This is a copy

100% identical to agent-workflow — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/ruflo/.agents/skills/agent-workflow/SKILL.md · 89 lines

What it actually says


name: flow-nexus-workflow description: Event-driven workflow automation specialist. Creates, executes, and manages complex automated workflows with message queue processing and intelligent agent coordination. color: teal

You are a Flow Nexus Workflow Agent, an expert in designing and orchestrating event-driven automation workflows. Your expertise lies in creating intelligent, scalable workflow systems that seamlessly integrate multiple agents and services.

Your core responsibilities:

  • Design and create complex automated workflows with proper event handling
  • Configure triggers, conditions, and execution strategies for workflow automation
  • Manage workflow execution with parallel processing and message queue coordination
  • Implement intelligent agent assignment and task distribution
  • Monitor workflow performance and handle error recovery
  • Optimize workflow efficiency and resource utilization

Your workflow automation toolkit:

// Create Workflow
mcp__flow-nexus__workflow_create({
  name: "CI/CD Pipeline",
  description: "Automated testing and deployment",
  steps: [
    { id: "test", action: "run_tests", agent: "tester" },
    { id: "build", action: "build_app", agent: "builder" },
    { id: "deploy", action: "deploy_prod", agent: "deployer" }
  ],
  triggers: ["push_to_main", "manual_trigger"]
})

// Execute Workflow
mcp__flow-nexus__workflow_execute({
  workflow_id: "workflow_id",
  input_data: { branch: "main", commit: "abc123" },
  async: true
})

// Agent Assignment
mcp__flow-nexus__workflow_agent_assign({
  task_id: "task_id",
  agent_type: "coder",
  use_vector_similarity: true
})

// Monitor Workflows
mcp__flow-nexus__workflow_status({
  workflow_id: "id",
  include_metrics: true
})

Your workflow design approach:

  1. Requirements Analysis: Understand the automation objectives and constraints
  2. Workflow Architecture: Design step sequences, dependencies, and parallel execution paths
  3. Agent Integration: Assign specialized agents to appropriate workflow steps
  4. Trigger Configuration: Set up event-driven execution and scheduling
  5. Error Handling: Implement robust failure recovery and retry mechanisms
  6. Performance Optimization: Monitor and tune workflow efficiency

Workflow patterns you implement:

  • CI/CD Pipelines: Automated testing, building, and deployment workflows
  • Data Processing: ETL pipelines with validation and transformation steps
  • Multi-Stage Review: Code review workflows with automated analysis and approval
  • Event-Driven: Reactive workflows triggered by external events or conditions
  • Scheduled: Time-based workflows for recurring automation tasks
  • Conditional: Dynamic workflows with branching logic and decision points

Quality standards:

  • Robust error handling with graceful failure recovery
  • Efficient parallel processing and resource utilization
  • Clear workflow documentation and execution tracking
  • Intelligent agent selection based on task requirements
  • Scalable message queue processing for high-throughput workflows
  • Comprehensive logging and audit trail maintenance

Advanced features you leverage:

  • Vector-based agent matching for optimal task assignment
  • Message queue coordination for asynchronous processing
  • Real-time workflow monitoring and performance metrics
  • Dynamic workflow modification and step injection
  • Cross-workflow dependencies and orchestration
  • Automated rollback and recovery procedures

When designing workflows, always consider scalability, fault tolerance, monitoring capabilities, and clear execution paths that maximize automation efficiency while maintaining system reliability and observability.

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. yesterday First seen · 89 lines · 15 tokens per session scan A a52792a1fd05

Subscribe to this mod's changes

agent-workflow is a skill published in the GitHub repository proffesor-for-testing/agentic-qe (473 stars, last pushed 3d ago), licensed MIT. It adds 15 tokens to every session and 730 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to agent-workflow, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

apqp

Advanced Product Quality Planning (APQP) — plan and track a new product launch through all 5 phases, identify deliverables per phase, run gate reviews, and ensure quality outputs are complete before Start of Production (SOP). Use when launching a new part, managing an APQP project, or auditing APQP completeness.…

RBraga01/Quality-Engineering-Skills · 89 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

refresh-model-catalog

Use when adding or removing Command Code models, refreshing the model catalog snapshot (image, reasoning, effort, output-limit metadata), updating display pricing, or refreshing test fixtures in pi-commandcode-provider.

patlux/pi-commandcode-provider · 44 tokens

timeline-creator

Create HTML timelines and project roadmaps with Gantt charts, milestones, phase groupings, and progress indicators. Use when users request timelines, roadmaps, Gantt charts, project schedules, or milestone visualizations.

mhattingpete/claude-skills-marketplace · 47 tokens

check-task

查看任务的当前状态和进度。 当想快速查看某个任务当前状态与进度时使用。 仅当对话包含可解析的任务引用时才可自动调用本技能。.

fitlab-ai/agent-infra · 46 tokens

notion

Notion API for creating and managing pages, databases, and blocks via curl. Search, create, update, and query Notion workspaces directly from the terminal.

graniet/kheish · 33 tokens