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

@di-framework/plugin

v1.1.0

Published

Antigravity Agent Plugin & MCP Server for di-framework

Readme

@di-framework/plugin

Official Agent Plugin and Model Context Protocol (MCP) Server for di-framework.

Equips AI coding assistants with deep knowledge of di-framework, version-scoped semantic documentation search, section context expansion, architectural conventions, and diagnostic tools.


Supported Coding Agents

Works seamlessly across all modern AI coding assistants and agentic IDEs:

  • Claude (Claude Code, Claude Desktop)
  • Cursor (.cursor/mcp.json, .cursor/rules/)
  • JetBrains Junie (.idea/mcp.json)
  • Hermes Agent & Nous (.agents/, MCP)
  • Codex & OpenAI Agents (AGENTS.md, MCP)
  • Google Antigravity & Gemini CLI (.agents/plugins/)
  • Vibe & Grok (MCP)

What's Included

  1. Version-Scoped Semantic Documentation Search (di_search_docs):
    • Queries the live Cloudflare Workers AI + Vectorize search engine at https://search.di-framework.dev.
    • Automatically detects your project's installed @di-framework/* package version (e.g. v4.2, v5.0) or falls back to latest.
  2. Context Window Expansion (di_window):
    • Fetches targeted adjacent sections and complete code blocks around a matched heading or cursor without dumping the whole document.
  3. Coding Rules & Conventions (rules/AGENTS.md, .cursor/rules/di-framework.mdc):
    • Enforces pure static factory methods, typed injection tokens, child scopes, and container immutability.
  4. Scaffolding & Diagnostics:
    • di_scaffold_provider: Scaffolds boilerplate service interfaces, tokens, and providers.
    • di_validate_tokens & di_inspect_graph: Validates registrations and detects circular dependencies.
  5. Universal CLI Installer (bin/cli.ts):
    • Automatically provisions config files across all detected coding agents in your workspace.

Installation

In a Project Workspace (Recommended)

Automatically detects existing .cursor, .claude, .idea, or .agents directories in your workspace and configures them:

npx @di-framework/plugin install
# or
bunx @di-framework/plugin install

Target a Specific Agent

npx @di-framework/plugin install --agent cursor
npx @di-framework/plugin install --agent claude
npx @di-framework/plugin install --agent junie
npx @di-framework/plugin install --agent antigravity
npx @di-framework/plugin install --agent all

Globally (Machine-Wide)

npx @di-framework/plugin install --global

MCP Server Manual Configuration

If your environment uses a manual MCP client configuration:

{
  "mcpServers": {
    "di-framework": {
      "command": "npx",
      "args": ["-y", "@di-framework/plugin@latest"]
    }
  }
}

License

Dual-licensed under either Apache-2.0 or MIT at your option.