Agent skill

_old-earnings-orchestrator

Master orchestrator for batch earnings analysis. Processes all 8-Ks for a company chronologically, running prediction→attribution loop with accuracy tracking.

majiayu000534★ · 1 repos on radarGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill old-earnings-orchestrator-faisalanjum-eventtrader --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: ReadWriteGrepGlobBashTodoWriteTaskSkillmcp__neo4j-cypher__read_neo4j_cypher
Path: skills/analysis/old-earnings-orchestrator-faisalanjum-eventtrader/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Earnings Orchestrator **Goal**: Process all 8-K earnings filings for a company chronologically, building a closed-loop prediction→attribution system with accuracy feedback. **Thinking**: ALWAYS use `ultrathink` for maximum reasoning depth. **Input**: Company ticker (e.g., "GBX", "AAPL") --- ## Architecture ``` Master Orchestrator (this skill) │ ├─→ Query Neo4j for all 8-Ks with Item 2.02 │ └─→ For each filing chronologically: │ ├─→ First filing: /earnings-attribution only │ └─→ Subsequent filings: │ ├─→ /earnings-prediction (predict before seeing outcome) │ └─→ /earnings-attribution (verify & learn) ``` --- ## Workflow Use TodoWrite to track progress through all filings. ### Step 1: Query 8-K Universe Query Neo4j for all 8-Ks with Item 2.02 (earnings) for the ticker: ```cypher MATCH (r:Report)-[pf:PRIMARY_FILER]->(c:Company) WHERE c.ticker = $ticker AND r.formType = '8-K' AND any(item IN r.items WHERE item CONTAINS 'Item 2.02') AND pf.daily_stock IS NOT NULL RETURN r.accessionNo AS accession_no, c.ticker AS ticker, c.name AS company_name, r.created AS filing_datetime, pf.daily_stock AS daily_return, pf.daily_macro AS macro_adj_return, r.items AS items ORDER BY r.created ASC ``` E

What's inside
Steps it walks through
  1. Architecture
  2. Workflow
  3. Step 1: Query 8-K Universe
  4. Step 2: Check Processing State
  5. Step 3: Process Each Filing
  6. Step 4: Update Tracking
  7. Accuracy Tracking
  8. Direction Accuracy
  9. Magnitude Accuracy
  10. Running Metrics
  11. Resume Logic
  12. Output Files
  13. Run Summary Format
  14. Invocation Examples
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the _old-earnings-orchestrator skill do?

Master orchestrator for batch earnings analysis. Processes all 8-Ks for a company chronologically, running prediction→attribution loop with accuracy tracking.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill old-earnings-orchestrator-faisalanjum-eventtrader --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going