OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Hostinger VPS
Spin up a VPS in one click, 20% off
Launch on Hostinger →
Gojiberry
AI outreach that finds LinkedIn buyers in buying mode
Try Gojiberry free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
Jotform
Forms, workflows, and AI Agents for your team
Try Jotform free →
Runable
One AI agent to build, run, and grow your business
Try Runable free →
Your product here
Reach 100k AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsMarketplacesNewsletterSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/tradermonty/claude-trading-skills/edge-pipeline-orchestrator
edge-pipeline-orchestrator logo

edge-pipeline-orchestrator

tradermonty/claude-trading-skills
899 installs
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/tradermonty/claude-trading-skills --skill edge-pipeline-orchestrator

Summary

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.

SKILL.md

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
  1. Export eligible drafts (PASS + export_ready_v1 + exportable entry_family)
  2. 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:

output-dir/
├── pipeline_run_manifest.json
├── tickets/          (from auto_detect)
├── hints/hints.yaml  (from hints)
├── concepts/edge_concepts.yaml
├── drafts/*.yaml
├── exportable_tickets/*.yaml
├── reviews_iter_0/*.yaml
├── reviews_iter_1/*.yaml  (if needed)
└── strategies/<candidate_id>/
    ├── strategy.yaml
    └── metadata.json

Claude Code LLM-Augmented Workflow

Run the LLM-augmented pipeline entirely within Claude Code:

  1. Run auto_detect to produce market_summary.json + anomalies.json
  2. Claude Code analyzes data and generates edge hints
  3. Save hints to a YAML file:
- title: Sector rotation into industrials
  observation: Tech underperforming while industrials show relative strength
  symbols: [CAT, DE, GE]
  regime_bias: Neutral
  mechanism_tag: flow
  preferred_entry_family: pivot_breakout
  hypothesis_type: sector_x_stock
  1. Run orchestrator with --llm-ideas-file and --promote-hints:
python3 scripts/orchestrate_edge_pipeline.py \
  --tickets-dir path/to/tickets/ \
  --llm-ideas-file llm_hints.yaml \
  --promote-hints \
  --as-of 2026-02-28 \
  --max-synthetic-ratio 1.5 \
  --strict-export \
  --output-dir reports/edge_pipeline/

Optional Flags

  • --as-of YYYY-MM-DD — forwarded to hints stage for date filtering
  • --strict-export — export-eligible drafts with any warn finding get REVISE instead of PASS
  • --max-synthetic-ratio N — cap synthetic tickets to N × real ticket count (floor: 3)
  • --overlap-threshold F — condition overlap threshold for concept deduplication (default: 0.75)
  • --no-dedup — disable concept deduplication

Note: --llm-ideas-file and --promote-hints are effective only during full pipeline runs. --resume-from drafts and --review-only skip hints/concepts stages, so these flags are ignored.

Resources

  • references/pipeline_flow.md — Pipeline stages, data contracts, and architecture
  • references/revision_loop_rules.md — Review-revision feedback loop rules and heuristics

Score

0–100
63/ 100

Grade

C

Popularity15/30

899 installs — growing adoption.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Edge Pipeline Orchestrator skill score badge previewScore badge

Markdown

[![Edge Pipeline Orchestrator skill](https://www.claudemarket.ai/skills/tradermonty/claude-trading-skills/edge-pipeline-orchestrator/badges/score.svg)](https://www.claudemarket.ai/skills/tradermonty/claude-trading-skills/edge-pipeline-orchestrator)

HTML

<a href="https://www.claudemarket.ai/skills/tradermonty/claude-trading-skills/edge-pipeline-orchestrator"><img src="https://www.claudemarket.ai/skills/tradermonty/claude-trading-skills/edge-pipeline-orchestrator/badges/score.svg" alt="Edge Pipeline Orchestrator skill"/></a>

Edge Pipeline Orchestrator FAQ

How do I install the Edge Pipeline Orchestrator skill?

Run “npx skills add https://github.com/tradermonty/claude-trading-skills --skill edge-pipeline-orchestrator” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Edge Pipeline Orchestrator skill do?

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. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Edge Pipeline Orchestrator skill free?

Yes. Edge Pipeline Orchestrator is a free, open-source skill published from tradermonty/claude-trading-skills. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Edge Pipeline Orchestrator work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Edge Pipeline Orchestrator works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.9M installsInstall
grill-me logo

grill-me

mattpocock/skills

800K installsInstall
frontend-design logo

frontend-design

anthropics/skills

756K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

681K installsInstall
improve-codebase-architecture logo

improve-codebase-architecture

mattpocock/skills

656K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

645K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Code Review SkillsGuide10 Openclaw Skills Every Nextjs Developer NeedsGuideHow To Find The Right Openclaw Skill For Your Project

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+27 more

MCP servers by category

MCP & ToolingBackend & APIsData & AnalysisDevOps & CI/CDAutomationSecurityDocsTesting & QA+24 more

Plugins by category

AutomationDevOps & CI/CDData & AnalysisDesign & CreativeSecurityBackend & APIsFrontendTesting & QA+16 more

Marketplaces by category

AutomationData & AnalysisDevOps & CI/CDDesign & CreativeFrontendBackend & APIsTesting & QASecurity+21 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins
  • Browse Marketplaces
  • Newsletter

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed