AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Workflow Orchestrator

skill-razaib-khan-forgeweave-workflow-orchestrator · by Razaib-khan

Coordinates multi-skill execution pipelines (e.g., research → plan → build → test)

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-razaib-khan-forgeweave-workflow-orchestrator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-razaib-khan-forgeweave-workflow-orchestrator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Workflow Orchestrator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Workflow Orchestrator

Purpose

Coordinate the execution of multiple skills in sequence or parallel to achieve a complex goal. Handles dependency resolution, data passing between skills, error recovery, and progress reporting. The top-level orchestrator that makes multi-step agentic workflows reliable.

When to Use

  • A complex goal requires 3+ skills in sequence (e.g., research → plan → build → test)
  • Multiple independent subtasks can run in parallel
  • A pipeline needs retry logic or error recovery
  • The user wants a multi-step workflow executed end-to-end

When Not to Use

  • Only one skill is needed — invoke it directly
  • The steps are manual and need user approval at each stage
  • The workflow is a simple linear script — use a script instead

Inputs

| Input | Type | Required | Description | |---|---|---|---| | goal | string | Yes | The overall objective | | pipeline_definition | array | No | Explicit skill order if known (auto-generated if omitted) | | fallback_strategy | enum | No (default: stop) | stop, retry, skip |

Expected Outputs

| Output | Description | |---|---| | Pipeline result | The output of the final skill | | Execution trace | What ran, in what order, what each produced | | Status report | Success, failures, and retries |

Exact Workflow Steps

  1. Accept the goal from the user or from a command
  2. Decompose the goal into ordered skills using planner skill
  3. Identify dependencies between skills (blocking, parallel, sequential)
  4. Execute skills in dependency order:
  • Parallel skills run concurrently
  • Sequential skills run in order, passing outputs
  1. After each skill, validate output using validation-engine
  2. On failure: retry, skip, or stop based on fallback strategy
  3. Report results to user with execution trace

Required Checks

  • [ ] All skills in the pipeline are available
  • [ ] Dependency order is correct (no cycles)
  • [ ] Each skill's output is valid before passing to next
  • [ ] Fallback strategy is defined for every pipeline step

Failure Modes

| Failure Condition | Response | |---|---| | Required skill not available | Report missing skill and suggest alternatives | | Pipeline step fails after retries | Report failure with partial results | | Circular dependency detected | Restructure to eliminate the cycle |

Examples

Example: Feature development pipeline

  1. planner → decompose: code design, implement, test, document
  2. architecture-designer → design module structure
  3. code-builder → implement (depends on architecture-designer)
  4. test-generator → create tests (parallel with docs)
  5. validation-engine → validate all outputs
  6. Report results

References

| Reference | Path | |---|---| | Planner skill | ../planner/SKILL.md | | Validation Engine skill | ../validation-engine/SKILL.md | | Command Executor skill | ../command-executor/SKILL.md |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.