Репозиторий личных публичных скилов для Claude Code (и других LLM).
Personal public skills repository for Claude Code (and other LLMs).
| Skill | Description |
|---|---|
| ai-ready-audit | Audits public API documentation for AI/LLM-readiness using a 100-point rubric across 26 criteria (discovery, per-page artifacts, API spec, content, hygiene). Requires browsing/web-fetch. |
| old-russian-style | Переводит технические тексты в шуточный древнерусский стиль / Translates technical texts into humorous Old Russian style |
Different skills need different install methods. Check the skill's directory before copying.
Single-file skills (e.g. old-russian-style) — just SKILL.md:
# Copy
cp skills/old-russian-style/SKILL.md .claude/skills/old-russian-style.md
# Or symlink
ln -s /path/to/claude-skills/skills/old-russian-style/SKILL.md .claude/skills/old-russian-style.mdMulti-file skills (e.g. ai-ready-audit, which has companion rubric.md + calibration.md that SKILL.md reads at runtime) — install the whole directory:
# Recommended: symlink the directory (keeps the skill in sync with the repo)
ln -s /path/to/claude-skills/skills/ai-ready-audit .claude/skills/ai-ready-audit
# Or copy recursively
cp -r skills/ai-ready-audit .claude/skills/ai-ready-auditSKILL.md for a multi-file skill will produce silent runtime failures when the skill tries to read its companions.
skills/
└── <skill-name>/
├── SKILL.md # Required: frontmatter + instructions
├── reference.md # Optional: detailed docs (or `rubric.md`, `calibration.md`, etc.)
├── examples.md # Optional: usage examples
└── scripts/ # Optional: helper scripts
Use the template:
cp -r template skills/<new-skill-name>Then edit skills/<new-skill-name>/SKILL.md — see template/SKILL.md for the format.
Stanislav Gumeniuk — i@gumeniuk.com