Skip to content

joripage/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Claude Code Skills

A collection of custom skills for Claude Code that provide domain-specific expertise and guidance.

Available Skills

Skill Description
fix-protocol FIX (Financial Information eXchange) protocol expert. Covers message flows, session management, order state machines, and debugging for FIX 4.2 / 4.4 / 5.0 SP2.

Installation

Copy any skill folder into your Claude Code skills directory:

# Install a single skill
cp -r fix-protocol ~/.claude/skills/

# Or install all skills
cp -r */ ~/.claude/skills/

Usage

Once installed, skills can be invoked directly in Claude Code:

# Use a skill by name
/fix-protocol "your question or task"

Skills also auto-activate when Claude detects relevant context in the code you're working on.

Project Structure

skills/
├── README.md
└── fix-protocol/
    ├── SKILL.md              # Main skill definition and rules
    ├── README.md             # Skill-specific documentation
    └── references/           # On-demand reference files
        ├── error-codes.md
        ├── fix-version-differences.md
        ├── order-state-machine.md
        ├── required-fields.md
        └── session-management.md

Creating a New Skill

Each skill is a folder containing at minimum a SKILL.md file with frontmatter:

---
name: skill-name
description: "When to use this skill"
argument-hint: "[usage hint]"
metadata:
  author: your-name
  version: "1.0.0"
---

Place reference files in a references/ subfolder to keep the main context clean -- they are loaded on demand.

License

This project is licensed under the MIT License.

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors