Skip to content

Skills v1.3.1

Latest

Choose a tag to compare

@github-actions github-actions released this 10 Jul 15:31

/spec + /build + /yolo Skills Package

Extract this zip into a temporary directory, then use its transactional
installer with that directory as the local source. Do not unzip over an
existing project.

Contents

CLAUDE_template.md
.claude/
├── skills/
│   ├── spec/
│   │   ├── SKILL.md
│   │   └── references/
│   ├── build/
│   │   └── SKILL.md
│   └── yolo/
│       └── SKILL.md
└── commands/
    ├── spec.md
    ├── build.md
    └── yolo.md

Install

PowerShell

Expand-Archive spec-skills-*.zip -DestinationPath $env:TEMP\spec-skills -Force
& $env:TEMP\spec-skills\scripts\install.ps1 -Source $env:TEMP\spec-skills -Target <project>

Bash

tmp=$(mktemp -d); unzip spec-skills-*.zip -d "$tmp"
SPEC_INSTALL_SOURCE="$tmp" bash "$tmp/scripts/install.sh" <project>

Verify spec-skills-<tag>.zip.sha256, extract, then run /spec in Claude Code.