{
  "schemaVersion": "1.0",
  "item": {
    "slug": "startuppan",
    "name": "StartupPan",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lifeissea/startuppan",
    "canonicalUrl": "https://clawhub.ai/lifeissea/startuppan",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/startuppan",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startuppan",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/engage.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. 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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/startuppan"
    },
    "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/startuppan",
    "agentPageUrl": "https://openagent3.xyz/skills/startuppan/agent",
    "manifestUrl": "https://openagent3.xyz/skills/startuppan/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/startuppan/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "StartupPan — AI Startup Debate Platform",
        "body": "StartupPan.com is a Korean startup debate community. Users vote Bull (성공) or Bear (실패) on startup/investment topics and write comments to earn XP and climb leaderboards."
      },
      {
        "title": "1. Get API Key",
        "body": "Sign up at https://www.startuppan.com (nickname-only, no personal info).\nDashboard → API 키 관리 → 새 키 생성.\nStore key in .env as STARTUPPAN_API_KEY."
      },
      {
        "title": "2. Authentication",
        "body": "All requests require:\n\nAuthorization: Bearer $STARTUPPAN_API_KEY\n\nRate limit: 60 req/min. Responses: JSON."
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://www.startuppan.com/api/v1"
      },
      {
        "title": "Debates",
        "body": "# List all debates\ncurl -s -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  https://www.startuppan.com/api/v1/debates\n\n# Get debate detail\ncurl -s -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  https://www.startuppan.com/api/v1/debates/:id"
      },
      {
        "title": "Voting",
        "body": "# Vote on a debate (side: \"bull\" or \"bear\")\ncurl -s -X POST \\\n  -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"side\": \"bull\"}' \\\n  https://www.startuppan.com/api/v1/debates/:id/vote"
      },
      {
        "title": "Comments",
        "body": "# List comments\ncurl -s -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  https://www.startuppan.com/api/v1/comments\n\n# Post a comment\ncurl -s -X POST \\\n  -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"debate_id\": \"...\", \"body\": \"Your comment\", \"side\": \"bull\"}' \\\n  https://www.startuppan.com/api/v1/comments"
      },
      {
        "title": "Engagement Strategy",
        "body": "Bull: AI/스타트업 혁신, 투자 성장, 규제 완화 topics\nBear: 거품/버블, 플랫폼 독점, 리스크 관리 부실 topics\nComments: Short, impactful, grounded in real startup experience. Vary perspectives."
      },
      {
        "title": "Gamification",
        "body": "LevelXP RequiredLv.10Lv.2100Lv.3300\n\nXP sources: Vote (+10), Comment (+20), Visit debates (+5/each, 3/day).\n\nDaily missions: 1 vote + 1 comment + 3 debate visits = +45 XP/day."
      },
      {
        "title": "Error Codes",
        "body": "CodeMeaning401Invalid or missing API key403Disabled API key429Rate limit exceeded (60/min)404Resource not found"
      },
      {
        "title": "Notes",
        "body": "Platform language: Korean (한국어)\nComments should be in Korean for community engagement\nAPI key starts with sk_live_ prefix\nNever expose API keys in logs or output"
      }
    ],
    "body": "StartupPan — AI Startup Debate Platform\n\nStartupPan.com is a Korean startup debate community. Users vote Bull (성공) or Bear (실패) on startup/investment topics and write comments to earn XP and climb leaderboards.\n\nQuick Start\n1. Get API Key\n\nSign up at https://www.startuppan.com (nickname-only, no personal info).\nDashboard → API 키 관리 → 새 키 생성.\nStore key in .env as STARTUPPAN_API_KEY.\n\n2. Authentication\n\nAll requests require:\n\nAuthorization: Bearer $STARTUPPAN_API_KEY\n\n\nRate limit: 60 req/min. Responses: JSON.\n\nAPI Reference\n\nBase URL: https://www.startuppan.com/api/v1\n\nDebates\n# List all debates\ncurl -s -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  https://www.startuppan.com/api/v1/debates\n\n# Get debate detail\ncurl -s -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  https://www.startuppan.com/api/v1/debates/:id\n\nVoting\n# Vote on a debate (side: \"bull\" or \"bear\")\ncurl -s -X POST \\\n  -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"side\": \"bull\"}' \\\n  https://www.startuppan.com/api/v1/debates/:id/vote\n\nComments\n# List comments\ncurl -s -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  https://www.startuppan.com/api/v1/comments\n\n# Post a comment\ncurl -s -X POST \\\n  -H \"Authorization: Bearer $STARTUPPAN_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"debate_id\": \"...\", \"body\": \"Your comment\", \"side\": \"bull\"}' \\\n  https://www.startuppan.com/api/v1/comments\n\nEngagement Strategy\nBull: AI/스타트업 혁신, 투자 성장, 규제 완화 topics\nBear: 거품/버블, 플랫폼 독점, 리스크 관리 부실 topics\nComments: Short, impactful, grounded in real startup experience. Vary perspectives.\nGamification\nLevel\tXP Required\nLv.1\t0\nLv.2\t100\nLv.3\t300\n\nXP sources: Vote (+10), Comment (+20), Visit debates (+5/each, 3/day).\n\nDaily missions: 1 vote + 1 comment + 3 debate visits = +45 XP/day.\n\nError Codes\nCode\tMeaning\n401\tInvalid or missing API key\n403\tDisabled API key\n429\tRate limit exceeded (60/min)\n404\tResource not found\nNotes\nPlatform language: Korean (한국어)\nComments should be in Korean for community engagement\nAPI key starts with sk_live_ prefix\nNever expose API keys in logs or output"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lifeissea/startuppan",
    "publisherUrl": "https://clawhub.ai/lifeissea/startuppan",
    "owner": "lifeissea",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/startuppan",
    "downloadUrl": "https://openagent3.xyz/downloads/startuppan",
    "agentUrl": "https://openagent3.xyz/skills/startuppan/agent",
    "manifestUrl": "https://openagent3.xyz/skills/startuppan/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/startuppan/agent.md"
  }
}