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

@sicilianwildcat/aiready

v0.1.25

Published

Audit repositories for AI agent readiness

Readme

aiready

Audit any repository for AI-agent readiness, then generate the harness that makes coding agents effective.

aiready scores how well a repo is set up for AI coding agents across five subsystems — identity, verification, state, memory, and constraints — using intent-based LLM scoring ("can an agent actually do its job with only what's documented here?"). Then it generates the missing harness artifacts (markdown files and docs), customised to your stack. Whether you are starting a new project, or in the middle of a messy project, aiready is meant to give a first draft of the harness artifacts suited to your build, for you to review and modify along the way.

Its content and structure are based on the lessons in walkinglabs/learn-harness-engineering.

Why

A good harness pays for itself every session:

  • Less setup churn — agents orient in seconds instead of re-discovering the project each time.
  • Fewer integration errors — a single documented verify command and explicit MUST/MUST NOT constraints stop agents from running commands that don't exist or breaking rules they couldn't have known.
  • Context that survivesPROGRESS.md, SESSION-HANDOFF.md, and an architecture map keep state across sessions, teammates, and different agents.
  • One source of truth for every agent — Claude Code, Cursor, Codex, and Windsurf all read the same harness (their entry files become thin shims pointing at it).

Quick start

Step 1:

npm install -g @sicilianwildcat/aiready

Already installed? See Updating to pull the latest release.

Step 2: Add an api key for either OpenAI / Anthropic if absent in your repo.

Copy this to your .env, and fill in the api keys.

OPENAI_API_KEY=
ANTHROPIC_API_KEY=

Step 3: Generate repo graph

  • choose the model of your preferance (recommended: Claude Sonnet / Opus / GPT 5.5)
  • aiready leverages graphify to generate this graph.
aiready graph

Step 4: Audit the repo

  • aiready scores the repo and generates gap analysis in plan/plan.md
aiready audit              

Step 5: Initialise artifacts

  • aiready generates custom artifacts to strengthen your harness based on docs available in your repo
  • if existing entry point files (AGENTS.md / CLAUDE.md / cursor / windurf) are present, init reorganises content from these files to AGENTS.md, and points other entry files to AGENTS.md
  • init is meant to create template artifacts based on the content and context available in your repo, doesn't do a deep dive into the code base to generate module level docs, that is deferred to analyze stage, which is currently under development.
aiready init        
  • A score of 70 - 80 is considered ideal for this stage, for it to be considered a well crafted harness as init merely reorganises and improves on existing context found in artifacts from identified source files. The actual code exploration is deffered to analyse stage which is currently underdevelopment, to ensure that the harness can be strengthened with semantic understanding of code.
  • LLM calls are not deterministic, but are stabilised to provide reliable scoring. A +- 5 between calls is expected, and normal.

audit writes a plan to plan/plan.md. init writes canonical docs under docs/, keeps entry points (AGENTS.md, CLAUDE.md, .cursorrules, .windsurfrules) and build files at the root, and prints a before→after score with each remaining gap triaged into you fix it, a later stage fixes it, or done.

In development — not yet available:

aiready analyze · reads your code + graph to document undocumented intent

aiready drift · finds harness docs that have gone stale vs git history

aiready fix · patches exactly what's wrong, with a diff before writing

Updating

After a new release, update your global install:

npm install -g @sicilianwildcat/aiready@latest

Or:

npm update -g @sicilianwildcat/aiready

Check what's installed:

aiready --version
npm list -g @sicilianwildcat/aiready

aiready also prints an update notice when a newer version is available on npm.

How it works

audit → plan/plan.md → init → docs/ + root entry points + Makefile/scripts
  • Discovery is content-based, not name-based — it finds your real sources (requirements.txt, FEATURE_PLAN.md, CI configs, Dockerfile) by what they contain.
  • Nothing is overwritten without --force, and source files are never modified — init extracts from them and suggests (never performs) cleanup.
  • Scores are LLM judgements, so they vary slightly between runs and models — use them as direction, not a fixed metric.

Telemetry

aiready collects anonymous usage data (command run, OS, duration, success or failure) to help improve the tool.

To opt out, set this before running any command:

export CLI_OPEN_TELEMETRY_DISABLE=1

Add that to your shell profile if you want it permanent.

License

MIT