block-quote On this pagechevron-down
copy Copy chevron-down
A.I. Skills sparkles AI Skills Quick StartInstall the Flaunch AI skills and start building quickly.
The Flaunch skills repository gives AI coding agents a structured way to build on Flaunch.
It is designed to route the agent to the smallest skill that matches the job, whether the goal is launching a token, building a launchpad, or creating a manager-based flow.
Install The Flaunch Skill
For a single install target, install the top-level flaunch skill:
Copy npx skills add https://github.com/flayerlabs/flaunch-skills --skill flaunch That installs the umbrella router skill, which then routes the agent to the right deeper skill for the task.
What The Skill Helps With
The installed skill can guide an AI coding agent through:
Choosing Between The API, SDK, And Manager Paths
Working With Revenue, Staking, Or Buyback Managers
The main manager-development skill is skills/core/manager/SKILL.md.
Use the wrapper-zap skill only when the launch flow itself must enforce a manager policy.
Install the skill
Install the umbrella flaunch skill so the agent can route itself to the right path.
The two most common outcomes are:
Prompt the agent clearly
Use a direct prompt that includes the desired outcome.
Follow the suggested path
For basic launch flows, the skill will usually route toward the API or SDK.
For custom treasury behavior, the skill will route toward the manager path.
Example Prompts
Use flaunch: Launch a memecoin on Base with the fastest possible path.
Use flaunch: Help me choose whether this launchpad should use the API, SDK, or a custom manager.
Use flaunch: Build a TypeScript launch flow with @flaunch/sdk on Base Sepolia.
Use flaunch: Create a revenue manager through the Web2 API.
Use the basic path when the goal is to:
Launch A Token With Minimal Parameters
Build A Standard Launchpad On Top Of The Existing API Or SDK
Ship Quickly Without Custom Treasury Contracts
Use the advanced path when the product needs:
Custom Treasury Or Revenue Behavior After Launch
Buyback, Staking, Or Project-Specific Payout Logic
Manager-Bound Launch Flows
Wrapper Zaps That Enforce Manager Defaults During Launch
chevron-right Do I need to install every skill separately?hashtag No. The main install target is the umbrella flaunch skill. It routes the agent to the right deeper skill for the task.
chevron-right What should I install for token creation?hashtag Start with the umbrella skill. It will usually route to skills/basic/token-creation/SKILL.md for the fastest path.
chevron-right What should I install for launchpad work?hashtag Start with the umbrella skill. It will usually route to skills/basic/token-launchpad/SKILL.md, then into the API, SDK, or manager path as needed.
Continue Reading
folder-tree Understanding Skill Files chevron-right rocket-launch Build a Launchpad chevron-right Custom Managers chevron-right