Skip to content
This repository was archived by the owner on Jun 18, 2026. It is now read-only.

Commit 167f113

Browse files
feat: add Claude Code skill for AI assistance
- Add contrib/claude-skill/ with SKILL.md and installation README - Add docs/content/guide/claude-skill.md for website - Add `styx @skill` CLI command to output skill content Users can install with: mkdir -p ~/.claude/skills/styx styx @Skill > ~/.claude/skills/styx/SKILL.md
1 parent 4f64888 commit 167f113

5 files changed

Lines changed: 853 additions & 0 deletions

File tree

contrib/claude-skill/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Claude Code Skill for Styx
2+
3+
This skill teaches [Claude Code](https://docs.anthropic.com/en/docs/claude-code) about Styx syntax and schemas.
4+
5+
## Installation
6+
7+
### Option 1: Copy manually
8+
9+
```bash
10+
mkdir -p ~/.claude/skills/styx
11+
cp SKILL.md ~/.claude/skills/styx/
12+
```
13+
14+
### Option 2: Use the CLI
15+
16+
```bash
17+
mkdir -p ~/.claude/skills/styx
18+
styx @skill > ~/.claude/skills/styx/SKILL.md
19+
```
20+
21+
### Option 3: One-liner from repo
22+
23+
```bash
24+
mkdir -p ~/.claude/skills/styx && curl -sL https://raw.githubusercontent.com/bearcove/styx/main/contrib/claude-skill/SKILL.md > ~/.claude/skills/styx/SKILL.md
25+
```
26+
27+
## Usage
28+
29+
Once installed, Claude Code will automatically have access to Styx syntax knowledge. You can also explicitly invoke it:
30+
31+
```
32+
/styx
33+
```
34+
35+
This teaches Claude about:
36+
- Styx syntax (scalars, objects, sequences, tags, heredocs)
37+
- Schema language and type constraints
38+
- CLI commands for validation and formatting
39+
- Common mistakes to avoid

0 commit comments

Comments
 (0)