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

@ragieai/skills

v0.1.0

Published

Ragie skills for AI coding agents — document ingestion, retrieval, RAG patterns, and MCP integration

Downloads

19

Readme

@ragieai/skills

Ragie skills for AI coding agents. Install once and your agent understands how to ingest documents, run retrievals, build RAG pipelines, configure the MCP server, and handle multi-tenancy with Ragie.

Works with Claude Code, Cursor, Cline, Copilot, Windsurf, and 40+ other agents.

Installation

Via skills CLI (recommended)

Installs into your current project for whichever agent you use:

npx skills add ragieai/skills

Via npm

For programmatic access to skill and reference content:

npm install @ragieai/skills

Local development

Symlink the skill directory directly into Claude Code's skills folder so edits are reflected immediately:

ln -s /path/to/ragieai/skills/skills/ragie ~/.claude/skills/ragie

What's Included

Skill

One skill — ragie — that activates when you ask about integrating Ragie, building RAG pipelines, ingesting documents, configuring the MCP server, or working with retrievals.

References

| File | Content | |------|---------| | quickstart.md | Install SDK, ingest a document, run first retrieval | | ingestion.md | Files, URLs, raw text, readiness polling, webhooks, bulk ingest | | retrieval.md | Search options, topK, reranking, hybrid search, metadata filters | | mcp.md | MCP server URL pattern, configuration, the retrieve tool | | partitions.md | Multi-tenancy, partition isolation, partition management | | metadata-filtering.md | Tagging documents, filtering at retrieval time | | rag-patterns.md | RAG responses, streaming, citations, tool use, production checklist | | api-reference.md | Full REST endpoint reference, error codes | | python.md | Python SDK equivalents for all patterns |

References are loaded on demand — only what's relevant to the current task is pulled into context.

MCP Server

The Ragie MCP server exposes a retrieve tool scoped to a partition, letting your agent search your knowledge base directly. Configure it with two environment variables:

export RAGIE_API_KEY=ragie_...
export RAGIE_PARTITION=your-partition

The plugin's .mcp.json handles the rest. See mcp.md for multi-partition setup.

Programmatic API

import {
  getSkill,
  getReference,
  getSkillPath,
  getReferencePath,
  getSkillsDir,
} from "@ragieai/skills";

// Get skill or reference content as a string
const skill = getSkill("ragie");
const quickstart = getReference("quickstart");

// Get absolute file paths
const skillPath = getSkillPath("ragie");
const refPath = getReferencePath("rag-patterns");

License

MIT