Agent skill

news-impact

Identify what drives stock price moves with drivers, confidence, and returns

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Allowed tools: -Skill-mcp__neo4j-cypher__read_neo4j_cypher-WebSearch-mcp__perplexity__perplexity_search-mcp__perplexity__perplexity_research
Path: skills/analysis/news-impact-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

# 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

What's inside
Steps it walks through
  1. Arguments
  2. Flow
  3. Step 0: Validate Data Availability (REQUIRED FIRST)
  4. Step 1: Get Benzinga News
  5. Step 2: Analyze Each News Item
  6. Step 3: Find Gap Days
  7. Step 4: Research Gaps (WebSearch → Perplexity)
  8. Step 5: Merge and Return
  9. Output Format
  10. Rules
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going