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

@blazity-atlas/core

v0.3.0

Published

Config-driven repo memory, rules, skills, and templates for AI agents — the Atlas CLI.

Readme


Atlas

The agentic repo standard.

Atlas gives a git repository the structure that local coding agents need before they can work safely: shared instructions, repo memory, artifact paths, managed skills, and two kinds of gates — structural gates that keep the workspace sound and process gates that turn reviews into recorded verdicts.

The payoff compounds over time. You keep working normally, while Atlas turns useful project context into documentation that grows with the repo and makes each next agent run more effective.

Run one command in the root of your project. Atlas creates the deterministic structure, then hands the rest to your local agent so it can inspect the repository and finish the setup with project-specific context.

Start Here

npx --yes @blazity-atlas/core@latest init

Atlas first asks where the workspace should live — default .ai, any repo-relative path works — then previews the files it wants to write, asks for confirmation in an interactive terminal, creates the workspace and agent entrypoints, and prints the next prompt to give your coding agent. If it detects an agent CLI on your machine (claude, codex, cursor-agent), it can offer to launch it with that prompt directly.

Non-interactive setups pass --root <dir> instead. Custom roots are discovered through a one-line .atlas pointer file at the repo root; the default .ai needs no pointer, and every example below uses it.

Claude Code users can start from the Atlas marketplace instead:

/plugin marketplace add Blazity/atlas
/plugin install atlas@blazity
/atlas:atlas-setup

Both paths use the same published package, @blazity-atlas/core. The Claude Code plugin exposes the managed skills; the CLI still owns the deterministic file structure.

What Atlas Adds

Atlas keeps AI-facing documentation small, explicit, and owned by the repository:

.ai/
  config.json
  LANGUAGE.md
  memory/
  plans/
  research/
  decisions/
  decisions/adrs/
  results/
  skills/atlas-setup/
  skills/atlas-review/
AGENTS.md
CLAUDE.md
.claude/skills -> ../.ai/skills
.agents/skills -> ../.ai/skills
.cursor/skills -> ../.ai/skills

.ai/config.json is the source of truth for artifact locations. If your repo already has useful docs, Atlas can map conventional paths into the .ai/ workspace instead of inventing another documentation system.

How Setup Continues

The first command only writes the shared structure. The printed prompt tells your agent to read .ai/skills/atlas-setup/SKILL.md and follow it. The atlas-setup skill then:

  • inspects the repository before asking questions;
  • lets the agent recommend a template after reading the project — the five templates differ only in path aliases (which conventional docs folders get migrated), so the choice is low-stakes, agent-proposed, and refinable later;
  • fills AGENTS.md, project vocabulary, and stable memory files;
  • keeps Claude, Codex, Cursor, and similar agents pointed at one shared workspace;
  • leaves plans, decisions, research, and results in predictable locations.

This keeps the human flow simple: install Atlas once, then let the local agent adapt it to the actual repository. As work continues, plans, decisions, research, and lessons accumulate where agents can find them instead of disappearing into chat history.

Reviews That Leave a Verdict

Atlas manages a second skill: atlas-review. It walks a change through five modes — Intake, Plan, Review, Gate, and Postmortem — and writes its verdict (pass, conditional pass, or fail) as an artifact into the results path, where the next agent run can find it.

Claude Code users run /atlas:atlas-review. Any other agent gets the same behavior from one instruction: "read .ai/skills/atlas-review/SKILL.md".

Why Atlas Exists

AI can generate code quickly. That is no longer the hard part.

The hard part is keeping the output understandable, reviewable, secure, and aligned with the system your team actually needs to run.

Atlas is built for teams that want AI acceleration without giving up ownership. It brings agents into the delivery process through explicit rules, traceable artifacts, structural and process gates, and human review at the points where judgment matters.

Atlas Core ships two kinds of gates today. Structural gates are doctor's deterministic workspace checks, with frozen exit codes (0 clean, 1 fixable drift, 2 manual conflicts) ready for CI. Process gates are the review skill's evidence-based verdicts, written into the workspace. Execution gates — running tests, evals, and policy checks before merge — are where the standard points next, not what Core runs today.

Principles

  • Ownership stays with the team. Tools run in your repo, your cloud, or your chosen substrate.
  • Every agent needs a gate. Atlas Core ships structural and process gates today; execution gates — tests, evals, and policy checks running before merge — are where the standard points next.
  • Artifacts compound. Plans, decisions, logs, and lessons make the next run stronger.
  • Review moves up the stack. Humans should review architecture, adapter boundaries, risk, and product intent instead of every generated line.
  • No black boxes. Agent work should be traceable, auditable, and reversible.
  • Substrates change. Systems remain. Atlas is designed to survive model and infrastructure churn.

Useful Later

Run atlas doctor to inspect an existing Atlas workspace for drift. Run atlas doctor --fix to apply safe deterministic repairs when the worktree is ready for changes.

Doctor also reports advisories — setup still pending, empty vocabulary or memory. They inform you and nothing else: advisories never fail builds and never block --fix.

Doctor as a CI gate

- name: Atlas structural gate
  run: npx --yes @blazity-atlas/core@latest doctor

The exit codes are a frozen contract: 0 means the workspace is clean, 1 means fixable drift, 2 means conflicts that need a human — advisories never fail the build.

Explore

Built with Atlas

Examples of projects built on the Atlas standard:

Next.js Migration Plugin

Migrate existing websites into structured Next.js projects with guided discovery, component planning, build gates, and visual verification.

Repository

AI Workflow

Move software work from issue to plan, implementation, review, and pull request through governed agent workflows.

Repository