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

@strattlabs/agent-readiness-manifest

v0.1.1

Published

An open, declaration-only spec and reference validator for the Agent Readiness Manifest — a single well-known descriptor that points to a site's agent-relevant resources.

Readme

agent-readiness-manifest

License: Apache 2.0 · Spec site · strattlabs.com

An open, declaration-only spec and reference validator for the Agent Readiness Manifest — a single well-known descriptor that points to a site's agent-relevant resources and states its self-declared posture toward automated agents.

Think robots.txt, but for agent discovery: one small JSON file that says "here is everything I declare about how to work with me" and points at your existing llms.txt, MCP descriptor, agent card, OpenAPI doc, policies, and more.

  • 📄 SPEC.md — the specification.
  • 🧱 schema/agent-readiness.schema.json — the normative JSON Schema (draft 2020-12).
  • Reference validator — a small CLI + library that checks a manifest against the schema.

Status: v0.1 draft / request-for-comment. The schema is the normative contract; expect additive change before 1.0.

The manifest is a set of pointers and self-declared posture, and the reference validator is structural only: it tells you a manifest is well-formed against the schema.

Install

pnpm add @strattlabs/agent-readiness-manifest
# or: npm i @strattlabs/agent-readiness-manifest

Requires Node.js ≥ 18.18.

CLI

agent-readiness validate ./.well-known/agent-readiness.json

Exit code 0 when the manifest is structurally valid, 1 when invalid, 2 on a usage error — suitable for CI.

$ agent-readiness validate examples/invalid.json
  /version: must match pattern "^\d+\.\d+$"
  /site: must have required property 'url'
  /resources/llmsTxt: must match pattern "^(https?://|/).+"
  (root): unexpected property "unknownField"
  /policy/agentsAllowed: must be boolean
✗ examples/invalid.json: 5 error(s)

The schema declares a fixed vocabulary (additionalProperties: false), so any property it does not define is reported as an error.

Library

import { validateManifest, type AgentReadinessManifest } from '@strattlabs/agent-readiness-manifest';

const manifest: AgentReadinessManifest = {
  version: '0.1',
  site: { name: 'Acme', url: 'https://acme.example.com' },
  resources: { llmsTxt: '/llms.txt', mcp: '/.well-known/mcp.json' },
  policy: { agentsAllowed: true },
};

const result = validateManifest(manifest);
if (!result.valid) {
  for (const e of result.errors) console.error(`${e.path}: ${e.message}`);
}

The JSON Schema is also importable for use in your own tooling:

import { loadSchema } from '@strattlabs/agent-readiness-manifest';
// or reference the file directly:
import schema from 'agent-readiness-manifest/schema' with { type: 'json' };

Minimal manifest

{
  "$schema": "https://strattlabs.github.io/agent-readiness-manifest/schema/agent-readiness.schema.json",
  "version": "0.1",
  "site": { "url": "https://acme.example.com" }
}

See examples/ for minimal, complete, and intentionally-invalid samples.

Contributing

A new field is welcome when it answers "what does the site declare about itself, or where does it keep an existing resource?" Open an issue to propose one.

Development

pnpm install
pnpm test
pnpm typecheck
pnpm lint
pnpm build

License

Apache-2.0 © 2026 Stratt Labs. Apache-2.0 (rather than MIT) is chosen deliberately for a spec: its explicit patent grant reassures implementers adopting the vocabulary, which is exactly the broad, friction-free adoption a standard wants.


Part of the Stratt Labs toolkit for the agentic web

Small, standards-friendly tools from Stratt Labs: