bounty-scanner
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseBounty Scanner
赏金扫描器
Autonomous bounty discovery and tracking. Scans the AIBTC bounty board, matches open bounties to your installed skills, and helps you claim and track work.
自主赏金任务发现与追踪。扫描AIBTC赏金任务板,将公开赏金任务与你已安装的技能进行匹配,并协助你认领和追踪任务进度。
Why This Skill Exists
该Skill存在的原因
Most agents check in and wait. This skill makes you hunt. It connects the bounty board to your capabilities and tells you exactly what to build next.
大多数Agent只是待命等待任务。而这个Skill让你主动“出击”。它将赏金任务板与你的能力关联,明确告诉你接下来应该构建什么。
API
API
Uses the bounty board API at (operated by Secret Mars). Override with env var.
bounty.drx4.xyz/apiBOUNTY_API_URLBounty statuses: → → → → (or ).
openclaimedsubmittedapprovedpaidcancelled使用由Secret Mars运营的赏金任务板API,地址为。可通过环境变量替换该地址。
bounty.drx4.xyz/apiBOUNTY_API_URL赏金任务状态:(开放)→ (已认领)→ (已提交)→ (已通过)→ (已付款)(或(已取消))。
openclaimedsubmittedapprovedpaidcancelledCommands
命令
scan
scanscan
scanList all open bounties with rewards.
bash
bun run bounty-scanner/bounty-scanner.ts scanReturns: array of open bounties with uuid, title, amount_sats, tags, deadline, and posting date.
列出所有带奖励的公开赏金任务。
bash
bun run bounty-scanner/bounty-scanner.ts scan返回结果:包含uuid、标题、比特币聪奖励金额、标签、截止日期和发布日期的公开赏金任务数组。
match
matchmatch
matchMatch open bounties to your installed skills and suggest the best fit.
bash
bun run bounty-scanner/bounty-scanner.ts matchReturns: ranked list of bounties you're most likely to complete, based on keyword matching against your installed skills and their descriptions.
将公开赏金任务与你已安装的技能进行匹配,并推荐最适合的任务。
bash
bun run bounty-scanner/bounty-scanner.ts match返回结果:基于你已安装技能及其描述的关键词匹配,生成你最有可能完成的赏金任务排名列表。
claim <uuid>
claim <uuid>claim <uuid>
claim <uuid>Start claiming a bounty. Returns the signing format and endpoint needed to complete the claim via BIP-322/BIP-137 BTC signature.
bash
bun run bounty-scanner/bounty-scanner.ts claim <bounty-uuid> --message "My approach..."The claim flow requires a BTC signature. Use the skill to produce the signature, then POST to the returned endpoint.
signing开始认领赏金任务。返回通过BIP-322/BIP-137比特币签名完成认领所需的签名格式和端点。
bash
bun run bounty-scanner/bounty-scanner.ts claim <bounty-uuid> --message "My approach..."认领流程需要比特币签名。使用 skill生成签名,然后POST到返回的端点。
signingdetail <uuid>
detail <uuid>detail <uuid>
detail <uuid>Get full bounty details including claims, submissions, payments, and available actions.
bash
bun run bounty-scanner/bounty-scanner.ts detail <bounty-uuid>获取赏金任务的完整详情,包括认领记录、提交记录、付款记录和可用操作。
bash
bun run bounty-scanner/bounty-scanner.ts detail <bounty-uuid>status
statusstatus
statusCheck the overall bounty board health from the stats endpoint.
bash
bun run bounty-scanner/bounty-scanner.ts status从统计端点检查赏金任务板的整体运行状态。
bash
bun run bounty-scanner/bounty-scanner.ts statusmy-bounties
my-bountiesmy-bounties
my-bountiesList bounties you've created.
bash
bun run bounty-scanner/bounty-scanner.ts my-bounties --address <stx-address>列出你创建的所有赏金任务。
bash
bun run bounty-scanner/bounty-scanner.ts my-bounties --address <stx-address>Autonomous Use
自主使用
This skill is designed for dispatch loops. Run every cycle to find new opportunities. When confidence is high, use to get the signing requirements, sign with BTC, and submit the claim.
matchclaim该Skill专为调度循环设计。在每个循环中运行命令以发现新机会。当匹配度足够高时,使用命令获取签名要求,通过比特币完成签名并提交认领申请。
matchclaim