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

hyperspacedb-skills

v3.1.5

Published

AI agent skills (SKILL.md files) for HyperspaceDB integration in Cursor, Claude Code, Antigravity, Windsurf, and custom agents.

Readme

HyperspaceDB Skills for AI Agents

HyperspaceDB Skills MCP

AI agent skills for HyperspaceDB — a curated set of SKILL.md files and agent configuration guides that teach Cursor, Claude Code, Antigravity, Windsurf, and custom agents how to correctly and powerfully use HyperspaceDB.


What Are Skills?

Skills are structured instruction files (SKILL.md) that AI coding assistants read to understand how to work with a library or system. They follow the SKILL.md standard:

---
name: skill-name
description: >
  When to trigger this skill. Used by the agent to decide whether to read it.
---

# Skill instructions...

When you add these skills to your project (e.g., .agents/skills/), your AI agent automatically loads the relevant skill when it detects you're working with HyperspaceDB.


Skills Included

| Skill | Description | |-------|-------------| | hyperspacedb-core | Collections, insert, search, point operations | | hyperspacedb-graph | Graph traversal, Lorentz hierarchy, concept parents | | hyperspacedb-cognitive | CoT stability, Koopman momentum, trust score | | hyperspacedb-depin | DePIN nodes, billing, storage economics | | hyperspacedb-mcp | MCP server setup and all 30+ tool reference |

Agent Config Files

| File | For | |------|-----| | agents/cursor-rules.md | Copy to .cursorrules in your project | | agents/claude-code-instructions.md | Copy to CLAUDE.md in your project root | | agents/custom-agent-template.md | LangChain, LlamaIndex, AutoGen, n8n patterns |


Installation

Option 1: Copy Skills Directly (Any Agent)

# Copy all skills to your project's agents config dir
cp -r node_modules/hyperspacedb-skills/skills .agents/skills/

Or copy just the skills you need:

cp -r node_modules/hyperspacedb-skills/skills/hyperspacedb-core .agents/skills/

Option 2: Reference from node_modules (Cursor/Windsurf)

In .cursor/settings.json:

{
  "skillsDirectories": [
    "./node_modules/hyperspacedb-skills/skills"
  ]
}

Option 3: Cursor Rules

Copy the content of agents/cursor-rules.md into your .cursorrules file.

Option 4: Claude Code

Copy agents/claude-code-instructions.md content into your CLAUDE.md.


MCP Server Quick Reference

For interactive use (Claude Desktop, Cursor Chat, etc.), use the MCP server:

{
  "mcpServers": {
    "hyperspacedb": {
      "command": "npx",
      "args": ["-y", "mcp-hyperspacedb"],
      "env": {
        "HYPERSPACE_HOST": "your-node:50051",
        "HYPERSPACE_API_KEY": "your_key"
      }
    }
  }
}

Then ask your AI: "Create a HyperspaceDB collection for my research papers."


Supported Agents & Hosts

| Agent/Host | Integration method | |------------|-------------------| | Cursor | .cursorrules + .cursor/mcp.json | | Claude Code | CLAUDE.md + MCP config | | Claude Desktop | MCP config only | | Windsurf | ~/.windsurf/mcp.json + skills directory | | Antigravity | .agents/skills/ directory | | LangChain agents | custom-agent-template.md | | LlamaIndex agents | custom-agent-template.md | | n8n workflows | n8n-nodes-hyperspacedb package | | Custom agents | System prompt injection from template |


Version Compatibility

| hyperspacedb-skills | hyperspace-sdk-ts | HyperspaceDB server | |-----------------------|--------------------|--------------------| | 3.1.2 | >=3.1.4 | >=3.1.2 |


License

MIT — © YAR Labs