Skip to content

Simskii/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skills Repository

A collection of skills for Claude Code and compatible AI agents.

What are Skills?

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

Available Skills

Skill Description Region
tabussen Västerbotten public transport (Tabussen/Ultra) Sweden

Using Skills

With Claude Code

Add skills to your project's .claude/settings.json:

{
  "skills": [
    "https://raw.githubusercontent.com/Simskii/skills/main/simskii/tabussen/SKILL.md"
  ]
}

Manual Loading

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

Local Usage

Clone the repo and reference skills locally:

git clone https://github.com/Simskii/skills.git
cd skills/simskii/tabussen
./search-location.sh "Vasaplan?"

Creating New Skills

See CONTRIBUTING.md for guidelines on creating and submitting skills.

Skill Structure

your-namespace/
└── skill-name/
    ├── SKILL.md      # Required: Main skill documentation
    ├── README.md     # Optional: Human-readable docs
    └── *.sh          # Optional: Helper scripts

SKILL.md Format

---
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...

License

MIT License - see individual skills for their specific licenses.

Contributing

Contributions welcome! Please read CONTRIBUTING.md before submitting.

About

Skills for Claude Code and AI agents

Resources

License

Contributing

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors