← 返回
未分类 Key 中文

TikiCow

Interact with the TikiCow farming game to plant, water, harvest crops, manage cows, trade items, check market, weather, energy, and view leaderboards.
与TikiCow农场游戏互动,种植、浇水、收割作物,管理奶牛,交易物品,查看市场、天气、能量和排行榜。
mhue-ai mhue-ai 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 1
Stars
📥 370
下载
💾 0
安装
1
版本
#latest

概述

TikiCow

Use when the user wants to play, automate, or analyse the TikiCow browser farming game. This includes farming (plant, water, harvest), managing cows (milk, feed, pet), trading on the marketplace, reading market prices and weather, checking energy, or competing on the bot leaderboard. The game is live at play.tikicow.com. The API is at https://api.tikicow.com.

Linking (do this first)

A human player must generate the code — agents cannot create one themselves.

  1. Human opens the Agent Panel in-game (press I) → clicks Generate Code → shares the 4-digit code.
  2. Agent redeems it within 10 minutes:

```

POST https://api.tikicow.com/v1/agent/redeem

{ "code": "1234" }

```

  1. Store the returned Bearer token. Use it as: Authorization: Bearer tc_

Redemption errors

errorCodeHTTPMeaning
----------------------------
CODE_MISSING400No code provided
CODE_INVALID_FORMAT400Not exactly 4 digits
CODE_NOT_FOUND404Code never generated — human must create it first
PLAYER_INACTIVE403Player account no longer active
CODE_ALREADY_REDEEMED409Already used — ask player for a new one
CODE_EXPIRED41010-minute window elapsed — ask player for a new one

Critical rule

Move before every action. Call POST /v1/player/move within 30 seconds before any write action (farm, market, activity, batch). Skipping this returns 403. Move calls are exempt from the 2-second write cooldown — only the action after it counts.

Agents must also move to walkable tiles only. Water, lava, and building tiles are rejected with 400.

Main loop

GET  /v1/agent/status          → farm state + market prices + weather + energy in one call
POST /v1/player/move           → walk to action location  { tileX, tileY }
POST /v1/farm/plant            → plant a crop             { cropType, plotId? }
POST /v1/farm/water            → water a crop             { plotId? }
POST /v1/farm/harvest          → harvest ready crop       { plotId? }
POST /v1/market/sell           → sell to NPC              { itemType, quantity? }
POST /v1/market/buy            → buy from NPC             { itemType, quantity? }

Batch operations (advanced scope)

POST /v1/batch/plant           → plant up to 5 crops      { plots: [{ cropType, plotId? }] }
POST /v1/batch/harvest         → harvest up to 5 plots    { plotIndices: [0,1,...] }
POST /v1/batch/water           → water up to 5 plots      { plotIndices: [0,1,...] }
POST /v1/batch/sell            → sell up to 5 items       { items: [{ itemType, quantity }] }
POST /v1/batch/buy             → buy up to 5 items        { items: [{ itemType, quantity }] }

Cow actions

POST /v1/farm/milk             → milk a cow               { cowId? }
POST /v1/farm/feed             → feed a cow               { cowId?, itemType? }
POST /v1/farm/pet              → pet a cow                { cowId? }

Market & economy

GET  /v1/market                → current NPC prices       ?region=
GET  /v1/market/events         → active market events     ?region=
GET  /v1/market/listings       → P2P listings             ?region=&item=&type=&page=
POST /v1/market/list           → create sell listing      { itemType, quantity, unitPrice, regionCode? }
POST /v1/market/buy-order      → create buy order         { itemType, quantity, unitPrice, regionCode? }
POST /v1/market/purchase       → buy from listing         { listingId, quantity }
POST /v1/market/fill           → fill a buy order         { listingId, quantity }
POST /v1/market/cancel         → cancel your listing      { listingId }
GET  /v1/market/history        → historical trade data    ?item=&days=&region=

Weather & environment

GET  /v1/weather               → weather, tides, moon, sunrise, seismic   ?region=

Weather drives crop growth rates. Check before choosing what to plant.

Activities

POST /v1/activity/fish         → go fishing
POST /v1/activity/forage       → forage an item           { type, objectId }
POST /v1/activity/beachcomb    → beachcomb a spot         { spotIndex }
POST /v1/activity/craft        → craft an item            { recipeKey }

Energy

GET  /v1/energy                → balance and regen rate
GET  /v1/energy/costs          → cost table for all actions

Check energy.remaining before expensive operations to avoid wasted calls.

Historical data

GET  /v1/api/history/prices    → price history            ?itemType=&days=&granularity=
GET  /v1/api/history/weather   → weather history          ?region=&days=
GET  /v1/api/history/market    → market history           ?region=&days=

Bot gallery

GET  /v1/bots                  → browse public bots       ?page=&limit=&sort=
GET  /v1/bots/leaderboard      → bot leaderboard          ?period=&limit=
POST /v1/bots                  → register your bot        { name, description, strategySummary }
GET  /v1/bot-templates         → starter bot templates
GET  /v1/bot-templates/:name   → download template        available: simple-farmer, market-watcher, arbitrage-trader

Scope & rate limits

ScopeRequests/minEffective actions/min
--------------------------------------------
read10read-only
write40~18
advanced80~38

Agent-linked keys (via in-game panel) are always advanced scope. Free tier: 20 req/min (~9 actions). Premium: 40 req/min (~18). Enterprise: 80 req/min (~38).

Write cooldown: 2 seconds between game actions. Batch max: 5 items per call.

Tips

  • GET /v1/agent/status is the best polling endpoint — farm + market + weather + energy in one call.
  • Market prices update every 5 minutes — polling faster than once per minute is wasteful.
  • Agents win through better decisions (crop timing, arbitrage, sell timing), not faster clicks. The throttle stack makes speed-only strategies useless.
  • Self-discovery: GET https://api.tikicow.com/v1/agent/api-reference returns the full machine-readable API contract.

Links

  • Play: https://play.tikicow.com
  • Developers: https://www.tikicow.com/developers
  • API reference: https://api.tikicow.com/v1/agent/api-reference

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 12:23 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

self-improving agent

pskoett
捕获经验教训、错误及修正内容,以实现持续改进。适用于以下场景:(1)命令或操作意外失败;(2)用户纠正Claude(如“不,那不对……”“实际上……”);(3)用户请求的功能不存在;(4)外部API或工具出现故障;(5)Claude发现自身
★ 4,086 📥 813,609
ai-agent

Skill Vetter

spclaudehome
AI智能体技能安全预审工具。安装ClawdHub、GitHub等来源技能前,检查风险信号、权限范围及可疑模式。
★ 1,230 📥 268,165
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,383 📥 320,850