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

@agent-ix/spec-objects-operational

v0.5.1

Published

Filament Module: tier-2 operational ObjectTypes (configuration, migration, hook, job, sli, slo)

Downloads

369

Readme

spec-objects-operational

Filament Module: tier-2 operational ObjectTypes (configuration, migration, hook, job, sli, slo)

Agent-IX Filament module loaded by quire-cli and quoin.

Installing quire-cli

@agent-ix packages are published to public npm. Install the CLI globally:

npm install -g @agent-ix/quire-cli

See https://github.com/agent-ix/quire-cli#install for details.

Install this module via npm

This module is also published as a config-only npm package: @agent-ix/spec-objects-operational. The package root is the Filament module (manifest.yaml + schemas/skeletons), so it works directly as a --module target or via quoin's package: source.

npm install @agent-ix/spec-objects-operational
# quoin — resolve the module from npm by name
quoin plugin install package:@agent-ix/spec-objects-operational

# or point any tool at the installed package root
quire validate spec/**/*.md --module node_modules/@agent-ix/spec-objects-operational

Object types provided

| Object | type: | Description | |--------|---------|-------------| | Configuration | configuration | A service's tunable settings as a required ## Configuration table (Name, Scope, Type, Default, Description), where Scope ∈ creation | runtime | session, plus optional load/reload Behavior. | | Migration | migration | A database migration carrying its runnable, idempotent/guarded change in a required ## Migration SQL code block. | | SLI | sli | A service-level indicator defining what is measured (e.g. the success ratio) via a required ## Query code block. | | SLO | slo | A service-level objective with frontmatter target and window fields, describing the reliability goal and its error budget. | | Alert | alert | A burn-rate/monitoring alert whose escalation logic is a required ## Flow mermaid diagram. | | Runbook | runbook | An ordered, executable response procedure captured as a required ## Steps list with the exact operator commands. | | Incident | incident | A post-incident record with a required ## Timeline of timestamped (UTC), ordered, factual events. | | Deployment | deployment | A deployment topology rendered as a required ## Topology mermaid diagram of replicas, services, and dependencies. |

How this module is used

With quoin (recommended)

quoin plugin install path:../spec-objects-operational
quoin catalog list
quoin write . --types configuration,slo
quoin review

See https://github.com/agent-ix/quoin.

With quire-cli directly

quire schema configuration --module ./spec_objects_operational
quire validate spec/**/*.md --module ./spec_objects_operational
quire extract SLO-001.md --module ./spec_objects_operational

See https://github.com/agent-ix/quire-cli#usage-instructions.

Development

Python 3.13+ package (spec_objects_operational, flat layout) managed with Poetry. CI runs on GitHub Actions and publishes to Google Artifact Registry (PyPI-compatible) on tag v*.*.*.

make install          # install dependencies in Poetry venv
make test             # run pytest
make lint             # ruff + black check
make format           # ruff + black format
make build            # build wheel and sdist under dist/
make update-lock      # update poetry.lock
make use-local p=<name>     # switch dep to local pypi.ix
make use-upstream p=<name>  # switch dep back to upstream
make local-publish    # build and publish to local pypi.ix

Install from local PyPI:

pip install --index-url http://pypi.ix/root/dev/+simple/ spec_objects_operational

CI requires the GCP_SERVICE_ACCOUNT_KEY secret and the GCP_REGION, GCP_PROJECT_NAME, and GCP_PYPI variables for Artifact Registry publishing. Versioning is dynamic from the Git tag.