Development marketplace for custom Claude skills
npx claudepluginhub samanvayms/claudeCustom skills, agents, hooks, and commands for Claude Code
A composable skills, agents, hooks, and commands plugin for Claude Code and other coding agents — inspired by obra/superpowers.
This repository is a scaffold for building custom workflows for your coding agents. Add skills, agents, hooks, and slash-commands over time and they will be automatically discovered by the plugin system.
.
├── .claude-plugin/ # Claude Code plugin config
│ ├── plugin.json # Plugin metadata & entry points
│ └── marketplace.json # Local marketplace config
├── .cursor-plugin/ # Cursor plugin config
│ └── plugin.json
├── agents/ # Sub-agent prompt files (*.md)
├── commands/ # Slash-command prompt files (*.md)
├── hooks/ # Lifecycle hook scripts
│ ├── hooks.json # Claude Code hook bindings
│ ├── hooks-cursor.json # Cursor hook bindings
│ ├── run-hook.cmd # Cross-platform hook runner (Unix + Windows)
│ └── session-start # SessionStart hook — injects active skills
└── skills/ # Skill prompt files (each in its own subdirectory)
# Each skill: skills/<name>/SKILL.md
skills/, e.g. skills/my-skill/SKILL.md file describing the skillsession-start hook automatically discovers and injects all SKILL.md files at the start of each sessionCreate a Markdown file under agents/, e.g. agents/my-agent.md.
Create a Markdown file under commands/, e.g. commands/my-command.md.
Edit hooks/hooks.json (Claude Code) or hooks/hooks-cursor.json (Cursor) to bind new lifecycle events to scripts in the hooks/ directory.
Register the local marketplace and install:
/plugin marketplace add ./
/plugin install claude-skills@claude-skills-dev
Point Cursor at this directory as a plugin source.
MIT
Development marketplace for Superpowers core skills library
Harness-native ECC skills, hooks, rules, MCP conventions, and operator workflows
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.