scenario-analyzer

scenario-analyzer is a skill for Claude Code, Codex from ajeeshworkspace/indian-trading-skills. It costs 61 tokens per session (1,622 once invoked), scanned A, original, MIT.

An analysis workflow for turning Indian market news, policy announcements, and geopolitical events into possible 18-month market scenarios. NSE and BSE are India’s main stock exchanges.

In plain words
What is it for?
It helps classify an event, gather related news, estimate base, bullish, and bearish outcomes, trace first-, second-, and third-order sector effects, and identify potentially affected Indian stocks.
Why use it?
It helps investors think through how one event could affect several industries and companies instead of stopping at the headline.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps classify an event, gather related news, estimate base, bullish, and bearish outcomes, trace first-, second-, and third-order sector effects, and identify potentially affected Indian stocks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ajeeshworkspace/indian-trading-skills --skill scenario-analyzer
Clone the repo
git clone --depth 1 https://github.com/ajeeshworkspace/indian-trading-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scenario-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer/github.svg)](https://agentmods.dev/skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer)
Your own site
<a href="https://agentmods.dev/skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer"><img src="https://agentmods.dev/badge/skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for scenario-analyzer

Your own site · 80×15
<a href="https://agentmods.dev/skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer"><img src="https://agentmods.dev/badge/skills/ajeeshworkspace/indian-trading-skills/scenario-analyzer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,622 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Data Exfiltration · line 66
    Code or instructions that leak agent conversation context to external services, potentially exposing sensitive user interactions.
    Fix: Remove any code that sends prompts, responses, or session data externally. Preserve user privacy; never exfiltrate conversation content.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00061 $0.01622
Opus 5 $0.00030 $0.00811
Sonnet 5 $0.00012 $0.00324
Haiku 4.5 $0.00006 $0.00162

Measured 13d ago against content hash 82df5ed90ab6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

scenario-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/scenario-analyzer/SKILL.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Scenario Analyzer (India Markets)

Overview

This skill takes a news headline or event and builds probabilistic 18-month scenarios with cascading 1st, 2nd, and 3rd order sector impacts and specific stock recommendations for the Indian market.

Architecture

Skill (Orchestrator)
├── Phase 1: Preparation
│   ├── Headline parsing (keywords, entities, actions, numbers)
│   ├── Event classification
│   └── Load references
├── Phase 2: Analysis
│   ├── Collect related news (past 2 weeks via WebSearch)
│   ├── Build 3 scenarios (Base/Bull/Bear, probabilities sum to 100%)
│   ├── Map 1°/2°/3° sector impacts
│   └── Identify 3-5 positive + 3-5 negative impact stocks
└── Phase 3: Report Generation
    ├── Compile findings
    ├── Assess scenario probability distribution
    └── Save report

Event Classification

Classify the headline into one of these categories:

Category Indian Context Examples
Monetary Policy RBI rate decision, CRR/SLR change, liquidity measures
Fiscal Policy Union Budget, GST changes, PLI schemes, disinvestment
Geopolitical India-China border, India-Pakistan, Russia-Ukraine, Middle East
Commodity Crude oil shock, gold prices, metal tariffs, food inflation
Regulatory SEBI rules, RBI NPA norms, telecom spectrum, pharma FDA
Corporate Major M&A, earnings surprise, promoter pledging, fraud
Global Macro Fed rate decision, US recession, China slowdown, tariffs
Weather/Agriculture Monsoon forecast, crop damage, food prices
Elections/Political State elections, central govt policy shifts

Workflow

Phase 1: Preparation

  1. Parse the Headline

    • Extract key entities (companies, sectors, countries, institutions)
    • Identify the action (increase, decrease, ban, approve, delay)
    • Note any numbers (rate changes, ₹ amounts, percentages)
    • Classify the event type
  2. Load References

    Read: references/headline_event_patterns.md
    Read: references/sector_sensitivity_matrix.md
    Read: references/scenario_playbooks.md
    

Read the full file on GitHub · 166 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 166 lines · 61 tokens per session scan A 82df5ed90ab6

Subscribe to this mod's changes

scenario-analyzer is a skill published in the GitHub repository ajeeshworkspace/indian-trading-skills (72 stars, last pushed 20d ago), licensed MIT. It adds 61 tokens to every session and 1,622 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

invest-analyst

A framework for producing professional investment research, including company reports, industry studies, event analysis, analyst-expectation reviews, comparisons, and market summaries. It connects several investment research workflows into one process.

taxueseek/fund-investment-guide · 193 tokens

invest-fund

A Chinese-language guide for analysing investment funds, with different workflows for comparing funds, reviewing ETFs, examining new funds, and studying industry funds.

taxueseek/fund-investment-guide · 142 tokens

invest-stock

A stock-analysis workflow for companies listed in China, Hong Kong, or the United States. It chooses an analysis style based on the market and whether the user requests a deeper valuation review.

taxueseek/fund-investment-guide · 110 tokens

invest-cli

An investment-analysis command-line tool that fetches data for Chinese stocks and funds, US stocks, and stock screening, then applies matching analysis frameworks. A command-line tool is a program operated from a terminal.

taxueseek/fund-investment-guide · 107 tokens

paymob-integration

Integrate Paymob payments for web, mobile, Shopify, and backend apps in Egypt, UAE, KSA, and Oman. Use for checkout, Intention API, HMAC webhooks, reconciliation, SDKs, subscriptions, and refunds.

PaymobAccept/Paymob-AI-Integration-Skill · 54 tokens

invest-allocation

An investment-allocation guide for dividing money among stocks, bonds, commodities such as gold, and cash based on goals, risk tolerance, time horizon, and access needs.

taxueseek/fund-investment-guide · 54 tokens