A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.
Skills follow the Agent Skills format.
npx skills add dgalarza/agent-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 |
npx skills add dgalarza/agent-skills --skill bufferRequires a BUFFER_API_TOKEN environment variable. Generate one at publish.buffer.com/settings/api.
export BUFFER_API_TOKEN=your_token_hereSee the Buffer API documentation for full API reference.
npx skills add dgalarza/agent-skills --skill buttondownRequires a BUTTONDOWN_API_KEY environment variable. Generate one at buttondown.com/requests.
export BUTTONDOWN_API_KEY=your_api_key_hereSee the Buttondown API documentation for full API reference.
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...MIT