Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

prediction-market-bot-dawn预测市场机器人黎明

Agent Skill

prediction-market-bot-dawn 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,730

周安装

510

GitHub Stars

公开资料未说明

下载量

4,121
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:prediction-market-bot-dawn(预测市场机器人黎明)
来源仓库:https://github.com/njdawn/prediction-market-bot-dawn
安装命令:
openclaw skills install prediction-market-bot-dawn
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install prediction-market-bot-dawn

简介

运行 Dawn CLI 策略完整生命周期的机器人工具。

  • 涵盖身份验证、资助、创建到监控终止全流程。
  • 支持策略自动化部署与生命周期管理。prediction-market-bot-dawn 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 涉及敏感操作时需确认凭据安全和权限最小化。
  • 建议在安装前检查维护状态和命令执行边界。

SKILL.md

name
prediction-market-bot
description
Runs the full Dawn CLI strategy lifecycle from authentication and funding through strategy creation, launch, monitoring, and termination. Use when the user asks to create, launch, monitor, debug, or operate a strategy/agent using dawn-cli commands.
tags
[trading, strategy, operations, prediction-market]
metadata
openclaw
emoji
🌅
homepage
https://dawn.ai
requires
bins
[dawn]
install
package
@dawnai/cli
bins
[dawn]

Run a Dawn strategy lifecycle

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

  1. Authenticate: dawn auth login.
  2. Confirm funding path: dawn account fund (required for live runs).
  3. Create strategy: dawn strategy create "<request>" and capture conversationId.
  4. 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).

  1. Launch:

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

  1. Monitor:

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

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

Monitoring loop

For active monitoring sessions:

  1. Query dawn run status <conversationId>.
  2. Record timestamp, isRunning, status, and active strategy IDs.
  3. Query dawn strategy positions <conversationId> for holdings/PnL.
  4. Query dawn run logs <conversationId> --limit N for execution details.
  5. 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:

SkillPurpose
dawn-authInstall, authenticate, check status, logout
dawn-accountAccount overview, funding, wallet balances
dawn-strategy-createCreate a strategy from plain-English prompt
dawn-strategy-listList all strategies
dawn-strategy-statusFull strategy status and health
dawn-strategy-reviseIterate on a strategy with revisions
dawn-strategy-rulesList, approve, and manage rules
dawn-strategy-codeCode generation, status, export, upload
dawn-strategy-launchLaunch paper or live runs
dawn-strategy-positionsView positions and PnL
dawn-run-monitorList runs, check status, view logs
dawn-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).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.38%
按下载量换算2,942

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills