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

fullscope

v0.1.1

Published

See more code. Get better answers. Context optimization MCP server for LLMs — compresses code structurally so models can reason over entire files without losing logic.

Readme

FullScope

See more code. Get better answers.

A context optimization layer for LLMs that enables full-codebase reasoning without losing logic or requiring indexing.

FullScope compresses code structurally so LLMs can process significantly more context — without losing executable logic.


Why this exists

LLMs struggle with real-world codebases. You're forced into tradeoffs:

  • Read full files -- too many tokens
  • Use search/RAG -- lose global context
  • Use summaries -- lose accuracy

FullScope removes that tradeoff. It reduces token usage without rewriting or abstracting your code, allowing models to reason over entire files and larger portions of your project at once.

The result: better answers, not just smaller inputs.

Problem vs Solution


What this enables

  • Understand full modules instead of fragments
  • Trace logic across functions and files
  • Refactor with complete context
  • Debug with full visibility
  • Onboard faster to unfamiliar codebases

In practice, context mode lets models read ~2x more code per prompt. Skeleton mode enables ~5x for architecture review. Actual multiplier depends on file shape and comment density.

How FullScope fits


What makes this different

| | FullScope | RAG/Search | Summarization | |---|---|---|---| | Preserves executable logic | Yes | Partial | No | | Whole-file reasoning | Yes | No (fragments) | No (lossy) | | Zero risk to code | Yes (read-only, SHA-256 verified) | Yes | Yes | | Requires indexing | No | Yes | Sometimes | | Deterministic output | Yes | Varies | No |

What this is not: not a replacement for RAG or search. Not a code editing agent. Not a summarization tool. FullScope is a context amplifier -- it improves how LLMs reason, not how they retrieve or modify code.


Quick Start (60 seconds)

  1. Add to your MCP config:
{
  "mcpServers": {
    "fullscope": {
      "command": "npx",
      "args": ["-y", "fullscope"]
    }
  }
}
  1. Ask your agent:
Use fullscope_project to understand this repo
  1. Pick any file from the project tree and:
Show me the skeleton of index.js
  1. Drill into a function:
Expand fn:login from that file

How it works

FullScope gives models three levels of code visibility:

| Mode | What the LLM sees | What's stripped | |------|-------------------|-----------------| | Context | Full logic, original line numbers | Comments, docstrings, types, whitespace | | Skeleton | Structure only (signatures, imports, expand handles) | All function/class bodies | | Expand | One function's full logic | Everything else in the file |

The agent chooses its minification level per file, per call. Start with skeleton (cheapest), expand only what you need, use context for full logic review.

Task demo: "How does login work?"

Raw read: 1 call, 1,060 tokens

FullScope flow: 2 calls, 311 tokens (71% saved)

Step 1 -- fullscope_skeleton (60 tokens):

import { db } from './db';
import { hash, verify } from './crypto';
import jwt from 'jsonwebtoken';

const ACCESS_TOKEN_EXPIRY = '15m';
const MAX_LOGIN_ATTEMPTS = 5;

export class AuthService extends EventEmitter { /* 319 lines -- expand: fn:AuthService */ }

Step 2 -- fullscope_expand fn:login (251 tokens): returns just the 85-line login method with comments stripped.

Same answer. 71% fewer tokens. 2 targeted calls instead of 1 bulk read.

Try it: npx fullscope --demo


Real savings

Token budget amplification

Benchmarked on 30 files (30,830 lines) across 5 open-source projects and 16 bundled fixtures. Reproducible: npm run benchmark

No modifications were made to source files — all benchmarks run on unedited upstream code.

External projects (not our code)

