Создание нового скилла по шаблону
learning
new-skill is a Claude Code skill that scaffolds a new skill following the repository's conventions — it interviews the user for purpose, trigger phrases, and required tools, then writes `.claude/skills/<name>/SKILL.md` from the canonical template so that `check-skill-integrity.py` and `check-surface-sync.sh` pass on the first run. The process spans four phases: name collision check, upfront requirements gathering, writing SKILL.md with consistent frontmatter and body sections, and enforcing flag-parity plus `allowed-tools` parity before declaring done. Flags `--from-learn` (upgrade a `/learn` stub into a full skill) and `--dry-run` are supported; the skill itself uses only Read, Write, Glob, Grep, and Bash. Use it when a repeated three-or-more-step workflow needs to become a reusable slash command that fits naturally alongside the 40+ sibling skills already in the repository.
- #skill-authoring
- #workflow-design
- #convention-compliance
- #documentation
- #automation