Skip to content

gumeniukcom/claude-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

claude-skills

Репозиторий личных публичных скилов для Claude Code (и других LLM).

Personal public skills repository for Claude Code (and other LLMs).

Скилы / Available Skills

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

Установка / Installation

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.md

Multi-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-audit

⚠️ Copying only SKILL.md for a multi-file skill will produce silent runtime failures when the skill tries to read its companions.

Структура / Structure

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

Создание нового скила / Creating a New Skill

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.

Author

Stanislav Gumeniuk — i@gumeniuk.com

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors