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

@builderx-ai/context-manager

v0.1.1

Published

A CLI tool for managing and injecting AI coding contexts across projects.

Readme

Context Injector

A CLI tool for managing and injecting AI coding contexts across projects.

Overview

Context Injector is a decentralized tool that enables teams to share and manage coding standards, best practices, and project context for AI coding assistants (Claude Code, GitHub Copilot, Cursor, etc.) through Git repositories.

Key Features

  • 📦 Git-based Context Management - Distribute contexts using standard Git repositories
  • 🔄 Dependency Resolution - Automatically handle context dependencies and versions
  • 🤖 Multi-tool Support - Generate configurations for Claude, Copilot, Cursor, and more
  • 🔒 Version Locking - Ensure team members use consistent context versions
  • 🛡️ Security - Built-in integrity checks and content scanning
  • 📝 Agent Collaboration - AI assistants can improve contexts and contribute back

Quick Start

# Install
npm install -g @builderx-ai/context-manager

# Initialize in your project
ctx init

# Add contexts
ctx add github.com/your-org/coding-standards

# Install all dependencies
ctx install

# Health check
ctx doctor

Documentation

How It Works

1. Define Contexts in Git Repos

Create a context repository with standardized structure:

my-context/
├── context.yaml          # Metadata & dependencies
├── index.md              # Summary (always loaded)
├── details/              # Detailed contexts (loaded on demand)
│   ├── code-style.md
│   ├── architecture.md
│   └── testing.md
└── tools/                # Tool-specific overrides (optional)
    ├── claude.md
    └── copilot.md

2. Add to Your Project

ctx add github.com/company/engineering-standards
ctx add github.com/company/frontend-standards
ctx install

3. Auto-generated Configurations

The tool automatically generates configuration files for all supported AI assistants:

  • CLAUDE.md - Claude Code
  • .github/copilot-instructions.md - GitHub Copilot
  • kilo.md - Kilo Code
  • opencode.md - OpenCode
  • AGENTS.md - OpenAI Codex

Example Use Cases

Company-wide Standards

Share coding standards across all projects:

# Add company base standards
ctx add github.com/company/engineering-standards

# Add framework-specific standards
ctx add github.com/company/react-patterns
ctx add github.com/company/typescript-guide

Team Best Practices

Capture and share team knowledge:

# Add team-specific patterns
ctx add github.com/team/backend-patterns
ctx add github.com/team/database-migrations

Open Source Conventions

Use community best practices:

# Add open source guidelines
ctx add github.com/awesome-contexts/python-best-practices
ctx add github.com/awesome-contexts/security-patterns

Create Your Own Context

Share your standards with your team or the community:

# Create a new context repository
mkdir my-standards && cd my-standards
ctx init --context

# Follow the prompts to create:
# - Personal context for individual use
# - Organizational context for company-wide standards

# Publish to GitHub and share
gh repo create my-org/my-standards --public
git push -u origin main
git tag v1.0.0 && git push --tags

# Now others can use it
ctx add github.com/my-org/my-standards

Project Status

🚧 In Development - This project is currently in the design phase.

Contributing

Contributions are welcome! Please see our contributing guidelines for details.

Development Setup

# Clone the repository
git clone https://github.com/your-org/context-manager.git
cd context-manager

# Install dependencies
npm install

# Run tests
npm test

License

MIT

Acknowledgments

This tool is designed to work seamlessly with:


Note: English is the primary language for this project's documentation. For Chinese speakers, see README.cn.md.