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

indusagi

v0.13.6

Published

Indusagi — a terminal-first AI coding agent framework. Clean-room implementation.

Downloads

1,430

Readme

Indusagi

A terminal-first AI coding-agent framework — a unified multi-provider LLM gateway, an agent runtime with tool-calling, a built-in tool set, an MCP bridge, multi-agent crews, a SaaS-connector bridge, an agent-builder, and homegrown tracing. Clean-room implementation.

Indusagi is designed and written from scratch — its code reuses no third-party application source. See CREDITS.md and NOTICE.

Install / build

npm install
npm run typecheck     # tsc --noEmit  (the type gate)
npm run test          # vitest        (100 tests)
npm run build         # esbuild bundles + tsc declarations -> dist/
npm run lineage-scan  # source-hygiene gate

Use the CLI

node dist/cli.js --help
node dist/cli.js -m <model> -p "explain this repo"     # one-shot (print) mode
node dist/cli.js -m <model> --json                     # JSON line protocol (wire/RPC) mode
node dist/cli.js -m <model>                             # interactive REPL (minimal text view)

Set the provider key for your model (e.g. ANTHROPIC_API_KEY, OPENAI_API_KEY, GEMINI_API_KEY, …). Attach MCP servers with --mcp.

Architecture (capability layers)

| Layer | Module | Subpath | Responsibility | |-------|--------|---------|----------------| | L1 Foundation | llmgateway | indusagi/llmgateway | Multi-provider LLM gateway (adapters, SSE streaming, model catalog, credentials/PKCE) | | L2 Agent | runtime | indusagi/runtime | FSM agent loop, session DAG, compaction, event ledger | | L3 Tools | capabilities | indusagi/capabilities | Built-in tools (bash/files/search/web/todo/process) + registry → ToolBox | | L3 External | interop | indusagi/interop | MCP client/server bridge (official SDK) | | L3 External | connectors-saas | indusagi/connectors-saas | Composio SaaS-connector bridge | | L3 External | swarm | indusagi/swarm | Multi-agent crews (worktrees, mailbox, task board) | | L5 Product | smithy | indusagi/smithy | IndusForge agent-builder | | L5 Product | shell-app | indusagi/shell-app | CLI: boot pipeline, flag parsing, runners (print/wire/repl) | | Cross-cutting | tracing | indusagi/tracing | Homegrown span tracer (no OpenTelemetry SDK) |

import { runtime, capabilities, gateway } from "indusagi";

const agent = runtime.createAgent({
  model: "claude-...",
  tools: capabilities.toolBox("coding"),
});
const result = await agent.submit("list the TODOs in this repo");

Status

v0.12.33 — core complete (gateway · runtime · tools · MCP · shell · Composio · crew · IndusForge · tracing), type-clean and 100 tests green. The interactive terminal UI is a minimal text view behind an InteractiveView seam; a richer UI plugs in there. See reports/ for the per-phase build reports and PROVENANCE.md for the independent-creation log.

Changelog

See CHANGELOG.md for the full version history.

License

MIT — see NOTICE and CREDITS.md.

Credits

Indusagi is an independent implementation, designed and written from scratch. See CREDITS.md for the open standards it implements and its dependency acknowledgements.