Install
$ agentstack add skill-razaib-khan-forgeweave-workflow-orchestrator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Accept the goal from the user or from a command
- Decompose the goal into ordered skills using
plannerskill - Identify dependencies between skills (blocking, parallel, sequential)
- Execute skills in dependency order:
- Parallel skills run concurrently
- Sequential skills run in order, passing outputs
- After each skill, validate output using
validation-engine - On failure: retry, skip, or stop based on fallback strategy
- 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
- planner → decompose: code design, implement, test, document
- architecture-designer → design module structure
- code-builder → implement (depends on architecture-designer)
- test-generator → create tests (parallel with docs)
- validation-engine → validate all outputs
- 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.
- Author: Razaib-khan
- Source: Razaib-khan/ForgeWeave
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.