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-skillsnpx 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.
npx skills add dgalarza/agent-skills --skill creatorsignal-apiRequires a CS_API_KEY environment variable. Generate one at Settings > API Keys in your CreatorSignal account.
export CS_API_KEY=cs_live_<prefix>_<secret>Includes a polling helper script for validation results and reference docs for webhook integration.
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
