GitHub - dgalarza/agent-skills: Collection of Agent Skills · GitHub
Skip to content

dgalarza/agent-skills

Folders and files

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
CreatorSignal API Submit video ideas for AI validation, poll for scored verdicts, manage channels and webhooks via the CreatorSignal 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.


CreatorSignal API

npx skills add dgalarza/agent-skills --skill creatorsignal-api

Requires 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.


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

Languages