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

@holoscript/framework

v6.1.5

Published

The framework where agents remember, learn, and earn. Knowledge-compounding team orchestration.

Readme

@holoscript/framework

The HoloScript agent/app framework — where agents remember, learn, and earn. It gives an application the building blocks for knowledge-compounding, multi-agent orchestration: composable traits, a knowledge store (local-first with optional remote federation), and a self-improvement scanner that mines a codebase and knowledge base for improvement work.

npm install @holoscript/framework

What's in the box

  • Knowledge store — local in-memory store (optional JSON persistence) with an opt-in remote federation path (publish / search / semantic search / sync).
  • Self-improve — an absorb scanner that queries a knowledge store and scans local sources for improvement tasks.
  • Traits / agents / economy / swarm / board — subpath exports for composing agent behavior, coordination, and knowledge-marketplace primitives.

Usage

Everything network-facing is caller-configured. The knowledge store is fully functional offline; remote federation only activates when you supply a URL and key from your own environment.

import { KnowledgeStore } from '@holoscript/framework';

const store = new KnowledgeStore({
  persist: false,
  // Remote federation is OPT-IN — omit these to stay fully local.
  remoteUrl: process.env.HOLOMESH_ORCHESTRATOR_URL, // your orchestrator endpoint
  remoteApiKey: process.env.HOLOSCRIPT_API_KEY, // injected from your vault/env
});

// Local-first: works with no remote configured.
store.publish(
  { type: 'wisdom', content: 'Always use strict TypeScript', domain: 'compilation', confidence: 0.9, source: 'agent-a' },
  'agent-a'
);

// Remote calls are workspace-scoped. Set HOLOMESH_WORKSPACE to your own scope;
// otherwise the neutral 'default' workspace is used.
const hits = await store.semanticSearch('typescript');

Configuration

| Env var | Purpose | Default when unset | |---|---|---| | HOLOMESH_WORKSPACE | Workspace scope tag sent with remote knowledge calls | 'default' | | HOLOSCRIPT_API_KEY | Auth key for the remote orchestrator (self-improve scanner) | none (remote calls no-op) |

The remote URL and key are passed in through KnowledgeConfig / AbsorbScanConfig or read from your environment — the package ships no default host, key, or private workspace.

Package boundary & release posture

This is a v0-preview consumer package: the HoloScript agent/app framework (traits, knowledge store, self-improve). It is for external users, founder reviewers, and agent operators building on top of the framework — not an internal script.

Config is caller-owned / bring-your-own: you supply the remote orchestrator URL, API key, and workspace scope via your own env / vault. The package does not default consumers into any private workspace — remote knowledge calls are scoped by HOLOMESH_WORKSPACE, and when it is unset the neutral 'default' workspace is used, not the maintainer's workspace. Nothing here is the package default: no host, key, path, or private state ships baked in.

Known limitations: the knowledge store's remote federation targets a knowledge-store HTTP contract (/knowledge/query, /knowledge/sync) that you provide or point at; with no remote configured the store runs local-only and remote-dependent methods degrade gracefully to empty/no-op results. The self-improve scanner reports improvement tasks — it does not apply changes. Interfaces may change before the v1 release. MIT licensed.