{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arena-system",
    "name": "Arena System",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Zedit42/arena-system",
    "canonicalUrl": "https://clawhub.ai/Zedit42/arena-system",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arena-system",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arena-system",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package.json",
      "setup.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "arena-system",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T21:25:01.792Z",
      "expiresAt": "2026-05-06T21:25:01.792Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arena-system",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arena-system",
        "contentDisposition": "attachment; filename=\"arena-system-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arena-system"
      },
      "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/arena-system"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/arena-system",
    "agentPageUrl": "https://openagent3.xyz/skills/arena-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arena-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arena-system/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Arena System",
        "body": "Adversarial self-improvement framework for AI agents."
      },
      {
        "title": "What it does",
        "body": "Give one agent two personas:\n\nAgent - Does the work, writes reports\nAnti-Agent - Questions everything, writes counter-reports\n\nThey take turns critiquing each other until you stop them."
      },
      {
        "title": "Why use it",
        "body": "AI agents are overconfident. They hallucinate. Arena forces them to question their own outputs by arguing with themselves."
      },
      {
        "title": "Setup",
        "body": "./setup.sh ~/my-arena\n\nCreates:\n\nmy-arena/\n├── state.json\n├── prompts/agent.md\n├── prompts/anti-agent.md\n└── outputs/"
      },
      {
        "title": "Usage",
        "body": "Add to HEARTBEAT.md:\n\nRead state.json → whose turn?\nRun that persona\nWrite to outputs/{role}/iteration_N.md\nSwitch turns, save state"
      },
      {
        "title": "Config",
        "body": "state.json:\n\n{\n  \"current_turn\": \"agent\",\n  \"iteration\": 0,\n  \"topic\": \"my-project\",\n  \"active\": true,\n  \"max_iterations\": 10\n}"
      },
      {
        "title": "Results",
        "body": "Prevents premature deployments, catches bugs, forces proper validation before going live."
      }
    ],
    "body": "Arena System\n\nAdversarial self-improvement framework for AI agents.\n\nWhat it does\n\nGive one agent two personas:\n\nAgent - Does the work, writes reports\nAnti-Agent - Questions everything, writes counter-reports\n\nThey take turns critiquing each other until you stop them.\n\nWhy use it\n\nAI agents are overconfident. They hallucinate. Arena forces them to question their own outputs by arguing with themselves.\n\nSetup\n./setup.sh ~/my-arena\n\n\nCreates:\n\nmy-arena/\n├── state.json\n├── prompts/agent.md\n├── prompts/anti-agent.md\n└── outputs/\n\nUsage\n\nAdd to HEARTBEAT.md:\n\nRead state.json → whose turn?\nRun that persona\nWrite to outputs/{role}/iteration_N.md\nSwitch turns, save state\nConfig\n\nstate.json:\n\n{\n  \"current_turn\": \"agent\",\n  \"iteration\": 0,\n  \"topic\": \"my-project\",\n  \"active\": true,\n  \"max_iterations\": 10\n}\n\nResults\n\nPrevents premature deployments, catches bugs, forces proper validation before going live."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Zedit42/arena-system",
    "publisherUrl": "https://clawhub.ai/Zedit42/arena-system",
    "owner": "Zedit42",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arena-system",
    "downloadUrl": "https://openagent3.xyz/downloads/arena-system",
    "agentUrl": "https://openagent3.xyz/skills/arena-system/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arena-system/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arena-system/agent.md"
  }
}