| File | Source | Lang | Lines | Context | Skeleton | |------|--------|------|------:|--------:|---------:| | applications.py | FastAPI | Python | 4,692 | 78% | 99% | | routing.py | FastAPI | Python | 4,957 | 68% | 94% | | defs.rs | Ripgrep | Rust | 7,780 | 4% | 47% | | walk.rs | Ripgrep | Rust | 2,495 | 51% | 30% | | controller_utils.go | Kubernetes | Go | 1,461 | 46% | 40% | | controller_ref_manager.go | Kubernetes | Go | 597 | 56% | 41% | | fluentd-gcp-configmap.yaml | Kubernetes | YAML | 466 | 0% | 0% | | response.js | Express | JS | 1,048 | 68% | 88% | | application.js | Express | JS | 632 | 99% | 82% | | item.py | python-projects | Python | 484 | 65% | 96% | | main.py (Chess) | python-projects | Python | 662 | 1% | 89% |

Selected to represent different languages, coding styles, and file types:

  • Express / FastAPI — heavily documented, high comment density (best case for context)
  • Kubernetes — production Go with moderate comments + real YAML config
  • Ripgrep — dense Rust systems code with doc comments (tests large files)
  • python-projects — varied beginner code (tests minimal-comment worst case)

Bundled fixtures (16 files)

Includes: JavaScript, TypeScript, Python, Rust, Go, Java, C#, JSON, YAML, TOML, Markdown, HTML, CSS, log files, and broken/malformed edge cases.

Summary

| Scope | Files | Lines | Context | Skeleton | |-------|------:|------:|--------:|---------:| | External code (5 projects) | 14 | 28,063 | 44% | 64% | | Bundled fixtures (7 langs + docs) | 16 | 2,767 | 23% | 41% | | Combined | 30 | 30,830 | 42% | 62% |

Tested across code, config, documentation, and logs.

Task-level benchmarks

| Task | Baseline | FullScope | Savings | Result | |------|----------|---------|--------:|--------| | Explain how login works | 1,060 tokens (1 call) | 311 tokens (2 calls) | 71% | Pass | | Find symbol usages | 2,965 tokens (3 calls) | 304 tokens (1 call) | 90% | Pass | | Orient in new repo | 1,437 tokens (3 calls) | 214 tokens (1 call) | 85% | Pass | | Inspect Python handler | 953 tokens (1 call) | 590 tokens (1 call) | 38% | Pass | | Verify line before edit | 1,060 tokens (1 call) | 66 tokens (1 call) | 94% | Pass |

Estimated 30-file session: ~32,700 tokens saved (~$0.49 at $15/1M).

When savings are low

Savings are minimal when files have few comments (Rust: 4-51%), are mostly data/config (JSON/YAML: 0%), or have no function bodies to collapse (C# property classes: 0% skeleton). In these cases, FullScope prioritizes fidelity over minification.

Token counts are estimated using a lightweight word-count heuristic, not a production tokenizer. Relative savings remain accurate.


Install

Claude Code

// .mcp.json or ~/.claude/settings.json
{
  "mcpServers": {
    "fullscope": {
      "command": "npx",
      "args": ["-y", "fullscope"]
    }
  }
}

Cursor

Settings > Features > MCP > Add New MCP Server

  • Name: fullscope / Type: command / Command: npx -y fullscope

VS Code Copilot

// .vscode/mcp.json
{
  "servers": {
    "fullscope": {
      "command": "npx",
      "args": ["-y", "fullscope"]
    }
  }
}

Gemini CLI

// ~/.gemini/settings.json
{
  "mcpServers": {
    "fullscope": {
      "command": "npx",
      "args": ["-y", "fullscope"]
    }
  }
}

Tools (9)

Orientation

fullscope_project -- Codebase overview in one call. Returns filtered directory tree (.gitignore-aware), compressed config files, git status, detected entry points with critical-path dependencies.

Progressive disclosure

fullscope_skeleton -- Signatures-only view. Shows function/class signatures with bodies replaced by expand handles. Detects standalone functions, class methods, and property-assigned functions (e.g. const handler = () => {}). Includes IMPORTS and EXPORTS summary.

fullscope_expand -- Per-function drill-down. Takes an expand handle from skeleton output (e.g. fn:login or fn:AuthService.login for class methods). Supports multi-line signatures. Returns just that function body with context-level compression.

fullscope_context -- Compressed full-file read. Strips comments, docstrings, types, whitespace. Preserves all logic with original line numbers and virtual markers showing where content was stripped. Supports mode: "schema" for JSON files (keys+types only) and diff: true for compact re-read diffs.

Multi-file

fullscope_batch_context -- Read multiple files in one call. Supports intent parameter (preserves lines matching intent keywords), token budgeting (auto-downshifts to skeleton), cross-file import dedup, and dependency-ordered output.

Discovery

fullscope_search -- Compressed grep via ripgrep. Filters results through language recipes. Path compaction strips the project root.

fullscope_usages -- Symbol usage finder. Searches for per-language import patterns and call sites. Results grouped by file, imports distinguished from usages.

Safety

fullscope_verify_line -- Confirms raw file content at a given line number. Optionally accepts expected content for explicit match verification before editing.

fullscope_stats -- Session savings tracker. Shows files compressed, tokens saved, estimated cost savings, and context-rot warnings.


Safety and integrity

FullScope is read-only by design. It cannot corrupt your code because it never opens a file for writing.

  • Never modifies, patches, or rewrites source files
  • Never executes code or sends data externally
  • If minification fails, raw content is returned unchanged
  • Search uses argument arrays, not shell interpolation (injection-safe)

Verified: 0 byte-level file changes across 203 operations on 34 files, confirmed by SHA-256 hashing before and after every operation. See docs/INTEGRITY.md.

Every compressed output includes:

COMPRESSED VIEW -- do not use these line numbers for editing. Read the raw file before applying changes.


When NOT to use this

  • Editing a file -- use the built-in read tool (exact content needed for search/replace)
  • Exact formatting matters -- comments and whitespace are stripped
  • You need type annotations -- TypeScript types are removed in skeleton mode

FullScope is for reading and understanding, not editing.


Supported languages

Tier 1 (recipe + skeleton): JavaScript, TypeScript, Python, Rust, Go, Java, C#, C/C++

Tier 2 (recipe only): Ruby, PHP, Swift, Kotlin, Scala, HCL/Terraform

Tier 3 (docs + data): Markdown, JSON (compact + schema modes), YAML, TOML, HTML, CSS, XML, config files, log files (with line dedup)


Requirements

  • Node.js 18+ (developed and tested on v24)
  • ripgrep (rg) recommended for search/usages (falls back to grep)
  • Python 3 optional -- improves Python skeletonization (regex fallback available)
  • esbuild optional -- improves TypeScript type-stripping (installed as optional dependency)

Limitations

  • Compressed output is for reading, not editing. Always use raw reads before making changes.
  • Skeletonization is heuristic. C-family languages use brace-depth counting, which can break on complex macros or #ifdef nesting. Property-assigned functions and class methods are detected via pattern matching. Tree-sitter support is planned.
  • Intent filtering is keyword-based, not semantic ranking.
  • Diff cache is session-local (in-memory only, opt-in via diff: true).
  • Savings vary by code style. Comment-heavy code (FastAPI: 78%) saves far more than minimal-comment code (Rust: 8-13%).
  • Skeleton savings depend on structure. Files without functions (data/config) see minimal benefit.
  • Line-number recovery is heuristic. Text matching after compression is verified for common patterns but could mis-anchor on files with many repeated identical lines. Use fullscope_verify_line to confirm before editing.

Verification

npm test                    # 271 tests across 17 files
npm run benchmark           # File + task benchmarks across 30 files
npm run task-benchmark      # 5 real tasks, all passing, avg 76% savings
npm run verify-integrity    # SHA-256 hash verification (34 files, 203 ops)
npx fullscope --demo         # Live demo: skeleton -> expand -> 71% savings

All results committed to data/ (benchmarks.json, task-benchmark.json, integrity-results.json).

Full documentation:


Development

npm install
npm test
npm run benchmark
npm run verify-integrity

Author

Built by Adi Levinshtein.

If you use this in a product, attribution is appreciated.

License

MIT