news-impact
Identify what drives stock price moves with drivers, confidence, and returns
npx skills add majiayu000/claude-skill-registry --skill news-impact-faisalanjum-eventtrader --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# News Impact Identify what drives stock price moves with maximum accuracy, comprehensiveness, and confidence. ## Arguments **Received:** $ARGUMENTS Parse as: `TICKER START_DATE END_DATE [THRESHOLD] [--no-perplexity]` - THRESHOLD: `3s` (default), `1.5s`, `2s`, or fixed percent - `--no-perplexity`: Skip Perplexity for gap days (faster) **If no arguments received, ask user for TICKER, START_DATE, END_DATE.** ## Flow ### Step 0: Validate Data Availability (REQUIRED FIRST) **CRITICAL: Run this query BEFORE any other step. STOP if validation fails.** ```cypher MATCH (c:Company {ticker: $ticker}) OPTIONAL MATCH (d:Date)-[r:HAS_PRICE]->(c) WITH c, max(d.date) AS latest_date, min(d.date) AS earliest_date, count(r) AS price_count RETURN c.name AS company_name, latest_date, earliest_date, price_count, CASE WHEN latest_date >= date($start) THEN true ELSE false END AS has_start_data, CASE WHEN latest_date >= date($end) THEN true ELSE false END AS has_end_data ``` **Validation Rules:** 1. If `company_name` is null → **STOP**: `ERROR: Ticker {ticker} not found in database` 2. If `price_count` = 0 → **STOP**: `ERROR: No price data for {ticker}` 3. If `has_start_data` = false → **STOP**: `ERROR: N
- Arguments
- Flow
- Step 0: Validate Data Availability (REQUIRED FIRST)
- Step 1: Get Benzinga News
- Step 2: Analyze Each News Item
- Step 3: Find Gap Days
- Step 4: Research Gaps (WebSearch → Perplexity)
- Step 5: Merge and Return
- Output Format
- Rules
What does the news-impact skill do?
Identify what drives stock price moves with drivers, confidence, and returns
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill news-impact-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.
