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

@cysupper/halo-plugin-spec-kit

v2.0.0

Published

Agentic Skill Distributor & CLI for Halo 2.x Plugin Development

Readme

Halo Plugin Spec Kit (HPS) - Agentic Edition

Empowering AI to build Halo plugins natively. HPS is not just a CLI scaffold; it is a Skill Distributor. It packages Halo 2.x architecture, development standards, and anti-patterns into expert-level Agentic Skills, enabling AI agents (Opencode, Cursor, Windsurf, Trae) to perform "fully automated development".

🇨🇳 中文文档

🎥 Demo

Demo

🌟 Core Features

  • 🧠 Agentic Skill: Built-in halo-plugin-builder skill with full knowledge base of Reactive programming, Extension modeling, and Vue3 UI.
  • 🛡️ Strict Safety: Injects STRICT_RULES to force AI to adhere to non-blocking I/O principles, preventing crash-prone code.
  • 🚀 One-Click Init: Integrates official pnpm create halo-plugin and automatically injects AI skills into your project.
  • 🩺 Doctor: hps doctor automatically checks Java, Node, and Docker environments.

📦 Installation

npm install -g @cysupper/halo-plugin-spec-kit

Or use npx:

npx @cysupper/halo-plugin-spec-kit init

🛠️ Usage Guide

1. Initialize Project

Run in an empty directory:

hps init <project-name>
  • Select AI Agent: Supports Opencode, Cursor, Windsurf, Trae, Claude, etc.
  • Auto Config: Automatically downloads the official template and installs the halo-plugin-builder skill into the corresponding rules directory (e.g., .opencode/skills/ or .cursor/rules/).

2. Start AI Coding

Once created, open your AI Editor (Opencode / Cursor / Trae) and issue a natural language command:

"Build a simple Guestbook feature. I need a Message model and a backend management UI."

The AI will automatically trigger the halo-plugin-builder skill:

  1. Architecture: References architecture.md to create an Extension instead of a MySQL table.
  2. Code Gen: References backend_deep_dive.md to generate Reconciler and Extension Java code.
  3. UI Dev: References frontend_deep_dive.md to generate Vue 3 admin pages.
  4. Self-Check: Verifies compliance with strict_rules.md.

3. Manual Skill Install (Existing Project)

If you have an existing Halo plugin project and just want the AI skill:

cd my-existing-plugin
hps skill

📂 Knowledge Base Inside the Skill

Once installed, your project will contain .opencode/skills/halo-plugin-builder (or similar), featuring:

  • SKILL.md: Core instruction set.
  • references/:
    • backend_deep_dive.md: Spring WebFlux & R2DBC deep guide.
    • frontend_deep_dive.md: Console UI components guide.
    • strict_rules.md: [CRITICAL] Development red lines.
    • architecture.md: Halo 2.x architecture diagrams.
  • assets/templates/: Standardized code templates.

🤖 Supported AI Environments

| AI Agent / IDE | Support Level | Path | | :--- | :--- | :--- | | Opencode Agent | ⭐⭐⭐⭐⭐ | .opencode/skills/ (Native) | | Cursor IDE | ⭐⭐⭐⭐⭐ | .cursor/rules/ (Native) | | Windsurf IDE | ⭐⭐⭐⭐⭐ | .windsurf/rules/ (Native) | | Trae IDE | ⭐⭐⭐⭐⭐ | .trae/rules/ (Native) | | Claude / Copilot | ⭐⭐⭐ | .hps/skills/ (Manual Prompt Copy) |

🔗 Links