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

@prontiq/ariscan

v0.60.0

Published

Measure and improve repository readiness for AI coding agents

Readme

@prontiq/ariscan

Measure and improve how ready your codebase is for AI coding agents.

ARI (Agent Readiness Index) is a composite score (0-100) derived from 8 research-calibrated pillars. Run a single command to get an actionable readiness report.

Install

npx @prontiq/ariscan .

Or install globally:

npm install -g @prontiq/ariscan
ariscan .

Usage

The examples below use ariscan, which is available after npm install -g @prontiq/ariscan. Replace ariscan with npx @prontiq/ariscan if you haven't installed globally.

# Scan current directory
ariscan .
# — or, without global install —
npx @prontiq/ariscan .

# Scan a specific path
ariscan /path/to/repo

# JSON output (for CI pipelines)
ariscan . --json

# Fail CI if score is below threshold
ariscan . --threshold 60

# Markdown report (with "Quick Start: Top 3 Actions")
ariscan . --format markdown

# SARIF output for GitHub Code Scanning
ariscan . --format sarif

# Generate SVG badge
ariscan . --badge ari-badge.svg

# Export JSON Schema for output validation
ariscan --json-schema > ariscan.schema.json

Exit codes: 0 = pass, 1 = below threshold, 2 = runtime error.

What It Scores

| Pillar | Weight | What It Measures | |---|---|---| | Agent Context Quality | 15% | AGENTS.md quality, information additionality | | Feedback Loop Speed | 15% | Local test/lint/typecheck speed, CI duration | | Test Isolation | 18% | Cloud credential independence, DI patterns | | Dev Environment | 10% | Devcontainer, bootstrap scripts | | Doc Machine-Readability | 10% | OpenAPI schemas, error taxonomy | | Build Determinism & Type Safety | 15% | Strict mode, lockfiles, reproducible builds | | Code Navigability | 12% | Module boundaries, import graph, complexity | | Security & Governance | 5% (gate) | Branch protection, CODEOWNERS, secrets scanning |

Maturity Levels

| Level | Score | Meaning | |---|---|---| | L1 Hostile | 0-25 | Agents face significant friction — missing guardrails | | L2 Fragile | 26-45 | Simple edits feasible with close supervision | | L3 Capable | 46-65 | Routine tasks with moderate supervision | | L4 Productive | 66-80 | Multi-file features with light supervision | | L5 Autonomous | 81-100 | Complex cross-service tasks, self-verified |

Security acts as a gate: scoring below 40% on Security & Governance caps the overall level at L2.

Programmatic API

For programmatic use, import scan from @prontiq/ariscan-engine directly:

import { scan } from "@prontiq/ariscan-engine";

const result = await scan(".");
console.log(result.score);         // 0-100
console.log(result.level);         // "L1" .. "L5"

Related Packages

License

Elastic License 2.0 (ELv2) — free to use, modify, and redistribute. Cannot be offered as a managed service.