createos-deploy
Installation
SKILL.md
Deploy to CreateOS
No auth session, no OAuth, no browser login required. This skill uses the HTTP 402 payment flow — the on-chain payment itself is the access control. Just call the API, pay with USDC/USDT, and deploy.
Prerequisites
You need an EVM wallet with gas (ETH) and USDC on a supported chain. Generate one if needed:
import { generatePrivateKey, privateKeyToAccount } from "viem/accounts";
const privateKey = generatePrivateKey();
const account = privateKeyToAccount(privateKey);
// Save privateKey securely
Only dependency: npm install viem