Understanding Skill Files
Understand how the Flaunch skill repository is organized.
The Flaunch skills repository is organized to help AI coding agents choose the right path quickly.
At the top level, Flaunch supports two primary outcomes:
Those outcomes can be solved through a lighter path or a more advanced path depending on how much control the product needs after launch.
The Three Skill Groups
The repository is organized into three groups:
skills/basic: Fast paths for common tasks
skills/core: Source-of-truth guidance for the main integration surfaces
skills/advanced: Custom contract and wrapper flows
What Each Group Is For
Use the basic skills when you want the shortest route to a finished result.
Common examples:
Launch A Token With Minimal Inputs
Scope A Standard Launchpad
Choose Between The API And SDK
Use the core skills when the agent needs full guidance for one Flaunch surface.
Core skills cover:
Use the advanced skills when the product needs custom protocol behavior.
Advanced skills cover:
Custom manager implementation
Project-specific treasury policy
Recommended Reading Order
Start with the umbrella flaunch skill.
Let it route to the smallest matching skill.
Move into core or advanced only when the product requires more control.
Key Skill Files
The main files to know are:
skills/basic/token-creation/SKILL.md
skills/basic/token-launchpad/SKILL.md
skills/core/manager/SKILL.md
skills/advanced/manager-builder/SKILL.md
skills/advanced/manager-zap-wrapper/SKILL.md
When To Use Which Skill
Use token-creation when the goal is to launch a token with the fewest decisions.
Use token-launchpad when the goal is to build a launchpad and the first question is whether the API, SDK, or a manager path is required.
Use the manager skills when the launchpad needs custom treasury or payout behavior after launch.
Continue Reading
AI Skills Quick StartBuild a Launchpad