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

genlayer-skills-pro

v1.0.1

Published

CLI to install GenLayer skills for AI coding assistants (Claude, Cursor, Windsurf, Antigravity, Copilot, and more)

Readme

GenLayer Skills — AI-Agnostic

Quick Install (Recommended)

npm install -g glskills-cli

glskills init                   # Auto-detect your AI assistant
glskills init --ai claude       # Claude Code
glskills init --ai cursor       # Cursor IDE
glskills init --ai windsurf     # Windsurf IDE
glskills init --ai antigravity  # Antigravity
glskills init --ai copilot      # GitHub Copilot
glskills init --ai kiro         # Kiro IDE
glskills init --ai codex        # Codex CLI
glskills init --ai roocode      # Roo Code
glskills init --ai gemini       # Gemini CLI
glskills init --ai all          # All AI assistants

A collection of skills for GenLayer intelligent contract development, compatible with any AI assistant — Antigravity, Claude, Windsurf, Cursor, GitHub Copilot, and others.

How to Use

No installation required. Simply point your AI assistant at the relevant SKILL.md file and ask it to follow the instructions.

With Antigravity / Claude Code (via @-mention or context)

@skills/write-contract/SKILL.md  Help me write a new storage contract
@skills/genvm-lint/SKILL.md      Lint my contract

With Windsurf / Cursor (add to context)

Open the relevant SKILL.md in your editor and include it in your AI chat context.

With any AI assistant (manual)

Copy the contents of the relevant SKILL.md into your prompt, or ask your AI to read the file first.


Available Skills

| Skill | Description | |-------|-------------| | write-contract | Write GenLayer intelligent contracts following best practices | | genvm-lint | Validate contracts with the GenVM linter | | direct-tests | Write and run fast in-memory direct mode tests | | integration-tests | Write and run integration tests against GenLayer environments | | commit | Git commit with conventional commit message generation |


Skill Format

Each skill follows a consistent structure:

  • SKILL.md — Human-readable instructions + AI procedure guide (entry point)
  • skill.yaml (complex skills only) — Machine-readable procedure definition
  • sharp-edges.yaml (complex skills only) — Known pitfalls and how to avoid them
  • collaboration.yaml (complex skills only) — Dependencies and skill composition

Difference from .claude/skills/

This skills/ folder is AI-agnostic — it has no Claude Code-specific hooks, no allowed-tools frontmatter, and no plugin installation needed. Any AI assistant can consume these skills by simply reading the SKILL.md files.

| | .claude/skills/ | skills/ (this folder) | |---|---|---| | Target | Claude Code only | Any AI assistant | | Hooks | Claude Code Stop hooks | None | | Installation | /plugin install | Just read the file | | Frontmatter | allowed-tools, hooks | Minimal, optional |