A curated collection of Agent Skills maintained by Auxilio Partners. Skills give AI agents specialized capabilities and domain knowledge they can load on demand.
These skills follow the open Agent Skills specification and work with Claude Code, Gemini CLI, and any agent that supports the standard. Browse the available skills below and install them for your platform.
| Plugin | Description | Version |
|---|---|---|
| check-deposit-reader | Extract structured data from scanned check deposit PDFs — payer name, address, amount, date, check number, and memo | 1.0.0 |
| planning-center-sermon-series | Create sermon series in Planning Center Publishing within a channel using browser automation, with single or batch series creation | 2.0.0 |
| planning-center-sermon-episodes | Create and update sermon episodes in Planning Center Publishing using browser automation — audio, artwork, video URL, speakers, publish dates, and Subsplash migration | 2.0.0 |
Add this marketplace in Claude Code:
/plugin marketplace add auxiliopartners/auxilio-agent-skills
Then install a plugin:
/plugin install check-deposit-reader@auxilio-agent-skills
Gemini CLI supports the same Agent Skills format. Install a skill directly from this repository using --path to target the specific skill directory:
gemini skills install https://github.com/auxiliopartners/auxilio-agent-skills.git --path plugins/check-deposit-reader/skills/check-deposit-readerReplace check-deposit-reader with any skill name from the table above. Available paths:
| Skill | Install path |
|---|---|
| check-deposit-reader | plugins/check-deposit-reader/skills/check-deposit-reader |
| planning-center-sermon-series | plugins/planning-center-sermon-series/skills/planning-center-sermon-series |
| planning-center-sermon-episodes | plugins/planning-center-sermon-episodes/skills/planning-center-sermon-episodes |
Alternative: manual installation
Clone the repo and copy a skill to your Gemini skills directory:
git clone https://github.com/auxiliopartners/auxilio-agent-skills.git
cp -r auxilio-agent-skills/plugins/check-deposit-reader/skills/check-deposit-reader ~/.gemini/skills/Skills placed in ~/.gemini/skills/ are available across all projects. For project-scoped skills, copy to .gemini/skills/ in your workspace instead.
Verify installation by running /skills list in a Gemini CLI session — the installed skill should appear in the list.
See the Gemini CLI Agent Skills documentation for more details.
Skills follow the open Agent Skills specification — a cross-platform standard supported by Claude Code, Gemini CLI, and other compatible agents. Each skill consists of:
- A
SKILL.mdfile with YAML frontmatter (nameanddescriptionrequired) - Optional
scripts/,references/, andassets/directories
For Claude Code distribution, skills are packaged into plugins with a .claude-plugin/plugin.json manifest. For Gemini CLI, skill directories can be installed directly into ~/.gemini/skills/ or .gemini/skills/.
See the best practices guide for skill authoring tips.
We welcome contributions. See CONTRIBUTING.md for how to add a new plugin or improve an existing one.