Skip to content

dfernandez79/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skills for AI Agents

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.

About Skills

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.

Repository Structure

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

Skill Format

Each skill consists of:

  • SKILL.md (required): Contains YAML frontmatter with metadata and Markdown instructions

    • name: The skill identifier
    • description: What the skill does and when to use it
    • Instructions in Markdown format
  • Optional bundled resources:

    • scripts/: Executable code for deterministic tasks
    • references/: Documentation loaded as needed
    • assets/: Files used in output (templates, images, etc.)

Creating New Skills

To create a new skill:

  1. Create a folder in skills/ with your skill name
  2. Add a SKILL.md file with:
    • YAML frontmatter (name and description)
    • Markdown instructions for using the skill
  3. Optionally add scripts/, references/, or assets/ folders as needed

Learn More

About

Personal repository for agent skills

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors