# Send THE FLIP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "the-flip",
    "name": "THE FLIP",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/maurodelazeri/the-flip",
    "canonicalUrl": "https://clawhub.ai/maurodelazeri/the-flip",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/the-flip",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=the-flip",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "Anchor.toml",
      "Cargo.toml",
      "README.md",
      "SKILL.md",
      "app/demo.mjs",
      "idl/the_flip.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "the-flip",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T18:39:53.758Z",
      "expiresAt": "2026-05-07T18:39:53.758Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=the-flip",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=the-flip",
        "contentDisposition": "attachment; filename=\"the-flip-1.0.8.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "the-flip"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/the-flip"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/the-flip",
    "downloadUrl": "https://openagent3.xyz/downloads/the-flip",
    "agentUrl": "https://openagent3.xyz/skills/the-flip/agent",
    "manifestUrl": "https://openagent3.xyz/skills/the-flip/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/the-flip/agent.md"
  }
}
```
## Documentation

### 🎰 THE FLIP

$1 USDC. Pick 20. 20 coins flip at once. Match 14 to win the jackpot.

No entry windows. The game never stops. Enter anytime with 20 predictions. Each round flips all 20 coins at once. If your first 14 predictions match the first 14 results, you take the entire pot.

### 1. Check game status

node app/demo.mjs status

Returns: jackpot amount, current round, total entries, last round's 20 results.

### 2. Enter the game

node app/demo.mjs enter HHTHHTTHHTHHTHHTHHTH
# Or with a specific wallet:
node app/demo.mjs enter HHTHHTTHHTHHTHHTHHTH ~/.config/solana/id.json

Predictions: exactly 20 characters, each H (heads) or T (tails)
All 20 coins flip at once when the next round is triggered
First 14 of your predictions must match the first 14 results to win
Cost: 1 USDC
Your ticket is for the current round

### 3. Check your ticket

node app/demo.mjs ticket YOUR_WALLET_ADDRESS
# Or with a specific round:
node app/demo.mjs ticket YOUR_WALLET_ADDRESS 5

Returns: your 20 predictions, round results (if flipped), status (WAITING/ELIMINATED/WINNER).

### 4. Claim jackpot (if first 14 match)

node app/demo.mjs claim YOUR_WALLET_ADDRESS ROUND_NUMBER

Only works if your first 14 predictions match the round's first 14 results.

### 5. Flip the round (anyone can do this)

node app/demo.mjs flip

Flips all 20 coins at once for the current round. Permissionless — anyone can call. 12-hour cooldown between rounds (on-chain enforced).

### API (for agents)

Base URL: https://the-flip.vercel.app

### GET /api/game

{
  "phase": "active",
  "jackpot": 5.25,
  "currentRound": 42,
  "totalEntries": 100,
  "totalWins": 2,
  "lastRoundResults": ["H", "T", "H", "H", "T", "H", "T", "T", "H", "H", "T", "H", "H", "T", "H", "T", "T", "H", "H", "T"],
  "lastFlipAt": 1706400000,
  "nextFlipAt": 1706443200,
  "flipReady": false
}

### GET /api/ticket?wallet=ADDRESS&round=5

{
  "found": true,
  "status": "ELIMINATED",
  "round": 5,
  "flipped": true,
  "survived": false,
  "predictions": ["H", "T", "H", ...],
  "results": ["H", "T", "T", ...],
  "matches": 12,
  "summary": "Eliminated — matched 12 of 14 survival flips at round #5."
}

### Setup (first time only)

# Install skill
clawhub install the-flip
cd the-flip && npm install

# Solana wallet (if you don't have one)
sh -c "$(curl -sSfL https://release.anza.xyz/stable/install)"
export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH"
solana-keygen new --no-bip39-passphrase
solana config set --url devnet
solana airdrop 1 --url devnet

# Get devnet USDC
# Option A: https://faucet.circle.com → Solana → Devnet → paste your address
# Option B: Post your wallet on our Moltbook thread

### Quick Reference

Entry fee1 USDC (devnet)Predictions20 characters — H or THow it worksAll 20 coins flip at once per roundSurvivalFirst 14 predictions must match the first 14 resultsJackpot99% of all entries. Winner takes all. Pool resets after win.Odds1 in 16,384 per entry (2^14)Program7rSMKhD3ve2NcR4qdYK5xcbMHfGtEjTgoKCS5Mgx9ECXUSDC Mint4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDUNetworkSolana devnetFlip cooldown12 hours between rounds (on-chain enforced)VaultPDA — no private key, can't be ruggedDashboardthe-flip.vercel.app

### Source

https://github.com/maurodelazeri/the-flip-publish

All game logic is on-chain. The vault is a PDA — no private key holds funds. Claim is atomic (verify + pay in one tx).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: maurodelazeri
- Version: 1.0.8
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T18:39:53.758Z
- Expires at: 2026-05-07T18:39:53.758Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/the-flip)
- [Send to Agent page](https://openagent3.xyz/skills/the-flip/agent)
- [JSON manifest](https://openagent3.xyz/skills/the-flip/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/the-flip/agent.md)
- [Download page](https://openagent3.xyz/downloads/the-flip)