# Send Polymarket Bots by 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": "prediction-market-bot-dawn",
    "name": "Polymarket Bots by",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/njdawn/prediction-market-bot-dawn",
    "canonicalUrl": "https://clawhub.ai/njdawn/prediction-market-bot-dawn",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/prediction-market-bot-dawn",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prediction-market-bot-dawn",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/prediction-market-bot-dawn"
    },
    "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/prediction-market-bot-dawn",
    "downloadUrl": "https://openagent3.xyz/downloads/prediction-market-bot-dawn",
    "agentUrl": "https://openagent3.xyz/skills/prediction-market-bot-dawn/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prediction-market-bot-dawn/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prediction-market-bot-dawn/agent.md"
  }
}
```
## Documentation

### Goal

Execute a complete dawn strategy workflow: install/check CLI, authenticate, prepare funding, create and iterate strategy code, launch paper/live runs, monitor status, and stop safely when requested.

### When to use

Use this skill when the user asks to:

create a strategy from plain-English intent,
revise or upload strategy code,
launch paper or live strategy runs,
monitor run health/positions/logs,
stop or debug an active run.

### Install and preflight

Install dawn if needed:

npm install -g @dawnai/cli

Verify:

# Print current Dawn CLI version
dawn version
dawn --help

Local source workflow only:

cd dawn-cli
npm install
npm run build
./install.sh

### Command map

Auth:

dawn auth login
dawn auth status
dawn auth logout

Account:

dawn account overview
dawn account fund
dawn account wallet

Strategy authoring:

dawn strategy list
dawn strategy create "<text>"
dawn strategy status <conversationId>
dawn strategy revise <conversationId> "<text>"
dawn strategy rules <conversationId> list
dawn strategy rules <conversationId> approve <rule-index>
dawn strategy rules <conversationId> approve-all
dawn strategy code <conversationId> status
dawn strategy code <conversationId> generate
dawn strategy code <conversationId> export [--out <path>] [--json]
dawn strategy code <conversationId> upload <path-to-file>

Launch and operations:

dawn strategy launch <conversationId> --budget <usd> [--live] [--hours N]
dawn strategy positions <conversationId> [--strategy-id <strategyId>]
dawn run list
dawn run status <conversationId>
dawn run logs <conversationId> [--limit N]
dawn run stop <conversationId>

### Standard flow

Authenticate: dawn auth login.
Confirm funding path: dawn account fund (required for live runs).
Create strategy: dawn strategy create "<request>" and capture conversationId.
Iterate strategy:

revise prompt (strategy revise) and/or upload files (strategy code ... upload),
review/approve rules,
generate code,
export code when needed (--json for multi-file map).


Launch:

paper: dawn strategy launch <conversationId> --budget 50
live: dawn strategy launch <conversationId> --budget 50 --live
custom duration: add --hours N


Monitor:

dawn run status <conversationId>
dawn strategy positions <conversationId>
dawn run logs <conversationId> --limit N


Stop when requested: dawn run stop <conversationId>, then verify status again.

### Monitoring loop

For active monitoring sessions:

Query dawn run status <conversationId>.
Record timestamp, isRunning, status, and active strategy IDs.
Query dawn strategy positions <conversationId> for holdings/PnL.
Query dawn run logs <conversationId> --limit N for execution details.
If records look stale or missing, wait briefly and retry once.

### Troubleshooting

"Not authenticated. Run: dawn auth login": run dawn auth login and retry.
Auth callback completes but CLI appears stuck: interrupt once and retry login.
"No strategy version found...": create/revise/upload strategy code, then relaunch.
"No strategies found for this agent" on stop: verify conversationId, then check dawn run status.
Live launch fails: re-check funding path with dawn account fund.

### Run checklist

Dawn Strategy Runbook
- [ ] Preflight complete
- [ ] Auth complete
- [ ] Funding path checked (or user confirmed paper-only)
- [ ] conversationId captured
- [ ] Strategy code generated/uploaded
- [ ] Launch run completed (paper/live)
- [ ] strategyId captured (if launched)
- [ ] Monitoring snapshots collected
- [ ] Stop executed (if requested)
- [ ] Final status verified

### Skills

Individual skills for each command:

SkillPurposedawn-authInstall, authenticate, check status, logoutdawn-accountAccount overview, funding, wallet balancesdawn-strategy-createCreate a strategy from plain-English promptdawn-strategy-listList all strategiesdawn-strategy-statusFull strategy status and healthdawn-strategy-reviseIterate on a strategy with revisionsdawn-strategy-rulesList, approve, and manage rulesdawn-strategy-codeCode generation, status, export, uploaddawn-strategy-launchLaunch paper or live runsdawn-strategy-positionsView positions and PnLdawn-run-monitorList runs, check status, view logsdawn-run-stopStop a running strategy

### Required output

When using this skill, always return:

conversationId,
strategyId (if launched),
run mode (paper/live),
latest monitoring summary,
exact next command to run (or the last command run).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: njdawn
- Version: 1.0.8
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/prediction-market-bot-dawn)
- [Send to Agent page](https://openagent3.xyz/skills/prediction-market-bot-dawn/agent)
- [JSON manifest](https://openagent3.xyz/skills/prediction-market-bot-dawn/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/prediction-market-bot-dawn/agent.md)
- [Download page](https://openagent3.xyz/downloads/prediction-market-bot-dawn)