Copy-paste task prompts for common RTIE workflows. Paste these into Claude Code, Cursor, or any AI assistant
to get precise, RTIE-aware help — they include the right context so the AI uses correct APIs, routes, and patterns.
Full project setup — API key, SDK install, first room, and MCP connectivity check.
Check if RTIE_API_KEY is set. Install @rtie/sdk. Create src/rtie.ts client file. Call list_rooms to verify connectivity. Create and activate a "main" room. Show presence subscription example. Add .mcp.json.
quickstartsetup
Wire up the auctions module — create an auction room, open bidding, handle bids, and close with winner resolution.
Create an auction, start bidding, place a test bid (with confirmation), get high bid, subscribe to bid events in real time, close auction with winner, add Action Engine bid-velocity rule.
auctionscommerce
Generate a complete, valid ModuleManifest with typed MCP tool definitions and context contract.
Generate manifest.ts with typed McpToolDefinition entries, inputSchema, annotations, contexts contract, requires, and events. Include registration and registry-regen instructions.
modulesmanifest
Register an endpoint, add HMAC signature verification, and handle key events.
Generate webhook secret. Register endpoint for room/auction/payment events. Write Hono handler with HMAC verification and idempotency. Show delivery history and retry policy.
webhooksevents
Display who's online in a RTIE room, show join/leave events live, and track participant metadata.
Get presence snapshot. Write usePresence React hook. Build PresenceAvatars component with animations. Show custom metadata on join. Wire room.member.joined/left webhooks.
presencerealtime
Author signal-to-action rules that fire automatically in under 350ms.
Get current rules. Design rules for your use case. Install via set_rules. Send test signal with ingest_signal. Verify in action log. Wire agent_trigger if needed.
actionsaiautomation
Let an AI agent browse live auctions, monitor bids, and (with human confirmation) place bids or execute checkout.
Browse live auctions matching buyer preferences. Evaluate against budget. Present bid opportunity for human approval. Place bid. Build Node.js agent poll loop with Action Engine integration.
auctionsagentsagentic-commerce