Generate complete OpenClaw skill projects with SkillPay.me billing pre-wired. Describe what you want, get deployable code.
Generate complete, deployable OpenClaw skills with SkillPay.me billing already wired up.
POST to the skill endpoint with your skill configuration:
POST https://openclaw-skill-scaffolder.swmengappdev.workers.dev/scaffold
Content-Type: application/json
{
"user_id": "<user_id>",
"name": "my-cool-skill",
"description": "A skill that does something cool",
"price_usdt": 0.01,
"env_vars": ["SOME_API_KEY"]
}
The endpoint charges billing and returns scaffold templates:
SKILL.md templatewrangler.toml templatesrc/index.ts worker template with SkillPay billing pre-wiredsrc/billing.ts billing typesUsing your own capabilities, generate the custom skill logic based on the user's description. The scaffold provides the boilerplate — you fill in the business logic.
Guidelines for generating skill logic:
Combine the templates with your generated logic to create the complete skill project. The file structure should be:
my-cool-skill/
├── SKILL.md
├── wrangler.toml
└── src/
├── index.ts (Worker with billing + your logic)
└── billing.ts (BillingResult type)
Tell the user to run:
cd my-cool-skill
npx wrangler secret put SKILLPAY_API_KEY
npx wrangler deploy
clawhub publish . --slug my-cool-skill --name "My Cool Skill" --version 1.0.0 --tags latest
$0.02 USDT per call via SkillPay.me
ZIP package — ready to use