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. Call the API, pay with USDC/USDT, deploy.
Base URL: https://mpp-createos.nodeops.network
Prerequisites
An EVM wallet with gas (ETH) and USDC on Arbitrum or Base mainnet. Testnets are not accepted. Generate a wallet if needed:
import { generatePrivateKey, privateKeyToAccount } from "viem/accounts";
const privateKey = generatePrivateKey();
const account = privateKeyToAccount(privateKey);
// Save privateKey securely, outside the project directory
Only dependency: npm install viem