From tradermonty-claude-trading-skills
Extracts edge hints from market summaries, anomalies, and news reactions into structured hints.yaml for concept synthesis. Supports rule-based processing and optional LLM ideation via CLI or file.
npx claudepluginhub joshuarweaver/cascade-business-ops --plugin tradermonty-claude-trading-skillsThis skill uses the workspace's default tool permissions.
Convert raw observation signals (`market_summary`, `anomalies`, `news reactions`) into structured edge hints.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Convert raw observation signals (market_summary, anomalies, news reactions) into structured edge hints.
This skill is the first stage in the split workflow: observe -> abstract -> design -> pipeline.
hints.yaml input for concept synthesis or auto detection.PyYAMLmarket_summary.jsonanomalies.jsonnews_reactions.csv or news_reactions.jsonhints.yaml containing:
hints listmarket_summary, anomalies, optional news reactions).scripts/build_hints.py to generate deterministic hints.--llm-ideas-cmd — pipe data to an external LLM CLI (subprocess).--llm-ideas-file PATH — load pre-written hints from a YAML file (for Claude Code workflows where Claude generates hints itself).hints.yaml into concept synthesis or auto detection.Note: --llm-ideas-cmd and --llm-ideas-file are mutually exclusive.
Rule-based only (default output to reports/edge_hint_extractor/hints.yaml):
python3 skills/edge-hint-extractor/scripts/build_hints.py \
--market-summary /tmp/edge-auto/market_summary.json \
--anomalies /tmp/edge-auto/anomalies.json \
--news-reactions /tmp/news_reactions.csv \
--as-of 2026-02-20 \
--output-dir reports/
Rule + LLM augmentation (external CLI):
python3 skills/edge-hint-extractor/scripts/build_hints.py \
--market-summary /tmp/edge-auto/market_summary.json \
--anomalies /tmp/edge-auto/anomalies.json \
--llm-ideas-cmd "python3 /path/to/llm_ideas_cli.py" \
--output-dir reports/
Rule + LLM augmentation (pre-written file, for Claude Code):
python3 skills/edge-hint-extractor/scripts/build_hints.py \
--market-summary /tmp/edge-auto/market_summary.json \
--anomalies /tmp/edge-auto/anomalies.json \
--llm-ideas-file /tmp/llm_hints.yaml \
--output-dir reports/
skills/edge-hint-extractor/scripts/build_hints.pyreferences/hints_schema.md