A curated collection of reusable agent skills for building AI-powered applications. Each skill is a self-contained blueprint with architecture docs, code patterns, and reference guides.
| Skill | Description |
|---|---|
| desktop-agent-builder | Build desktop AI agent apps with Python FastAPI + React + PyInstaller |
TigerAgentSkill/
├── README.md # This file — skill catalog
├── skills/
│ ├── desktop-agent-builder/ # Desktop AI agent app blueprint
│ │ ├── SKILL.md # Main skill doc
│ │ └── references/ # Architecture, patterns, guides
│ └── <future-skill>/ # More skills added over time
└── LICENSE
npx skills add https://github.com/Suman73/TigerAgentSkill.git --skill desktop-agent-builderThis installs the skill directly into your project's .agents/skills/ directory.
git clone git@github.com:Suman73/TigerAgentSkill.git
cp -r TigerAgentSkill/skills/desktop-agent-builder your-project/.agents/skills/Once installed, your AI coding assistant will automatically pick up the skill and use it when relevant tasks come up.
Each skill follows a standard structure:
skill-name/
├── SKILL.md # Required — main instructions with YAML frontmatter
└── references/ # Optional — detailed docs loaded on demand
├── architecture.md
├── patterns.md
└── troubleshooting.md
The SKILL.md frontmatter defines when the skill triggers:
---
name: skill-name
description: What this skill does and when to use it
---- Fork the repo
- Create a new folder under
skills/with your skill name - Add a
SKILL.mdwith proper frontmatter - Add reference docs in
references/if needed - Submit a PR
MIT License — use freely in personal and commercial projects.
Built with 🐯 by Suman73