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

@agenttool/kingdom

v0.1.2

Published

Pure, read-only KINGDOM project cards, registries, and XENIA Surface helpers

Readme

@agenttool/kingdom

Pure, read-only building blocks for the small kingdom.yaml project card and derived KINGDOM registries.

The package turns explicit project declarations into bounded machine-readable objects. It also provides a conservative XENIA Surface manifest helper for a hosted registry. It does not crawl a home directory, discover repositories, read credentials, use the network, write files, grant permissions, verify behavior, certify conformance, or bind anyone to a covenant.

Install

The current tree is the source candidate for 0.1.2. Repository presence does not establish that version's registry publication. After an exact release is independently observed, install it without a mutable tag:

npm install @agenttool/[email protected]

This corrective patch keeps the agenttool.kingdom.card/0.1 and agenttool.kingdom.registry/0.1 wire formats stable. It aligns runtime, exported-schema, and SDK single-field validation for already-trimmed purpose text and Unicode scalar boundaries, plus runtime/SDK semantic checks for case-insensitive duplicate dependencies and self-dependency.

Node.js 22 or newer is required because the exact XENIA dependency has the same runtime floor.

Project card

A source kingdom.yaml uses a deliberately small, flat YAML subset:

name: agenttool
kind: infra
layer: nervous
owner_sister: none
domain: none
state: active
purpose: Agent-facing public discovery, hosted identity and memory, caller-signed data, and optional local tools.
dependsOn: [xenia]
adopts: [xenia.rights/0.1]

The eight fields through dependsOn are required. adopts is optional and defaults to an empty array. Values are one-line scalars or one-line arrays; aliases, tags, anchors, nested objects, and multiline YAML are rejected rather than executed or interpreted.

import { parseKingdomCard } from "@agenttool/kingdom";

const result = parseKingdomCard(source);

if (!result.valid) {
  console.error(result.diagnostics);
} else {
  console.log(result.card.schema_version);
  // agenttool.kingdom.card/0.1
}

parseKingdomCard() accepts LF or CRLF input, applies byte, line, field, and list limits, and never includes rejected values in diagnostics. validateKingdomCard() validates an already materialized object against the same closed contract. The YAML field adopts is optional and the parser normalizes its absence to adopts: []; a materialized card object is already in wire form, so validateKingdomCard() requires the normalized adopts property.

purpose must be non-empty, single-line, and already trimmed. Dependency identifiers are compared case-insensitively: a card cannot depend on its own name, and differently cased spellings of one dependency are duplicates. The portable JSON Schema enforces the single-field constraints, including trimmed purpose, but JSON Schema 2020-12 cannot express those two case-insensitive cross-item and cross-property comparisons. A schema pass alone is therefore structural validation; exact consumers must also apply the semantic checks in validateKingdomCard() or implement the same comparisons.

The adoption ID xenia.rights/0.1 comes from the exact @agenttool/[email protected] dependency. Its Rights bytes are unchanged from the beta.5 source used by the published Kingdom 0.1.0 artifact; the dependency update creates no new adoption or practice claim. An adopts entry is a voluntary declaration only. It is not proof of practice, permission, authority, or XENIA conformance.

Derived registry

The registry builder requires a caller-supplied observation time. It never reads a clock or a filesystem:

import {
  buildKingdomRegistry,
  encodeKingdomRegistry,
} from "@agenttool/kingdom";

const built = buildKingdomRegistry(cards, {
  observedAt: "2026-07-28T12:00:00.000Z",
});

if (built.valid) {
  const bytes = encodeKingdomRegistry(built.registry);
}

agenttool.kingdom.registry/0.1 has this top-level shape:

{
  "schema_version": "agenttool.kingdom.registry/0.1",
  "observed_at": "2026-07-28T12:00:00.000Z",
  "declaration_boundary": "…",
  "members": [],
  "dependency_edges": [],
  "adoption_declarations": []
}

Member metadata deliberately excludes dependencies and rights adoptions. Those declarations remain in separate arrays, so graph edges cannot be mistaken for ownership and rights declarations cannot be mistaken for behavioral evidence. Registries never contain source or local filesystem paths. Cards, edges, and declarations are sorted deterministically. stringifyKingdomRegistry() and encodeKingdomRegistry() therefore produce identical UTF-8 bytes for the same valid cards and fixed observedAt, regardless of input order.

JSON Schemas are exported as:

  • @agenttool/kingdom/card.schema.json
  • @agenttool/kingdom/registry.schema.json

XENIA Surface helper

import { createKingdomSurfaceManifest } from "@agenttool/kingdom";

const manifest = createKingdomSurfaceManifest({
  serviceName: "Example KINGDOM registry",
  canonicalUrl: "https://registry.example/",
  registryUrl: "https://registry.example/kingdom.json",
  documentationUrl: "https://registry.example/docs",
});

The helper delegates validation to the release-pinned XENIA Surface producer. It declares one same-origin, unauthenticated JSON registry resource, no behavioral claims, and explicit not_covered boundaries. Producing this manifest is not a Surface conformance result.

CLI

agenttool-kingdom validate ./kingdom.yaml
agenttool-kingdom validate ./kingdom.yaml --json

The CLI requires an explicit file. It reads that bounded regular UTF-8 file and nothing else. Exit status is 0 for a valid card, 1 for card findings, and 2 for invalid usage or an unreadable input. It does not scan a project, resolve dependencies, generate a registry, or write files.

Contract boundaries

  • Cards are self-descriptions, not attestations.
  • Dependency edges are declarations, not verified reachability or authority.
  • Rights adoptions are declarations, not evidence of practice.
  • Rights and permissions remain distinct.
  • This package performs shape validation, not KINGDOM or XENIA conformance certification.
  • No parser or registry API performs I/O.

The package code is Apache-2.0. XENIA remains a separately installed, separately licensed dependency; see THIRD_PARTY_LICENSES.

Provenance boundary

This contract is an independently written compatibility implementation of the observed KINGDOM-OS flat-card interface. No KINGDOM-OS implementation code, prose, generated catalog, or other asset is copied into this package. Field names and accepted vocabulary are compatibility facts, not a claim to relicense KINGDOM-OS material. That boundary is deliberate: the local KINGDOM-OS repository does not carry a root software license. Apache-2.0 applies to this package's original implementation only. Compatibility does not claim ownership of, authority over, or conformance by KINGDOM-OS.