skillpack 0.13.2

Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Normalize line endings to LF across all platforms. Without this, Windows
# checkouts with default `core.autocrlf=true` convert template `.tera` sources
# to CRLF; include_str! then pulls CRLF bytes and Tera preserves them in the
# generated SKILL.md / plugin.json — so a Windows run ships CRLF artifacts
# while Unix ships LF, breaking snapshot-byte-identity and any downstream
# parser that expects LF. Pin source to LF; let git convert on the working
# tree only for the rare text edit (default `text=auto` keeps that).
*.tera  text eol=lf
*.rs    text eol=lf
*.toml  text eol=lf
*.json  text eol=lf
*.md    text eol=lf
*.mdc   text eol=lf
*.yml   text eol=lf
*.yaml  text eol=lf
*.lock  text eol=lf
*.snap  text eol=lf