focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:book-to-plugin <compiled-skill-dir> [--domain <domain>] — wrap a compiled book skill in a claude-skills plugin package (manifest + cs-* agent + /cs:* command + README) so the rest of the library can route to it. Use after /cs:book-to-skill, or when an existing knowledge-base
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-book-to-pluginContext preview
What this command does when you run it.
/cs:book-to-plugin <compiled-skill-dir> [--domain <domain>] — wrap a compiled book skill in a claude-skills plugin package (manifest + cs-* agent + /cs:* command + README) so the rest of the library can route to it. Use after /cs:book-to-skill, or when an existing knowledge-base
name: "cs-book-to-plugin" description: "/cs:book-to-plugin <compiled-skill-dir> [--domain <domain>] — wrap a compiled book skill in a claude-skills plugin package (manifest + cs-* agent + /cs:* command + README) so the rest of the library can route to it. Use after /cs:book-to-skill, or when an existing knowledge-base skill folder needs to become an installable plugin."
**Command:** `/cs:book-to-plugin <compiled-skill-dir> [--domain <domain>] [--rights <basis>]`
A folder in `~/.claude/skills/` is invisible to this repository: no manifest, no agent, no command, no marketplace entry, so nothing else in the library can route to it. This command closes that gap.
<domain>/<slug>/ ├── .claude-plugin/plugin.json manifest, ./skills/<slug>, provenance + rights metadata ├── README.md what the skill knows, where it came from, its limits ├── agents/cs-<slug>.md persona that answers from the source and cites chapters ├── commands/cs-<slug>.md /cs:<slug> [topic | framework | chNN] └── skills/<slug>/ the compiled skill, copied verbatim
…then prints the `.claude-plugin/marketplace.json` entry to register. It never edits marketplace.json itself — registration is a repo-wide change and stays a human decision.
| Gate | Behaviour | |------|-----------| | Source has no `SKILL.md` | Refuses. This is not a compiled book skill. | | Source has validation errors | Refuses and lists them. A package built on a broken index stays broken. `--skip-validation` overrides, and is almost always the wrong call. | | Destination already exists | Refuses without `--force`. | | `--distribution shareable` without `--rights` | **Refuses.** Compiled notes from a copyrighted work are personal study notes; redistributing them needs a basis. |
Accepted rights bases: `public-domain`, `open-license`, `internal-docs`, `author-permission`. Fair use is deliberately not one — it is a defence, not a licence, and not a script's call. Without a basis the package emits as `--distribution local` and records `source.cleared_for_distribution: false` in the manifest.
SKILL_ROOT=engineering/book-to-skill/skills/book-to-skill
# see exactly what would be written, first
python3 "$SKILL_ROOT/scripts/skill_plugin_emitter.py" \
--skill-dir ~/.claude/skills/<slug> \
--dest ./engineering --domain engineering \
--source-note "<Full Title> by <Author>" \
--dry-run
# write it
python3 "$SKILL_ROOT/scripts/skill_plugin_emitter.py" \
--skill-dir ~/.claude/skills/<slug> \
--dest ./engineering --domain engineering \
--source-note "<Full Title> by <Author>"1. Paste the printed entry into `.claude-plugin/marketplace.json` → `plugins`. 2. Re-derive the headline counters: `python3 scripts/derive_counters.py --check`, then update `README.md`, `CLAUDE.md` and the marketplace description to match. 3. Read the generated agent and command — they are scaffolds keyed to the source, and the voice is worth a pass by hand. 4. Open the PR against `dev`. Never `main`.
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…