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-business

v0.5.1

Published

Filament Module: tier-2 business ObjectTypes (domain, entity, value_object, aggregate_root, repository, event, state_machine, process)

Readme

spec-objects-business

Filament Module: tier-2 business ObjectTypes (DDD: domain, entity, value_object, aggregate_root, repository, event, state_machine, process, enumeration)

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-business. 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-business
# quoin — resolve the module from npm by name
quoin plugin install package:@agent-ix/spec-objects-business

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

Object types provided

| Object | type: | Description | |--------|---------|-------------| | Domain | domain | A bounded context defining what it owns vs. delegates to neighbouring contexts, with an optional entity summary, ERD, and ubiquitous language. | | Entity | entity | An object with a stable identity field plus its typed attributes and their meaning. | | Value object | value_object | An immutable value defined by its components, with equality and validity rules but no identity of its own. | | Aggregate root | aggregate_root | The consistency boundary — root, nested entities, owned value objects, and the invariants the root enforces over them. | | Nested entity | nested_entity | An entity owned by an aggregate root, with parent-local identity whose every mutation is mediated by the parent. | | Repository | repository | The collection-like access point that loads and saves whole aggregates, with each operation's signature, behaviour, and failure semantics. | | Event | event | A domain/integration event whose payload contract is given as a JSON Schema. | | State machine | state_machine | An object lifecycle expressed as a mermaid stateDiagram-v2 of states and transitions. | | Process | process | A long-running workflow/saga diagrammed in mermaid (one or more flows), with optional state diagrams, specification, and algorithm. | | Enumeration | enumeration | A controlled label vocabulary (state names, kinds, codes) as a Value | Description table referenced by exact string. |

How this module is used

With quoin (recommended)

# Install this module as a plugin (from a local checkout)
quoin plugin install path:../spec-objects-business

# List the kinds the installed modules expose
quoin catalog list

# Author new artifacts from these object types
quoin write . --types domain,aggregate_root

# Review/validate the authored artifacts
quoin review

See quoin.

With quire-cli directly

# Emit an authoring skeleton for a given kind
quire schema domain --module ./spec_objects_business

# Validate Markdown spec artifacts against the module
quire validate spec/**/*.md --module ./spec_objects_business

# Extract structured object bodies from a document
quire extract spec/order-management.md --module ./spec_objects_business

See quire-cli usage instructions.

Development

Python 3.13+, Poetry managed, flat layout (package spec_objects_business at root). Versioning is dynamic from the Git tag; CI (GitHub Actions on push/pull_request/tag v*.*.*) runs tests + lint and publishes the wheel/sdist to Google Artifact Registry (PyPI-compatible) via twine.

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

Required CI secrets/vars: GCP_SERVICE_ACCOUNT_KEY, GCP_REGION, GCP_PROJECT_NAME, GCP_PYPI.