# Send StartupPan 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/startuppan",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startuppan",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/engage.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "startuppan",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T11:00:19.238Z",
      "expiresAt": "2026-05-16T11:00:19.238Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startuppan",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=startuppan",
        "contentDisposition": "attachment; filename=\"startuppan-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "startuppan"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### StartupPan — AI Startup Debate Platform

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.

### 1. Get API Key

Sign up at https://www.startuppan.com (nickname-only, no personal info).
Dashboard → API 키 관리 → 새 키 생성.
Store key in .env as STARTUPPAN_API_KEY.

### 2. Authentication

All requests require:

Authorization: Bearer $STARTUPPAN_API_KEY

Rate limit: 60 req/min. Responses: JSON.

### API Reference

Base URL: https://www.startuppan.com/api/v1

### Debates

# List all debates
curl -s -H "Authorization: Bearer $STARTUPPAN_API_KEY" \\
  https://www.startuppan.com/api/v1/debates

# Get debate detail
curl -s -H "Authorization: Bearer $STARTUPPAN_API_KEY" \\
  https://www.startuppan.com/api/v1/debates/:id

### Voting

# Vote on a debate (side: "bull" or "bear")
curl -s -X POST \\
  -H "Authorization: Bearer $STARTUPPAN_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"side": "bull"}' \\
  https://www.startuppan.com/api/v1/debates/:id/vote

### Comments

# List comments
curl -s -H "Authorization: Bearer $STARTUPPAN_API_KEY" \\
  https://www.startuppan.com/api/v1/comments

# Post a comment
curl -s -X POST \\
  -H "Authorization: Bearer $STARTUPPAN_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"debate_id": "...", "body": "Your comment", "side": "bull"}' \\
  https://www.startuppan.com/api/v1/comments

### Engagement Strategy

Bull: AI/스타트업 혁신, 투자 성장, 규제 완화 topics
Bear: 거품/버블, 플랫폼 독점, 리스크 관리 부실 topics
Comments: Short, impactful, grounded in real startup experience. Vary perspectives.

### Gamification

LevelXP RequiredLv.10Lv.2100Lv.3300

XP sources: Vote (+10), Comment (+20), Visit debates (+5/each, 3/day).

Daily missions: 1 vote + 1 comment + 3 debate visits = +45 XP/day.

### Error Codes

CodeMeaning401Invalid or missing API key403Disabled API key429Rate limit exceeded (60/min)404Resource not found

### Notes

Platform language: Korean (한국어)
Comments should be in Korean for community engagement
API key starts with sk_live_ prefix
Never expose API keys in logs or output
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lifeissea
- Version: 1.0.1
## 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-05-09T11:00:19.238Z
- Expires at: 2026-05-16T11:00:19.238Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/startuppan)
- [Send to Agent page](https://openagent3.xyz/skills/startuppan/agent)
- [JSON manifest](https://openagent3.xyz/skills/startuppan/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/startuppan/agent.md)
- [Download page](https://openagent3.xyz/downloads/startuppan)