Skip to content

WeZZard/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Code Skill Marketplace

This repository is a standalone Claude Code plugin marketplace containing WeZZard skills collection.

Quick start

From inside Claude Code:

  1. Add this marketplace (local dev):
/plugin marketplace add ./

If you host on GitHub later:

/plugin marketplace add WeZZard/skills
  1. Install plugins:
/plugin install amplify@wezzard-skills
  1. Run a skill:
# wezzard plugin skills
/amplify:brainstorming
/amplify:write-plan
/amplify:execute-plan
/amplify:recover-from-errors

Available Plugins

wezzard

Development workflow skills for planning and execution.

Skill Description
brainstorming Explore user intent, requirements and design before implementation
write-plan Create and update plan files with structured templates
execute-plan Execute a plan file step by step
recover-from-errors Recover from errors during execution

Repo layout

.claude-plugin/marketplace.json
claude/amplify/.claude-plugin/plugin.json
claude/<plugin-name>/skills/<skill-name>/SKILL.md

Notes:

  • Only plugin.json lives inside .claude-plugin/. All other folders stay at the plugin root.
  • Skills are namespaced as /<plugin-name>:<skill-name>.

Add a new skill

  1. Create a new skill directory:
mkdir -p claude/<plugin-name>/skills/<skill-name>
  1. Create the skill definition:
claude/<plugin-name>/skills/<skill-name>/SKILL.md

Frontmatter should include at least name and description. You can add disable-model-invocation: true to make it manual-only.

  1. Test locally:
claude --plugin-dir ./claude/<plugin-name>

Distribution tips

  • Relative plugin sources work when the marketplace is added via Git (local path or repo).
  • If you distribute via a direct URL to marketplace.json, use Git or GitHub sources instead of relative paths.
  • Plugins are copied to a cache on install, so do not reference files outside the plugin directory.

Development setup

After cloning, run the setup script to enable automatic plugin version bumping:

sh scripts/setup.sh

This configures Git to use tracked hooks from .githooks/. When you commit changes to any plugin under claude/, the patch version in its plugin.json is automatically incremented. To set major or minor versions manually, edit plugin.json and stage it before committing — the hook respects manually staged version changes.

Website

The website/ directory contains a static site that showcases the skills with LLM-generated explanations.

Setup

cd website
npm install

Generate skill content

Requires DEEPSEEK_API_KEY environment variable:

export DEEPSEEK_API_KEY=your-api-key
npm run generate

This reads each SKILL.md and generates user-friendly descriptions with workflow diagrams. Generated content is cached in src/content/generated/ - only regenerated when source changes.

Development

npm run dev

Build

npm run build

Output goes to website/dist/.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors