npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ethosagent/tools-india-news

v0.1.2

Published

Indian financial news and corporate announcements tools for Ethos AI agents — BSE/NSE filings, earnings calendar, financial news

Readme

@ethosagent/tools-india-news

Indian financial news and corporate announcements tools for Ethos AI agents -- BSE/NSE filings, earnings calendar, and financial news RSS feeds cached in SQLite.

Part of the Ethos AI agent ecosystem. These tools are designed to be registered with an Ethos agent via createIndiaNewsTools(). They can also be used standalone via the CLI.

Install

npm install @ethosagent/tools-india-news

CLI Usage

# Corporate announcements
india-news announcements --symbol RELIANCE --days 30
india-news announcements --category results --days 7

# Earnings calendar
india-news earnings --days 7

# Financial news
india-news news --source et --limit 10
india-news news --source all

# Full-text search
india-news search "Infosys acquisition"

# Cache management
india-news refresh
india-news status
india-news clean

# Version and help
india-news version
india-news help

Environment

INDIA_NEWS_DB=~/.ethos/news-data/news.db  # SQLite database path (default)

Library Usage

import { NewsStore, createIndiaNewsTools } from '@ethosagent/tools-india-news';

// Use the store directly
const store = new NewsStore('~/.ethos/news-data/news.db');
const announcements = store.getAnnouncementsForSymbol('RELIANCE', 30);
store.close();

Ethos Integration

import { createIndiaNewsTools } from '@ethosagent/tools-india-news';

for (const tool of createIndiaNewsTools()) {
  toolRegistry.register(tool);
}

Data Sources

| Source | What | Auth | |---|---|---| | BSE India | Corporate announcements (results, dividends, AGM, acquisitions) | None (public) | | NSE India | Corporate announcements + earnings calendar | Session cookie (automatic) | | Economic Times | Financial news (RSS) | None | | Business Standard | Market + macro news (RSS) | None | | Moneycontrol | Retail-facing market news (RSS) | None |

Tools

| Tool | Description | |---|---| | india_news_announcements | BSE/NSE corporate announcements | | india_news_earnings_calendar | Upcoming earnings result dates | | india_news_feed | Latest financial news from ET, BS, MC | | india_news_search | Full-text search over cached content | | india_news_brief | Single-call session-start news snapshot |

Development

npm install          # install dependencies
npm run check        # typecheck + lint + test
npm run build        # tsup -> dist/
npm run dev          # tsup --watch
make help            # list all Makefile targets

Release

make version-bump-patch   # bump version
# update CHANGELOG.md
git add package.json CHANGELOG.md
git commit -m "chore: release v$(make version)"
git push origin main
# then: GitHub -> Actions -> Release -> Run workflow
make smoke                # verify on npm

License

MIT