This repository contains skills to use with AI agents like Claude. Skills are modular, self-contained packages that extend an AI agent's capabilities by providing specialized knowledge, workflows, and tools.
Skills are folders of instructions, scripts, and resources that AI agents load dynamically to improve performance on specialized tasks. Each skill is self-contained in its own folder with a SKILL.md file containing the instructions and metadata that the agent uses.
This repository follows the Agent Skills standard created by Anthropic.
skills/
├── latest-tech-news/ # Fetches and summarizes the latest tech news
│ ├── SKILL.md # Skill instructions and metadata
│ └── scripts/ # News fetching scripts
└── [future-skills]/ # Add more skills here
Each skill consists of:
-
SKILL.md (required): Contains YAML frontmatter with metadata and Markdown instructions
name: The skill identifierdescription: What the skill does and when to use it- Instructions in Markdown format
-
Optional bundled resources:
scripts/: Executable code for deterministic tasksreferences/: Documentation loaded as neededassets/: Files used in output (templates, images, etc.)
To create a new skill:
- Create a folder in
skills/with your skill name - Add a
SKILL.mdfile with:- YAML frontmatter (name and description)
- Markdown instructions for using the skill
- Optionally add
scripts/,references/, orassets/folders as needed