Edge Pipeline Orchestrator
Orchestrate the full edge research pipeline from candidate detection through strategy design, review, revision, and export. Use when coordinating multi-stage edge research workflows end-to-end.
No API
Download Skill Package (.skill) View Source on GitHub
Table of Contents
1. Overview
Edge Pipeline Orchestrator
2. When to Use
- Run the full edge pipeline from tickets (or OHLCV) to exported strategies
- Resume a partially completed pipeline from the drafts stage
- Review and revise existing strategy drafts with feedback loop
- Dry-run the pipeline to preview results without exporting
3. Prerequisites
- Orchestrates local edge skills via subprocess
- Python 3.9+ recommended
4. Quick Start
# Full pipeline from tickets
python3 skills/edge-pipeline-orchestrator/scripts/orchestrate_edge_pipeline.py \
--tickets-dir /path/to/tickets/ \
--market-summary /path/to/market_summary.json \
--anomalies /path/to/anomalies.json \
--output-dir reports/edge_pipeline/
# Review-only mode with existing drafts
python3 skills/edge-pipeline-orchestrator/scripts/orchestrate_edge_pipeline.py \
--review-only \
--drafts-dir reports/edge_strategy_drafts/ \
--output-dir reports/edge_pipeline/
# Dry-run (no export)
python3 skills/edge-pipeline-orchestrator/scripts/orchestrate_edge_pipeline.py \
--tickets-dir /path/to/tickets/ \
--output-dir reports/edge_pipeline/ --dry-run
5. Workflow
- Load pipeline configuration from CLI arguments
- Run auto_detect stage if –from-ohlcv is provided (generates tickets from raw OHLCV data)
- Run hints stage to extract edge hints from market summary and anomalies
- Run concepts stage to synthesize abstract edge concepts from tickets and hints
- Run drafts stage to design strategy drafts from concepts
- Run review-revision feedback loop:
- Review all drafts (max 2 iterations)
- PASS verdicts accumulated; REJECT verdicts accumulated
- REVISE verdicts trigger apply_revisions and re-review
- Remaining REVISE after max iterations downgraded to research_probe
- Export eligible drafts (PASS + export_ready_v1 + exportable entry_family)
- Write pipeline_run_manifest.json with full execution trace
6. Resources
References:
skills/edge-pipeline-orchestrator/references/pipeline_flow.mdskills/edge-pipeline-orchestrator/references/revision_loop_rules.md
Scripts:
skills/edge-pipeline-orchestrator/scripts/orchestrate_edge_pipeline.py