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

@houseofmvps/codescope

v1.0.0

Published

Universal AI context generator. Scans any codebase and generates compact context files for Claude Code, Cursor, Copilot, Codex, and more.

Downloads

58

Readme

codescope

Universal AI context generator. Scans any codebase and generates compact context files that save your AI assistant thousands of tokens per conversation.

Works with Claude Code, Cursor, GitHub Copilot, Codex, Windsurf, Cline and any AI coding tool.

Why

Every time you start a conversation with an AI coding assistant, it spends tokens exploring your codebase to understand the structure. codescope pre-generates that context into compact markdown files so your AI assistant starts with full project understanding immediately.

Quick Start

npx codescope

That's it. Run it in any project root. It generates a .codescope/ directory with context files.

What It Detects

| Category | Supported | |---|---| | Routes | Hono, Express, Fastify, Next.js (App + Pages), Koa, FastAPI, Flask, Django, Go (net/http, Gin, Fiber) | | Schema | Drizzle, Prisma, TypeORM, SQLAlchemy | | Components | React, Vue, Svelte (filters out shadcn/radix primitives) | | Libraries | TypeScript/JavaScript, Python, Go exports with signatures | | Config | Environment variables, config files, key dependencies | | Middleware | Auth, rate limiting, CORS, validation, logging, error handling | | Monorepos | pnpm, npm, yarn workspaces | | Languages | TypeScript, JavaScript, Python, Go |

Output

.codescope/
  CODESCOPE.md      # Combined context (point your AI here)
  routes.md         # All API routes with methods and tags
  schema.md         # Database models with fields, types, relations
  components.md     # UI components with props
  libs.md           # Library exports with signatures
  config.md         # Env vars, config files, key dependencies
  middleware.md     # Auth, rate limiting, CORS, etc.

Example Output

# myapp — AI Context Map

> **Stack:** hono | drizzle | react | typescript
> **Monorepo:** @myapp/api, @myapp/web, @myapp/shared

> 65 routes | 18 models | 16 components | 36 lib files | 22 env vars | 5 middleware

Options

npx codescope                      # Scan current directory
npx codescope ./my-project         # Scan specific directory
npx codescope -o .ai-context       # Custom output directory
npx codescope --json               # Output JSON instead of markdown
npx codescope -d 5                 # Limit directory depth

How to Use with AI Tools

Claude Code

Add to your CLAUDE.md:

Read .codescope/CODESCOPE.md for full project context before making changes.

Cursor

Add to .cursorrules:

Reference .codescope/CODESCOPE.md for project structure and conventions.

GitHub Copilot

Add to .github/copilot-instructions.md:

See .codescope/CODESCOPE.md for project context including routes, schema, and components.

Keep It Fresh

Add to your pre-commit hook or CI:

npx codescope
git add .codescope/

Or add to package.json:

{
  "scripts": {
    "codescope": "codescope"
  }
}

Zero Dependencies

codescope has zero runtime dependencies. It uses only Node.js built-ins for maximum compatibility and speed.

License

MIT