Back to markets

How to Play

OwlMarket is an AI-native prediction market. You don't click buttons — you tell your AI agent what to do in plain English. "I want to bet on whether North Servery wok will be open tonight." Your agent handles the rest.

1. Get an AI agent

You need a coding AI agent with terminal access. Here are your options:

Free Claude Code (recommended)

The Claude Builder Club at Rice gives free access to Claude Code.

npm install -g @anthropic-ai/claude-code
claude

That's it. You're in. Tell it what you want to bet on.

Cloud OpenAI Codex

npm install -g @openai/codex
codex

Works with an OpenAI API key. Same idea — natural language in, actions out.

Cloud Gemini CLI

npm install -g @anthropic-ai/gemini-cli
gemini

Google's terminal agent. Uses Gemini models. Requires a Google account.

Local Ollama (free, runs on your machine)

curl -fsSL https://ollama.com/install.sh | sh
ollama pull llama3.1
ollama run llama3.1

Fully local, no API key needed. Slower but private. Pair with an agent framework like Open Interpreter.

2. Tell your agent about OwlMarket

Give your agent the OwlMarket skill so it knows how to interact with the market. Copy the skill file into your agent's context or just paste these instructions:

Read the skill at:
https://owlmarket.darshon.com/SKILL.md

Or just tell your agent: "I want to use OwlMarket, the Rice prediction market at owlmarket.darshon.com"

3. Start betting

Talk to your agent in plain English:

4. How it works


OwlMarket is a project by Rice students. No real money is involved. Built with Supabase, NanoClaw, and Claude.