Auto-discovered marketplace from psylch/better-skills
npx claudepluginhub psylch/better-skillsSkill development toolkit for AI coding agents: create, review, and publish skills with runtime UX best practices
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Claude Code plugins for the Slidev presentation framework
Share bugs, ideas, or general feedback.
A skill development toolkit for AI coding agents — create, review, and publish skills with runtime UX best practices baked in.
| Skill | Purpose | Status |
|---|---|---|
| better-skill-creator | Create new skills from best-practice templates | Available |
| better-skill-review | Validate structure, suggest improvements, and apply fixes | Available |
| better-skill-publish | Package and publish skills for distribution | Available |
npx skills add psylch/better-skills -g -y
git clone https://github.com/psylch/better-skills.git ~/.claude/skills/better-skills
Restart your agent after installation.
Guides you through creating a new skill with a requirements-first workflow — understands what your skill does before making structural decisions, then auto-recommends a level (L0/L0+/L1) and environment strategy (stdlib/uv/venv). Generates ready-to-edit templates with preflight framework, JSON output conventions, and error handling baked in. Includes built-in post-scaffold validation to catch structural issues immediately.
Incorporates design principles from Vercel's skill-creator — requirements gathering before structural choices, context budget awareness, and degrees of freedom matching — combined with our deeper runtime conventions (preflight, JSON output contracts, environment strategies, setup flow integrity).
Reviews a skill by combining automated validation (22+ checks across 7 categories, graded A–F) with analytical improvement suggestions based on best practices. Presents a unified report with the grade, issues, and prioritized suggestions with before/after examples. Can interactively apply fixes.
Packages a skill into a complete GitHub repository: generates README (EN + ZH), LICENSE, plugin.json, marketplace.json, .gitignore, and the proper directory structure. Optionally initializes git and creates a GitHub repo.
L0 — SKILL.md is the entire skill. Best for workflow guides and domain knowledge.
L0+ — SKILL.md plus lightweight helper scripts for environment detection and status caching.
L1 — Scripts handle core business logic. SKILL.md orchestrates. Scripts follow MCP tool design principles.
better-skills/
├── .claude-plugin/
│ ├── plugin.json
│ └── marketplace.json
├── skills/
│ ├── references/ # Shared knowledge base (symlinked into each skill)
│ ├── better-skill-creator/ # L1: scaffold.py + templates
│ ├── better-skill-review/ # L1: validate.py + analyze.sh
│ └── better-skill-publish/ # L1: publish.py + templates
├── README.md
├── README.zh.md
└── LICENSE
MIT