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

@heretek-ai/openclaw-skill-extensions

v1.0.0

Published

Custom skill extensions for OpenClaw with composition and versioning

Readme

OpenClaw Skill Extensions Plugin

Custom skill extensions with composition, versioning, and workflow capabilities.

Features

  • Skill Registry: Central registration and discovery of skills
  • Skill Composition: Combine multiple skills into complex operations
  • Skill Versioning: Semantic versioning with rollback support
  • Workflow Skills: Pre-built workflows for common operations
  • Skill Discovery: Auto-discovery of skills in configured paths

Installation

npm install @heretek-ai/openclaw-skill-extensions

Usage

Register a Skill

const SkillExtensions = require('@heretek-ai/openclaw-skill-extensions');

const skills = new SkillExtensions();
await skills.initialize();

// Register a custom skill
await skills.registerSkill('my-skill', {
  name: 'My Custom Skill',
  description: 'A custom skill for specific tasks',
  version: '1.0.0',
  tags: ['custom', 'utility'],
  handler: async (params, context) => {
    // Skill implementation
    return { result: 'success', data: params };
  }
});

Execute a Skill

const result = await skills.executeSkill('my-skill', {
  input: 'data'
});

Compose Skills

// Create a composed skill from multiple skills
await skills.composeSkill('composed-skill', [
  { skillId: 'skill-a', params: { mode: 'fast' } },
  { skillId: 'skill-b', outputMapping: true },
  { skillId: 'skill-c' }
], {
  sequence: 'sequential', // 'parallel', 'sequential', 'pipeline'
  errorStrategy: 'continue'
});

Use Workflows

// Execute a built-in workflow
const result = await skills.executeWorkflow('document-processing', {
  document: {
    id: 'doc-1',
    content: 'Document text here'
  }
});

// Register a custom workflow
await skills.workflows.register('custom-workflow', {
  description: 'Custom workflow',
  steps: [
    { name: 'step1', type: 'skill', skillId: 'first-skill' },
    { name: 'step2', type: 'transform', transform: (ctx) => ctx },
    { name: 'step3', type: 'skill', skillId: 'second-skill' }
  ]
});

Version Management

// Register multiple versions
await skills.registerSkill('versioned-skill', {
  version: '1.0.0',
  handler: v1Handler
});

await skills.registerSkill('versioned-skill', {
  version: '2.0.0',
  handler: v2Handler
});

// Get available versions
const versions = await skills.getSkillVersions('versioned-skill');

// Load specific version
const v1 = await skills.loadSkillVersion('versioned-skill', '1.0.0');

// Deprecate a version
await skills.versioner.deprecate('versioned-skill', '1.0.0');

Skill Discovery

// Auto-discover skills in directories
const discovered = await skills.discoverSkills();

// List all skills
const allSkills = await skills.listSkills();

// Filter by tag
const utilitySkills = await skills.listSkills({ tag: 'utility' });

// Search skills
const searchResults = await skills.listSkills({ search: 'document' });

Workflow Step Types

| Type | Description | |------|-------------| | skill | Execute a registered skill | | api | Make an API call | | transform | Transform context data | | condition | Conditional branching | | parallel | Execute steps in parallel |

Configuration

| Parameter | Default | Description | |-----------|---------|-------------| | enableComposition | true | Enable skill composition | | enableVersioning | true | Enable skill versioning | | autoDiscover | true | Auto-discover skills on init | | discoveryPaths | ['./skills'] | Paths to search for skills | | maxConcurrent | 10 | Max concurrent workflows | | defaultTimeout | 60000 | Default workflow timeout (ms) |

API Reference

registerSkill(skillId, definition)

Register a custom skill.

executeSkill(skillId, params)

Execute a registered skill.

composeSkill(composedId, skills, options)

Create a composed skill.

getSkillVersions(skillId)

Get all versions of a skill.

loadSkillVersion(skillId, version)

Load a specific skill version.

discoverSkills()

Auto-discover skills in configured paths.

listSkills(filters)

List registered skills with optional filters.

executeWorkflow(workflowName, params)

Execute a workflow.

getStats()

Get plugin statistics.

License

MIT