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

@openobserve/skills

v0.1.0

Published

Install OpenObserve skills into Claude Code, Cursor, VS Code Copilot, and Windsurf

Readme

@openobserve/skills

Install OpenObserve skills into your AI coding tool — Claude Code, Cursor, VS Code Copilot, or Windsurf.

Skills are composable playbooks that teach your AI assistant how to work with OpenObserve: writing SQL queries, building dashboards, creating alerts, investigating incidents, and more.

Installation

No install needed. Use npx to run directly:

npx @openobserve/skills add --all

Usage

Install a specific skill

npx @openobserve/skills add --skill sre-investigation
npx @openobserve/skills add --skill sql-query
npx @openobserve/skills add --skill dashboard-creation

Install all skills

npx @openobserve/skills add --all

Install into a specific AI tool only

npx @openobserve/skills add --all --tool claude
npx @openobserve/skills add --skill sql-query --tool cursor

Supported values for --tool: claude, cursor, vscode, windsurf

List available skills and install status

npx @openobserve/skills list

Output:

Skill                  Tool               Status
------------------------------------------------
SRE Investigation      Claude Code        ✓ installed
SRE Investigation      Cursor               not installed
SQL Query              Claude Code        ✓ installed
...

Remove a skill

npx @openobserve/skills remove --skill sre-investigation
npx @openobserve/skills remove --skill sql-query --tool claude

Available Skills

| Skill ID | Description | |---|---| | sre-investigation | Incident investigation playbook — root cause analysis, log/metric/trace correlation | | sql-query | Write correct SQL and PromQL queries against OpenObserve streams | | dashboard-creation | Build dashboards and panels | | alert-creation | Create alerts and notification destinations | | pipeline-creation | Build ingestion pipelines | | vrl-scripts | Write VRL transformation scripts | | spl-conversion | Convert Splunk SPL queries to OpenObserve SQL |

How It Works

When you run add, the CLI:

  1. Detects which AI tools are installed on your machine
  2. Copies the skill files to the correct location for each tool
  3. Your AI tool picks them up automatically on next use

Claude Code gets the full multi-file structure (SKILL.md + references/) since it natively supports it.

Cursor, VS Code Copilot, and Windsurf get a single flattened markdown file with all content concatenated.

Install paths

| Tool | Path | |---|---| | Claude Code | ~/.claude/skills/o2-<skill>/ | | Cursor | ~/.cursor/rules/o2-<skill>.md | | VS Code Copilot | .vscode/prompts/o2-<skill>.prompt.md | | Windsurf | ~/.codeium/windsurf/memories/o2-<skill>.md |

Requirements

  • Node.js 18+
  • One or more of: Claude Code, Cursor, VS Code with GitHub Copilot, Windsurf

Version Alignment

Skill versions are aligned with OpenObserve releases. Use the version matching your OpenObserve installation:

npx @openobserve/[email protected] add --all