strategy-discovery
Strategy Discovery
Purpose
Strategy Discovery is the single entry point for two questions: what strategies exist, and what state are they in. It fronts the Alpha Zoo registry and the SDM strategy store with one facade and answers with computed evidence instead of labels, and it reports the freshness of that evidence on every returned row.
It supersedes the earlier closed-registry attempt. That design attached boolean scenario tags (works in bear markets: yes/no) to a curated list. This skill replaces tags with per-regime evidence rows: every claim that a strategy works in a regime must come from a computed, reproducible backtest stored as evidence, never from curation or inference.
The three query tools are read-only: they never register, mutate, or delete strategies. To add or change strategies, use the strategy-dev-manager and alpha-zoo workflows — Strategy Discovery only reports what those workflows have produced. The fourth tool, refresh_strategy_evidence, is the single write in the surface: it rebuilds ONLY the disposable evidence cache from local backtest run artifacts (see Populating & Refreshing Evidence and Composition Guarantee).
When to Use
Decision tree for routing user requests:
- User asks what strategies exist / "list available strategies" →
list_strategies(limit=..., offset=..., source=...) - User asks which strategy fits a regime or threshold ("what works in bear markets?", "anything with Sharpe above 1?") →
query_strategies(regime=..., min_sharpe=..., ...) - User asks for the evidence behind one specific strategy →
get_strategy_evidence(strategy_id=..., regime=...) - User asks to populate or refresh the evidence cache ("turn my backtest runs into evidence", "the evidence is stale, refresh it") →
refresh_strategy_evidence(manifest_path=...)— this rebuilds the disposable cache from run artifacts; it is NOT strategy creation or registration - User asks to create, backtest, or register a strategy → this is NOT this skill; route to
strategy-generate/strategy-dev-manager/alpha-zoo