Skip to content

feed-mob/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agent Skills

A collection of skills for Claude agents to perform specialized tasks.

What Are Skills?

Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. They teach Claude how to complete specific tasks in a repeatable way.

Project Structure

agent-skills/
├── .claude-plugin/          # Claude Code plugin configuration
├── skills/                  # Skill implementations
├── spec/                    # Agent Skills specification
├── template/                # Skill template for creating new skills
└── README.md

Creating a Skill

Skills are simple to create—just a folder with a SKILL.md file containing YAML frontmatter and instructions:

---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---

# My Skill Name

[Add your instructions here that Claude will follow when this skill is active]

## Examples
- Example usage 1
- Example usage 2

## Guidelines
- Guideline 1
- Guideline 2

Required Frontmatter Fields

  • name - Unique identifier (lowercase, hyphens for spaces)
  • description - Complete description of skill purpose and use cases

Using Skills

Claude Code

You can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:

/plugin marketplace add feed-mob/agent-skills

Then, to install a specific set of skills:

  1. Select Browse and install plugins
  2. Select feedmob-agent-skills
  3. Select feedmob-content-tools or data-processing-tools
  4. Select Install now

Alternatively, directly install either Plugin via:

/plugin install feedmob-content-tools@feedmob-agent-skills
/plugin install data-processing-tools@feedmob-agent-skills

After installing the plugin, you can use the skill by just mentioning it.

Claude.ai

To use any skill from this repository or upload custom skills, follow the instructions in Using skills in Claude.

Claude API

Use pre-built or custom skills via the API. See the Skills API documentation.

Getting Started

  1. Browse the skills/ directory for examples
  2. Use the template/ directory as a starting point for new skills
  3. Follow the spec/ for detailed guidelines

About

Agent Skills from FeedMob Dev Team

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages