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

repointel

v0.4.1

Published

Repo intelligence CLI - architecture graphs, context slices, and LLM-ready artifacts

Readme

repointel

Repo Intel — Know where you are in your codebase. Always.

Also known as: repo intel, repo-intel, repository intelligence

npm version License: MIT

The Problem

When building with AI assistants, you lose track of where you are. The codebase grows, context fragments, and you end up stuck — unsure what's implemented, what's broken, or what to do next.

repointel fixes this. It traverses your imports recursively, surfaces relevant context, and shows you exactly where you stand in your application buildout.

How I Actually Use It

I don't memorize CLI flags. I just talk to my LLM:

"Run repointel on this project and help me understand where we are."

"Use repointel to update the spec for user authentication."

"Let's run repointel and see if that feature landed across all the slices."

The LLM runs the commands. repointel does the heavy lifting — indexing files, tracing imports, detecting what's connected to what. Then I iterate from there.

The Workflow

Spec → Plan → Task → Execute → Re-index
  1. Spec — Define what you're building (repointel manages .specify/ structure)
  2. Plan — Break it down into technical steps
  3. Task — Generate actionable items
  4. Execute — Build it (with your LLM)
  5. Re-index — Run repointel again to see where you landed

This cycle keeps you oriented. When you're stuck, run repointel ooda and see the current state.

Installation

npm install -g repointel
# or
npx repointel --help

Quick Start

# The OODA loop — observe, orient, decide, act
repointel ooda

# Or scan your repo to build the index
repointel scan

# See your dependency graph
repointel deps

# Slice a specific area for focused context
repointel slice --seeds src/auth/

What It Does

Import Traversal

Starting from any file, repointel walks the import tree — what does this file import? What do those files import? — until it builds a complete picture of that slice of your app.

Spec-Driven Development

Uses SpecKit structure:

  • .specify/specs/ — Feature specifications
  • .specify/memory/constitution.md — Project identity and principles
  • Specs → Plans → Tasks workflow
# Initialize spec structure
repointel specify --init --name "MyApp" --purpose "What this app does"

# Create a feature spec with code context
repointel specify --create "User Auth" --seeds src/auth/

# Focus on a specific feature
repointel specify --focus 1

Architecture Visualization

Generate Mermaid diagrams of your codebase:

repointel viz --seeds src/core/
repointel deps -f mermaid

Context Slicing

Extract focused chunks of your codebase for LLM context:

repointel slice --route /dashboard
repointel slice --seeds src/api/ --name api-layer

Core Commands

| Command | What it does | |---------|--------------| | ooda | Full observe-orient-decide-act loop | | scan | Index your repo (files, imports, exports) | | deps | Show dependency graph | | slice | Extract focused context | | viz | Generate architecture diagrams | | specify | Manage specs, plans, tasks | | spec | Generate spec prompt for a route | | audit | Check implementation vs spec | | heal | Generate fix prompt for drift |

Output Structure

.repointel/
├── index.json           # Repository index
├── graphs/              # Dependency graphs (JSON + Mermaid)
├── slices/              # Context packs for LLMs
└── prompts/             # Generated prompts

.specify/                # SpecKit structure
├── memory/
│   └── constitution.md  # Project identity
├── templates/           # Spec/plan/task templates
└── specs/
    └── 001-feature/
        ├── spec.md
        ├── plan.md
        └── tasks.md

Philosophy

Reduce noise. Surface signal.

When you're deep in a build, entropy accumulates. Files multiply, imports tangle, and you lose the thread. repointel brings you back to center by:

  1. Traversing imports — Following the dependency chain to map what's connected
  2. Slicing context — Giving you just what's relevant, not everything
  3. Tracking specs — Keeping feature state across context switches
  4. Re-indexing — Updating the picture after each work session

The goal isn't to replace your LLM — it's to give your LLM (and you) the context needed to make good decisions.

Works With

  • Frameworks: Next.js, React, Convex, Express, Remix, Astro, Vite
  • LLMs: Claude Code, Cursor, Copilot, any AI assistant
  • Specs: SpecKit, OpenAPI, TypeSpec, GraphQL schemas

Contributing

git clone https://github.com/Nick-Achee/repointel.git
cd repointel
npm install
npm run dev -- scan
npm test

Built by Nick Acheeconsultnta.com

MIT License