AI entertainment stack — give your agent superpowers to create and sustain attention.
A public skill library for AI agents. Skills provide self-contained instructions that enable agents to interact with onchain protocols and APIs.
| Skill | Description | Status |
|---|---|---|
| blowfish-launch-token | Launch Solana tokens via the Blowfish Agent API | Active |
| character-image-studio | Manage character visual identities and generate consistent images via the NeukoAI Image Studio API | Active |
Point your agent at this repository to browse and install skills.
Each skill is a directory containing:
skill-name/
├── SKILL.md # Core skill instructions (required)
├── references/ # Supplementary documentation (optional)
│ ├── topic-a.md
│ └── topic-b.md
└── scripts/ # Executable helper scripts (optional)
└── helper.sh
Every SKILL.md includes YAML frontmatter and a markdown body:
---
name: skill-name
description: What this skill does and when to use it.
metadata: {"neuko": {"emoji": "🎯", "homepage": "https://..."}}
---The markdown body contains everything an AI agent needs to execute the skill: endpoints, authentication flows, code examples, error handling, and step-by-step workflows.
- Fork this repository
- Create a directory for your skill (lowercase, hyphenated)
- Add a
SKILL.mdwith frontmatter and complete instructions - Optionally add
references/andscripts/directories - Submit a pull request
MIT