Skip to content

dgalarza/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Agent Skills

A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.

Skills follow the Agent Skills format.


Installation

npx skills add dgalarza/agent-skills

Skills

Skill Description
Buffer Schedule posts, manage queues, and save ideas via the Buffer social media API
Buttondown Manage tags, automations, subscribers, and emails via the Buttondown newsletter API

Buffer

npx skills add dgalarza/agent-skills --skill buffer

Requires a BUFFER_API_TOKEN environment variable. Generate one at publish.buffer.com/settings/api.

export BUFFER_API_TOKEN=your_token_here

See the Buffer API documentation for full API reference.


Buttondown

npx skills add dgalarza/agent-skills --skill buttondown

Requires a BUTTONDOWN_API_KEY environment variable. Generate one at buttondown.com/requests.

export BUTTONDOWN_API_KEY=your_api_key_here

See the Buttondown API documentation for full API reference.


Adding a Skill

Each skill lives in its own directory under skills/ with a SKILL.md file:

skills/
└── my-skill/
    └── SKILL.md

The SKILL.md frontmatter defines the skill name, description, and allowed tools:

---
name: my-skill
description: What this skill does and when to use it.
allowed-tools: Bash(curl:*)
---

# Skill instructions...

License

MIT

About

Collection of Agent Skills

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors