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

@ryzome-ai/ryzome-core

v0.1.1

Published

Ryzome core library — shared client, graph builder, and tools

Readme

@ryzome-ai/ryzome-core

Shared logic for Ryzome canvas integrations: API client, 6 canvas tools, graph builder, layout engine, and markdown formatter.

This package powers @ryzome-ai/ryzome-mcp and @ryzome-ai/openclaw-ryzome.

Install

npm install @ryzome-ai/ryzome-core

Exports

| Entry point | What it provides | |-------------|-----------------| | @ryzome-ai/ryzome-core | parseConfig, RyzomeClient, RyzomeApiError, formatCanvasAsMarkdown, toolRegistry | | @ryzome-ai/ryzome-core/config | Config types and constants (DEFAULT_RYZOME_API_URL, RYZOME_API_KEY_ENV_VARS) | | @ryzome-ai/ryzome-core/tools | Individual tool exports (names, schemas, execute functions) | | @ryzome-ai/ryzome-core/lib/ryzome-client | RyzomeClient class and RyzomeClientConfig type |

Tools

The toolRegistry array contains 6 ready-to-register tools:

| Tool name | Description | |-----------|-------------| | create_ryzome_canvas | Create a canvas with explicitly defined nodes and edges | | create_ryzome_plan | Create a canvas from a plan — steps auto-chain in order, with optional branching via dependsOn | | create_ryzome_research | Create a canvas displaying research findings branching from a root topic | | get_ryzome_canvas | Retrieve a canvas by ID, including all nodes and edges | | list_ryzome_canvases | List all canvases accessible to the current user | | upload_ryzome_image | Upload an image from a URL to an existing canvas as an image node |

Each tool entry has name, description, paramsSchema (Zod), and an execute function.

Usage

import { parseConfig, RyzomeClient, toolRegistry } from "@ryzome-ai/ryzome-core";

// Resolve config from env vars
const config = parseConfig({});

// Use tools directly
const result = await toolRegistry[0].execute(
  { title: "My canvas", nodes: [], edges: [] },
  { apiKey: config.apiKey!, apiUrl: config.apiUrl, appUrl: config.appUrl }
);

// Or use the client directly
const client = new RyzomeClient({
  apiKey: config.apiKey!,
  apiUrl: config.apiUrl,
  appUrl: config.appUrl,
});
const canvases = await client.listCanvases();

Configuration

Config is resolved from a config object or environment variables:

| Environment variable | Purpose | |---------------------|---------| | RYZOME_OPENCLAW_API_KEY | API key (highest priority) | | RYZOME_API_KEY | API key (fallback) | | PLUGIN_USER_CONFIG_API_KEY | API key (used by Claude Code plugin) |

Config values support ${ENV_VAR} syntax for environment variable interpolation.

License

MIT