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

@akashikprotocol/core

v0.1.0

Published

The reference SDK for the Akashik Protocol — shared memory and coordination for multi-agent AI systems.

Readme

@akashikprotocol/core

The reference SDK for the Akashik Protocol — shared memory and coordination for multi-agent AI systems.

AI agents today are brilliant individuals with amnesia. They can't see what other agents are doing, can't remember what they decided yesterday, and have no shared sense of what the work is for.

Akashik is an open protocol for fixing that. Persistent shared state. Mandatory intent on every write. Attunement over search.

Where MCP defines how an agent reaches for tools, and A2A defines how agents talk to each other, Akashik defines what they share, how they stay coordinated, and how they reason about each other's context.


Install

npm install @akashikprotocol/core

Quick start

import { createField } from "@akashikprotocol/core";

const field = createField();

// A research agent logs a finding, with intent.
await field.write({
  entry: { topic: "competitor-pricing", source: "crunchbase", value: "$49/mo" },
  intent: "gathering market signal for pricing recommendation",
  agent: "researcher",
});

// A second agent logs a constraint it discovered, also with intent.
await field.write({
  entry: { topic: "competitor-pricing", note: "enterprise tier gated, unverified" },
  intent: "flagging data quality before the writer uses it",
  agent: "fact-checker",
});

// A writer agent attunes to the field — no query string, no search.
const relevant = await field.attune({ agent: "writer", topic: "competitor-pricing" });

// → Both entries, surfaced with their intents, so the writer
//   can reason about *why* the field looks the way it does
//   before it puts a single word on the page.

That's the whole thesis in a handful of lines. Every write carries intent. attune() replaces search with relevance. Multiple agents share one field.

Full runnable example: examples/two-agents.ts.

Deep-dive on attunement: docs/ATTUNE.md.


What's in v0.1

  • write({ entry, intent }) — mandatory intent, enforced at the type level and at runtime.
  • read(query) — retrieve entries from the field.
  • attune(context) — surface what's relevant to an agent right now.
  • TypeScript-first, full types exported.
  • In-memory backend. Zero runtime dependencies beyond ulid.

Persistent storage, framework adapters, and a Python port are on the roadmap.


Learn more

License

Apache-2.0