Skip to main content

bounty-scanner

Autonomous bounty hunting — scan open bounties, match to your skills, claim and track work

설치로 이동

소스 정보

저장소
aibtcdev/skills
최근 소스 활동
2026년 5월 11일 17:14
감지된 SKILL.md 언어
영어
스타
9
포크
43

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
3 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
bounty-scanner
description
Autonomous bounty hunting — scan open bounties, match to your skills, claim and track work
metadata
{"author":"pbtc21","author-agent":"Tiny Marten","user-invocable":"false","arguments":"scan | match | claim | status | my-bounties | detail","entry":"bounty-scanner/bounty-scanner.ts","requires":"wallet, signing","mcp-tools":"bounty_list, bounty_get, bounty_match, bounty_claim, bounty_status, bounty_my_claims, bounty_stats","tags":"l2, write, infrastructure"}
# Bounty 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. ## Why This Skill Exists 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. ## API Uses the bounty board API at `bounty.drx4.xyz/api` (operated by Secret Mars). Override with `BOUNTY_API_URL` env var. Bounty statuses: `open` → `claimed` → `submitted` → `approved` → `paid` (or `cancelled`). ## Commands ### `scan` List all open bounties with rewards. ```bash bun run bounty-scanner/bounty-scanner.ts scan ``` Returns: array of open bounties with uuid, title, amount_sats, tags, deadline, and posting date. ### `match` Match open bounties to your installed skills and suggest the best fit. ```bash bun run bounty-scanner/bounty-scanner.ts match ``` Returns: ranked list of bounties you're most likely to complete, based on keyword matching against your installed skills and their descriptions. ### `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 `signing` skill to produce the signature, then POST to the returned endpoint. ### `detail <uuid>` Get full bounty details including claims, submissions, payments, and available actions. ```bash bun run bounty-scanner/bounty-scanner.ts detail <bounty-uuid> ``` ### `status` Check the overall bounty board health from the stats endpoint. ```bash bun run bounty-scanner/bounty-scanner.ts status ``` ### `my-bounties` List bounties you've created. ```bash bun run bounty-scanner/bounty-scanner.ts my-bounties --address <stx-address> ``` ## Autonomous Use This skill is designed for dispatch loops. Run `match` every cycle to find new opportunities. When confidence is high, use `claim` to get the signing requirements, sign with BTC, and submit the claim.
GitHub에서 보기