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

agience-flare-dkg-integration

v0.4.0

Published

npm wrapper for the Agience FLARE × DKG v10 Integration. Governance layer above DKG v10: commit-gated Agience artifacts → typed agience: RDF Knowledge Assets in Working Memory and Shared Memory via the local DKG v10 daemon HTTP API or MCP Streamable HTTP.

Readme

agience-flare-dkg-integration (npm wrapper)

Thin npm wrapper around the Agience FLARE × DKG v10 Integration Python package shipped on PyPI as agience-flare-dkg-integration.

The wrapper exists so the integration can be installed via npm install -g and resolved through the OriginTrail DKG integrations registry cli-kind install flow, without bundling Python or running any install-time scripts.

What this package is — and is not

Is: a 50-line Node CLI shim that spawns the Python agience-dkg CLI if it is on PATH, or prints a single clear pipx install / pip install hint if it is not.

Is not: an alternative implementation. All logic — Working Memory writes, Shared Memory promotion, FLARE confidential retrieval, governed-mode commit-receipt projection, MCP Streamable HTTP transport, typed agience: RDF Knowledge Asset shaping — lives in the Python package.

Security posture

  • No preinstall, install, or postinstall scripts. Section 8a-compliant.
  • No dynamic code loading. No eval, no remote module fetch.
  • No runtime dependencies. Zero third-party packages in dependencies.
  • No egress at install time. The wrapper does nothing until you invoke agience-dkg.

Install

npm install -g agience-flare-dkg-integration

Then install the Python CLI it wraps:

pipx install agience-flare-dkg-integration==0.3.1
# or:
python -m pip install --user agience-flare-dkg-integration==0.3.1

If you invoke agience-dkg before the Python CLI is installed, the wrapper prints the install hint above and exits with code 127.

Usage

All flags and subcommands pass through to the Python CLI unchanged:

agience-dkg wm-write --title "session-note" --content "…"
agience-dkg promote <ual>
agience-dkg search "topic"

Wrapper-only flag:

agience-dkg --wrapper-version

Configuration

Set on the operator's environment, not handled by the wrapper:

| Variable | Purpose | |---|---| | DKG_BASE_URL | Local DKG node base URL (default http://localhost:8081) | | DKG_TOKEN | Bearer token for the local DKG node | | DKG_CONTEXT_GRAPH | Context Graph slug to project into | | AGIENCE_BASE_URL | (governed mode) Agience platform base URL | | AGIENCE_TOKEN | (governed mode) Agience bearer token |

See the parent repository README and DESIGN_BRIEF.md for the full integration story.

License

MIT