A collection of skills for Claude Code and compatible AI agents.
Skills are specialized knowledge modules that extend AI assistants with domain-specific capabilities. Each skill contains:
- SKILL.md - Documentation and instructions for the AI
- Scripts/Tools - Executable scripts the AI can use
- Examples - Usage examples and best practices
| Skill | Description | Region |
|---|---|---|
| tabussen | Västerbotten public transport (Tabussen/Ultra) | Sweden |
Add skills to your project's .claude/settings.json:
{
"skills": [
"https://raw.githubusercontent.com/Simskii/skills/main/simskii/tabussen/SKILL.md"
]
}You can also load a skill by providing the raw URL to Claude:
Load this skill: https://raw.githubusercontent.com/Simskii/skills/main/simskii/tabussen/SKILL.md
Clone the repo and reference skills locally:
git clone https://github.com/Simskii/skills.git
cd skills/simskii/tabussen
./search-location.sh "Vasaplan?"See CONTRIBUTING.md for guidelines on creating and submitting skills.
your-namespace/
└── skill-name/
├── SKILL.md # Required: Main skill documentation
├── README.md # Optional: Human-readable docs
└── *.sh # Optional: Helper scripts
---
name: skill-name
description: Brief description of what the skill does
license: MIT
compatibility: Requirements (e.g., curl, jq)
metadata:
author: your-name
version: "1.0.0"
region: optional-region
---
# Skill Title
## Overview
What this skill does...
## Commands
How to use it...
## Examples
Usage examples...MIT License - see individual skills for their specific licenses.
Contributions welcome! Please read CONTRIBUTING.md before submitting.