/** * Skill: conway — Full Conway Terminal integration. * * Covers all Conway Terminal v2.0.9 MCP tools: * - Sandbox lifecycle (create, list, get, delete) * - Sandbox execution (exec, write_file, read_file) * - Sandbox networking (expose_port, list_ports, remove_port, get_url) * - Sandbox custom domains (add_domain, list_domains, remove_domain) * - Sandbox monitoring (terminal_session, metrics, activity, commands) * - PTY sessions (create, write, read, close, resize, list) * - Wallet & x402 payments (wallet_info, wallet_networks, x402_discover, x402_check, x402_fetch) * - Domain registration & DNS (search, list, info, register, renew, dns_*, pricing, check, privacy, nameservers) * - Credits & billing (balance, history, pricing, topup) * - Inference (chat_completions) * * Authentication: * - Sandbox/Cloud/Credits/Inference API: CONWAY_API_KEY (from ~/.conway/config.json or env) * - Domain API: SIWE via conway-terminal wallet (~/.conway/wallet.json) * - x402 payments: via conway-terminal wallet + x402 protocol * * This is optional infrastructure — agents don't need it to function, * but it lets them build real web presence, run compute, and pay for services. */ import type { SkillDefinition } from '../types.js'; export declare const conwaySkill: SkillDefinition; //# sourceMappingURL=conway.d.ts.map