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

@hyperkitlab/skills-solidity

v1.0.0

Published

OpenZeppelin Solidity skills for AI agents - Auto-synced, validated blockchain knowledge

Downloads

184

Readme

@hyperkitlab/skills-solidity

OpenZeppelin Solidity Skills for AI Agents
Auto-synced, validated blockchain knowledge packs for Claude, Cursor, and other AI coding assistants.

🚀 Quick Start

npm install @hyperkitlab/skills-solidity

Usage

import { loadSkillPack, listAvailableSkills } from '@hyperkitlab/skills-solidity';

// Load OpenZeppelin v5 skills
const skillContent = await loadSkillPack('openzeppelin', '5.0.2');

// List all available skills
const skills = await listAvailableSkills();
console.log(skills);
// [{ name: 'openzeppelin-solidity-v5.0.2', version: '5.0.2', provider: 'openzeppelin', language: 'solidity' }]

📦 What's Included

  • OpenZeppelin Contracts v5.x - AccessControl, ERC20, ERC721, Upgradeable patterns
  • Validated Code Examples - All Solidity examples compile successfully
  • Token-Optimized - Under 5000 tokens per SKILL.md for efficient AI context
  • Auto-Synced - Daily updates from upstream provider documentation

🎯 Use Cases

For Developers

Get AI assistance that actually understands Web3:

// In Cursor, Claude Code, or any AI assistant:
// "Create an ERC20 with AccessControl and pausable functionality"
// AI uses the loaded skill and generates correct, current code

For AI Tool Builders

Integrate Web3 knowledge into your AI products:

import { loadSkillPack } from '@hyperkitlab/skills-solidity';

const ozSkills = await loadSkillPack('openzeppelin');
// Use ozSkills content as AI agent context

🔧 Supported Providers

| Provider | Version | Features | | ------------ | ------- | ------------------------------------- | | OpenZeppelin | 5.0.2 | AccessControl, Tokens, NFTs, Upgrades |

📖 SKILL.md Format

Each skill follows the Agent Skills standard (agentskills.io):

---
name: openzeppelin-solidity-v5-0-2
description: OpenZeppelin Contracts for Solidity
version: 5.0.2
language: solidity
providers: openzeppelin
---

# OpenZeppelin SOLIDITY v5.0.2

## Instructions

... (AI-optimized guidance)

### Core Patterns

- **AccessControl**: Role-based permissions
- **ERC20**: Token standard implementation

### Code Examples

```solidity
// Validated, compiling examples
```

## 🛠️ Development

```bash
# Clone
git clone https://github.com/Hyperkit-Labs/skills-sdk
cd skills-sdk

# Install
npm install

# Build
npm run build

# Test
npm test

📊 Quality Guarantees

  • Schema Validation - All SKILL.md files pass strict schema checks
  • Compilation Validation - Every Solidity example compiles with solc
  • Token Limits - Under 5000 tokens for efficient AI loading
  • Daily Syncs - Automatic updates from upstream documentation

📄 License

Apache-2.0 © HyperKit Labs

🔗 Links


Made with ❤️ for the AI + Web3 community