a916abe5fb4715ee99665b2655133424f80751f5
Apply setup-tasks pattern to this repo's own .tasks/. Old flat layout (## Done / ## Backlog sections, no emoji, no per-task files) replaced with the canonical board: - 7 ⚪ Ready blocks for live backlog items, each with the canonical fields (slug, status, where-stopped, next-action, branch) - Historical Done entries dropped — git log is the history of what we've done (looking at .tasks/STATUS.md frombd8c378backwards shows the same content, just less compactly) - No per-task files at this point — none of the items are active or paused; using-tasks creates them on demand when a task starts Backup written to .tasks/STATUS.md.bak-20260428-132845 (local only — .gitignore now ignores **/*.bak-* since they're redundant with git history). Two backlog items that were marked done in the old format are gone: both refer to commits already in this branch's history (4382fd3,bd8c378). The cleanup-stale-skill-installs item is preserved as a ⚪ block for the user. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
claude-skills
Совместное хранилище и мастерская навыков для Claude.
About
Здесь мы с Claude вместе разрабатываем, отлаживаем и храним скиллы:
skills/— редактируемые исходники (markdown + ассеты), source of truthdist/— собранные.skillархивы, закоммичены в репоscripts/— утилиты:build.sh(исходник →.skill),install.sh(исходник →~/.claude/skills/).wiki/,.tasks/— рабочие материалы и доска задач
Quick start
Установить скиллы на новом компе
git clone <repo> claude-skills
cd claude-skills
bash scripts/install.sh # копирует все skills/* в ~/.claude/skills/
# или конкретные:
bash scripts/install.sh caveman wiki-maintainer
Цель установки можно переопределить переменной CLAUDE_SKILLS_DIR=/path bash scripts/install.sh.
Отредактировать скилл
# 1. Правишь skills/<name>/SKILL.md (или ассеты)
# 2. Раскатываешь правки в живые скиллы:
bash scripts/install.sh <name>
# 3. Пересобираешь архив (опц., но удобно делать перед коммитом):
bash scripts/build.sh <name>
Собрать .skill архивы
bash scripts/build.sh # все
bash scripts/build.sh caveman # один
build.sh использует zip если он есть (Linux/macOS) или делегирует в
scripts/build.ps1 через PowerShell (Windows без zip). На Windows
можно сразу запускать powershell scripts/build.ps1.
Layout
claude-skills/
├── skills/ ← исходники (по папке на скилл)
├── dist/ ← .skill архивы (коммитятся)
├── scripts/
│ ├── build.sh / build.ps1
│ └── install.sh
├── .wiki/ ← дизайн-доки, заметки
├── .tasks/ ← STATUS.md
├── CLAUDE.md
└── README.md
Подробнее про принципы и решения — в .wiki/source/repo-layout.md.
Description
Languages
Python
45.3%
PowerShell
32.7%
Shell
22%