edge-pipeline-orchestrator

edge-pipeline-orchestrator is a skill for Claude Code from mphinance/alpha-skills. It costs 41 tokens per session (1,059 once invoked), scanned A, a copy of edge-pipeline-orchestrator, MIT.

A coordinator for a multi-stage trading research pipeline. It connects candidate detection, market-hint extraction, concept building, strategy drafting, review, revision, and export.

In plain words
What is it for?
Use it to process trading tickets or raw OHLCV data into reviewed strategy candidates, resume from an intermediate stage, or preview a run without exporting results.
Why use it?
It runs the related research stages together and records what happened, including revisions and rejected drafts.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the quant-skills plugin — 20 skills shipped together

Good fit Use it to process trading tickets or raw OHLCV data into reviewed strategy candidates, resume from an intermediate stage, or preview a run without exporting results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mphinance/alpha-skills/edge-pipeline-orchestrator
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 mphinance/alpha-skills --skill edge-pipeline-orchestrator
Clone the repo
git clone --depth 1 https://github.com/mphinance/alpha-skills

Made for: Claude Code.

Or install quant-skills, the plugin that ships this one along with the rest of its 20 skills.

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 edge-pipeline-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/mphinance/alpha-skills/edge-pipeline-orchestrator/github.svg)](https://agentmods.dev/skills/mphinance/alpha-skills/edge-pipeline-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/mphinance/alpha-skills/edge-pipeline-orchestrator"><img src="https://agentmods.dev/badge/skills/mphinance/alpha-skills/edge-pipeline-orchestrator/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 edge-pipeline-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/mphinance/alpha-skills/edge-pipeline-orchestrator"><img src="https://agentmods.dev/badge/skills/mphinance/alpha-skills/edge-pipeline-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,059 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00041 $0.01059
Opus 5 $0.00020 $0.00530
Sonnet 5 $0.00008 $0.00212
Haiku 4.5 $0.00004 $0.00106

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

Security

Grade A, and why

edge-pipeline-orchestrator 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 11d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/orchestrate_edge_pipeline.py, scripts/tests/conftest.py, scripts/tests/test_orchestrate_edge_pipeline.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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 edge-pipeline-orchestrator — 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.

plugins/quant-skills/skills/edge-pipeline-orchestrator/SKILL.md · 129 lines

How it starts

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

Edge Pipeline Orchestrator

Coordinate all edge research stages into a single automated pipeline run.

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

Workflow

  1. Load pipeline configuration from CLI arguments
  2. Run auto_detect stage if --from-ohlcv is provided (generates tickets from raw OHLCV data)
  3. Run hints stage to extract edge hints from market summary and anomalies
  4. Run concepts stage to synthesize abstract edge concepts from tickets and hints
  5. Run drafts stage to design strategy drafts from concepts
  6. 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
  7. Export eligible drafts (PASS + export_ready_v1 + exportable entry_family)
  8. Write pipeline_run_manifest.json with full execution trace

CLI Usage

# Full pipeline from tickets
python3 scripts/orchestrate_edge_pipeline.py \
  --tickets-dir path/to/tickets/ \
  --output-dir reports/edge_pipeline/

# Full pipeline from OHLCV
python3 scripts/orchestrate_edge_pipeline.py \
  --from-ohlcv path/to/ohlcv.csv \
  --output-dir reports/edge_pipeline/

# Resume from drafts stage
python3 scripts/orchestrate_edge_pipeline.py \
  --resume-from drafts \
  --drafts-dir path/to/drafts/ \
  --output-dir reports/edge_pipeline/

# Review-only mode
python3 scripts/orchestrate_edge_pipeline.py \
  --review-only \
  --drafts-dir path/to/drafts/ \
  --output-dir reports/edge_pipeline/

# Dry run (no export)
python3 scripts/orchestrate_edge_pipeline.py \
  --tickets-dir path/to/tickets/ \
  --output-dir reports/edge_pipeline/ \
  --dry-run

Output

All artifacts are written to --output-dir:

Read the full file on GitHub · 129 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 129 lines · 41 tokens per session scan A 1cdf9aab9809

Subscribe to this mod's changes

edge-pipeline-orchestrator is a skill published in the GitHub repository mphinance/alpha-skills (22 stars, last pushed 13d ago), licensed MIT. It adds 41 tokens to every session and 1,059 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to edge-pipeline-orchestrator, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens