/india-news-tracker
Track and analyze Indian stock market news, corporate announcements, SEBI circulars, bulk/block deals, and earnings calendars. Auto-fetches headlines from MoneyControl, Economic Times, LiveMint, BSE/NSE filings. Use when the user asks about recent news, corporate actions,
$ npx -y skills add ajeeshworkspace/indian-trading-skills --skill india-news-tracker --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/india-news-tracker
Context preview
The summary Claude sees to decide when to auto-load this skill.
Track and analyze Indian stock market news, corporate announcements, SEBI circulars, bulk/block deals, and earnings calendars. Auto-fetches headlines from MoneyControl, Economic Times, LiveMint, BSE/NSE filings. Use when the user asks about recent news, corporate actions,
SKILL.md
india-news-tracker.SKILL.mdname: india-news-tracker
description: Track and analyze Indian stock market news, corporate announcements, SEBI circulars, bulk/block deals, and earnings calendars. Auto-fetches headlines from MoneyControl, Economic Times, LiveMint, BSE/NSE filings. Use when the user asks about recent news, corporate actions, upcoming events, or wants a daily market news briefing for NSE/BSE.
India News Tracker
Overview
This skill fetches, categorizes, scores, and summarizes Indian market news from multiple sources. It tracks corporate announcements, SEBI circulars, bulk/block deals, insider trades, earnings calendars, and breaking market news — then feeds actionable insights to the user or other skills (like Scenario Analyzer).
Architecture
Skill (Orchestrator)
├── Phase 1: News Collection
│ ├── Web search across Indian financial media
│ ├── BSE/NSE corporate filings
│ ├── Regulatory circulars (SEBI, RBI)
│ └── Bulk/block deal data
├── Phase 2: Processing
│ ├── Categorize by event type
│ ├── Score market impact (1-10)
│ ├── Tag affected sectors and stocks
│ └── Detect sentiment (bullish/bearish/neutral)
├── Phase 3: Analysis
│ ├── Identify top movers from news
│ ├── Cross-reference with price action (via broker MCP)
│ ├── Flag earnings surprises and guidance changes
│ └── Detect theme clusters
└── Phase 4: Report
├── Daily briefing format
├── Stock-specific news digest
├── Sector news roundup
└── Actionable alertsNews Source Priority
Use web search to fetch news from these sources, in order of reliability:
Tier 1 — Official / Regulatory (Highest Priority)
| Source | What to Fetch | Search Query Pattern | |--------|--------------|---------------------| | **BSE India** (bseindia.com) | Corporate announcements, board meeting outcomes, results | `site:bseindia.com [company] announcement` | | **NSE India** (nseindia.com) | Bulk deals, block deals, insider trades, F&O ban list | `site:nseindia.com [topic]` | | **SEBI** (sebi.gov.in) | Circulars, new regulations, enforcement orders | `site:sebi.gov.in circular 2026` | | **RBI** (rbi.org.in) | Monetary policy, banking regulations, forex data | `site:rbi.org.in [topic]` |
Tier 2 — Financial Media (Primary News)
| Source | Strength | Search Query Pattern | |--------|----------|---------------------| | **MoneyControl** | Fastest Indian market news, earnings analysis | `site:moneycontrol.com [topic]` | | **Economic Times Markets** | Corporate news, policy analysis | `site:economictimes.indiatimes.com markets [topic]` | | **LiveMint** | Policy, macro, premium analysis | `site:livemint.com [topic]` | | **Business Standard** | In-depth corporate and policy coverage | `site:business-standard.com [topic]` |
Tier 3 — Supplementary
| Source | Strength | Search Query Pattern | |--------|----------|---------------------| | **NDTV Profit** | Quick market updates | `site:ndtvprofit.com [topic]` | | **Trendlyne** | Technicals, bulk deals, DII/FII data | `site:trendlyne.com [topic]` | | **Screener.in** | Financials, results calendar | `site:screener.in [topic]` | | **Tijori Finance** | Earnings summaries, sector data | `site:tijorifinance.com [topic]` |
Tier 4 — Social / Real-time Sentiment
| Source | Strength | Search Query Pattern | |--------|----------|---------------------| | **X/Twitter** | Breaking news, market sentiment | `site:x.com [topic] NSE OR BSE` | | **Reddit (ISB)** | Retail sentiment, trading ideas | `site:reddit.com/r/IndianStreetBets [topic]` |
Broker MCP Integration
Use broker MCP tools to cross-reference news with live market data:
Groww MCP (if connected)
- `fetch_market_movers_and_trending_stocks_funds` with `STOCKS_IN_NEWS` — stocks currently in news
- `get_ltp` — check price reaction to news
- `fetch_historical_candle_data` — verify price movement post-announcement
- `fetch_stocks_fundamental_data` — earnings data to compare with announced results
- `fetch_market_movers_and_trending_stocks_funds` with `VOLUME_SHOCKERS` — abnormal volume (often news-driven)
- `resolve_market_time_and_calendar` — trading day context
Zerodha Kite MCP (if connected)
- `get_ltp` — last traded price for news impact verification
- `get_quotes` — real-time quotes with depth
- `get_historical_data` — price history for post-news analysis
- `search_instruments` — resolve company names to trading symbols
No Broker Available
- Use web search for all data (MoneyControl, Google Finance for prices)
- yfinance as fallback for historical price data
Workflow
Mode 1: Daily Market Briefing
Trigger: "What's the market news today?", "Daily briefing", "Morning update", "What happened in markets today?"
**Steps:**
1. **Determine market context**
- Call `resolve_market_time_and_calendar` to get current date and market status
- If market is closed, note it and provide previous day's wrap + upcoming catalysts
2. **Fetch top market news** (run searches in parallel)
WebSearch: "Indian stock market news today [date]"
WebSearch: "NSE BSE market update today [date]"
WebSearch: "site:moneycontrol.com market news today"
WebSearch: "site:economictimes.indiatimes.com stock market today"
3. **Fetch stocks in news** (if broker MCP available)
Groww: fetch_market_movers_and_trending_stocks_funds(["STOCKS_IN_NEWS"])
Groww: fetch_market_movers_and_trending_stocks_funds(["VOLUME_SHOCKERS"])
Groww: fetch_market_movers_and_trending_stocks_funds(["TOP_GAINERS", "TOP_LOSERS"])
4. **Fetch regulatory updates**
WebSearch: "SEBI circular [current month] [year]"
WebSearch: "RBI announcement today [date]"
5. **Fetch corporate actions**
WebSearch: "corporate actions NSE [date] ex-date dividend bonus split"
WebSearch: "board meeting results today NSE BSE"
6. **Categorize each news item** using the Event Classification table below
7. **Score market impact** for each news item (1-10 scale, see Scoring Fr
Read more
name: india-news-tracker description: Track and analyze Indian stock market news, corporate announcements, SEBI circulars, bulk/block deals, and earnings calendars. Auto-fetches headlines from MoneyControl, Economic Times, LiveMint, BSE/NSE filings. Use when the user asks about recent news, corporate actions, upcoming events, or wants a daily market news briefing for NSE/BSE.
India News Tracker
Overview
This skill fetches, categorizes, scores, and summarizes Indian market news from multiple sources. It tracks corporate announcements, SEBI circulars, bulk/block deals, insider trades, earnings calendars, and breaking market news — then feeds actionable insights to the user or other skills (like Scenario Analyzer).
Architecture
Skill (Orchestrator)
├── Phase 1: News Collection
│ ├── Web search across Indian financial media
│ ├── BSE/NSE corporate filings
│ ├── Regulatory circulars (SEBI, RBI)
│ └── Bulk/block deal data
├── Phase 2: Processing
│ ├── Categorize by event type
│ ├── Score market impact (1-10)
│ ├── Tag affected sectors and stocks
│ └── Detect sentiment (bullish/bearish/neutral)
├── Phase 3: Analysis
│ ├── Identify top movers from news
│ ├── Cross-reference with price action (via broker MCP)
│ ├── Flag earnings surprises and guidance changes
│ └── Detect theme clusters
└── Phase 4: Report
├── Daily briefing format
├── Stock-specific news digest
├── Sector news roundup
└── Actionable alertsNews Source Priority
Use web search to fetch news from these sources, in order of reliability:
Tier 1 — Official / Regulatory (Highest Priority)
| Source | What to Fetch | Search Query Pattern | |--------|--------------|---------------------| | **BSE India** (bseindia.com) | Corporate announcements, board meeting outcomes, results | `site:bseindia.com [company] announcement` | | **NSE India** (nseindia.com) | Bulk deals, block deals, insider trades, F&O ban list | `site:nseindia.com [topic]` | | **SEBI** (sebi.gov.in) | Circulars, new regulations, enforcement orders | `site:sebi.gov.in circular 2026` | | **RBI** (rbi.org.in) | Monetary policy, banking regulations, forex data | `site:rbi.org.in [topic]` |
Tier 2 — Financial Media (Primary News)
| Source | Strength | Search Query Pattern | |--------|----------|---------------------| | **MoneyControl** | Fastest Indian market news, earnings analysis | `site:moneycontrol.com [topic]` | | **Economic Times Markets** | Corporate news, policy analysis | `site:economictimes.indiatimes.com markets [topic]` | | **LiveMint** | Policy, macro, premium analysis | `site:livemint.com [topic]` | | **Business Standard** | In-depth corporate and policy coverage | `site:business-standard.com [topic]` |
Tier 3 — Supplementary
| Source | Strength | Search Query Pattern | |--------|----------|---------------------| | **NDTV Profit** | Quick market updates | `site:ndtvprofit.com [topic]` | | **Trendlyne** | Technicals, bulk deals, DII/FII data | `site:trendlyne.com [topic]` | | **Screener.in** | Financials, results calendar | `site:screener.in [topic]` | | **Tijori Finance** | Earnings summaries, sector data | `site:tijorifinance.com [topic]` |
Tier 4 — Social / Real-time Sentiment
| Source | Strength | Search Query Pattern | |--------|----------|---------------------| | **X/Twitter** | Breaking news, market sentiment | `site:x.com [topic] NSE OR BSE` | | **Reddit (ISB)** | Retail sentiment, trading ideas | `site:reddit.com/r/IndianStreetBets [topic]` |
Broker MCP Integration
Use broker MCP tools to cross-reference news with live market data:
Groww MCP (if connected)
- `fetch_market_movers_and_trending_stocks_funds` with `STOCKS_IN_NEWS` — stocks currently in news
- `get_ltp` — check price reaction to news
- `fetch_historical_candle_data` — verify price movement post-announcement
- `fetch_stocks_fundamental_data` — earnings data to compare with announced results
- `fetch_market_movers_and_trending_stocks_funds` with `VOLUME_SHOCKERS` — abnormal volume (often news-driven)
- `resolve_market_time_and_calendar` — trading day context
Zerodha Kite MCP (if connected)
- `get_ltp` — last traded price for news impact verification
- `get_quotes` — real-time quotes with depth
- `get_historical_data` — price history for post-news analysis
- `search_instruments` — resolve company names to trading symbols
No Broker Available
- Use web search for all data (MoneyControl, Google Finance for prices)
- yfinance as fallback for historical price data
Workflow
Mode 1: Daily Market Briefing
Trigger: "What's the market news today?", "Daily briefing", "Morning update", "What happened in markets today?"
**Steps:**
1. **Determine market context**
- Call `resolve_market_time_and_calendar` to get current date and market status
- If market is closed, note it and provide previous day's wrap + upcoming catalysts
2. **Fetch top market news** (run searches in parallel)
WebSearch: "Indian stock market news today [date]" WebSearch: "NSE BSE market update today [date]" WebSearch: "site:moneycontrol.com market news today" WebSearch: "site:economictimes.indiatimes.com stock market today"
3. **Fetch stocks in news** (if broker MCP available)
Groww: fetch_market_movers_and_trending_stocks_funds(["STOCKS_IN_NEWS"]) Groww: fetch_market_movers_and_trending_stocks_funds(["VOLUME_SHOCKERS"]) Groww: fetch_market_movers_and_trending_stocks_funds(["TOP_GAINERS", "TOP_LOSERS"])
4. **Fetch regulatory updates**
WebSearch: "SEBI circular [current month] [year]" WebSearch: "RBI announcement today [date]"
5. **Fetch corporate actions**
WebSearch: "corporate actions NSE [date] ex-date dividend bonus split" WebSearch: "board meeting results today NSE BSE"
6. **Categorize each news item** using the Event Classification table below
7. **Score market impact** for each news item (1-10 scale, see Scoring Fr
Showing the first part of this file.
Turn Claude into your Indian market research analyst. 10 specialized skills covering NSE/BSE equities, F&O derivatives, institutional flows, market breadth, live news tracking, and weekly trade planning — all built for Indian markets.
Other skills on indian-trading-skills.
- /backtest-expert
Expert guidance for systematic backtesting of trading strategies on Indian markets (NSE/BSE). Use when developing strategies, testing robustness, avoiding overfitting, or validating trading ideas.
Open skill - /fii-dii-flow-tracker
Track and analyze FII/DII daily buy/sell flows in Indian markets. Use when user asks about institutional flows, FII selling/buying trends, DII activity, or institutional impact on Nifty/market direction.
Open skill - /india-market-breadth
Analyze Indian market breadth health using advance/decline data, stocks above moving averages, new highs/lows, and sector participation. Use when assessing rally quality, market participation width, or equity exposure levels for NSE/BSE.
Open skill - /india-stock-analysis
Use when user requests analysis of Indian stocks, fundamental assessment, technical review, comparisons, or investment reports for NSE/BSE listed companies.
Open skill - /nse-vcp-screener
Screen Nifty 500 stocks for Mark Minervini's Volatility Contraction Pattern (VCP) — identifying Stage 2 uptrends with tightening price ranges and declining volume before potential breakouts. Use this skill when the user requests VCP screening, Minervini-style setups, Stage 2
Open skill - /options-strategy-advisor
Options strategy analysis for Indian F&O markets (NSE). Use when user requests options strategy recommendations, P/L analysis, Greeks calculation, risk management, or F&O strategy planning for Nifty, Bank Nifty, or stock options.
Open skill

