Skill 詳細
crypto-bd-agent
BD-specific but narrowly for crypto exchange token listings.
使用前に確認
自動レビューは関連性のみを確認し、安全性や推奨を保証しません。使用前に出典の説明を読んでください。
SKILL.md
これはレビュー時に保存された抜粋です。完全で最新の内容は外部ソースを確認してください。
---
name: crypto-bd-agent
description: This skill teaches AI agents systematic crypto business development: discover
Autonomous crypto business development patterns — multi-chain token discovery,
100-point scoring with wallet forensics, x402 micropayments, ERC-8004 on-chain
identity, LLM cascade routing, and pipeline automation for CEX/DEX listing
acquisition. Use when building AI agents for crypto BD, token evaluation,
exchange listing outreach, or autonomous commerce with payment protocols.
risk: safe
source: community
tags:
- crypto
- business-development
- token-scanning
- x402
- erc-8004
- autonomous-agent
- solana
- ethereum
- wallet-forensics
---
# Crypto BD Agent — Autonomous Business Development for Exchanges
> Production-tested patterns for building AI agents that autonomously discover,
> evaluate, and acquire token listings for cryptocurrency exchanges.
## Overview
This skill teaches AI agents systematic crypto business development: discover
promising tokens across chains, score them with a 100-point weighted system,
verify safety through wallet forensics, and manage outreach pipelines with
human-in-the-loop oversight.
Built from production experience running Buzz BD Agent by SolCex Exchange —
an autonomous agent on decentralized infrastructure with 13 intelligence
sources, x402 micropayments, and dual-chain ERC-8004 registration.
Reference implementation: https://github.com/buzzbysolcex/buzz-bd-agent
## When to Use This Skill
- Building an AI agent for crypto/DeFi business development
- Creating token evaluation and scoring systems
- Implementing multi-chain scanning pipelines
- Setting up autonomous payment workflows (x402)
- Designing wallet forensics for deployer analysis
- Managing BD pipelines with human-in-the-loop
- Registering agents on-chain via ERC-8004
- Implementing cost-efficient LLM cascades
## Do Not Use When
- Building trading bots (this is BD, not trading)
- Creating DeFi protocols or smart contracts
- Non-crypto business development
---
## Architecture
```text
Intelligence Sources (Free + Paid via x402)
|
v
Scoring Engine (100-point weighted)
|
v
Wallet Forensics (deployer verification)
|
v
Pipeline Manager (10-stage tracked)
|
v
Outreach Drafts → Human Approval → Send
```
### LLM Cascade Pattern
Route tasks to the cheapest model that handles them correctly:
```text
Fast/cheap model (routine: tweets, forum posts, pipeline updates)
↓ fallback on quality issues
Free API models (scanning, initial scoring, system tasks)
↓ fallback
Mid-tier model (outreach drafts, deeper analysis)
↓ fallback
Premium model (strategy, wallet forensics, final outreach)
```
Run a quality gate (10+ test cases) before promoting any new model.
---
## 1. Intelligence Gathering
### Free-First Principle
Always exhaust free data before paying. Target: $0/day for 90% of intelligence.
### Recommended Source Categories
| Category | What to Track | Example Sources |
|----------|--------------|-----------------|
| DEX Data | Prices, liquidity, pairs, chain coverage | DexScreener, GeckoTerminal |
| AI Momentum | Trending tokens, catalysts | AIXBT or similar trackers |
| Smart Money | VC follows, KOL accumulation | leak.me, Nansen free, Arkham |
| Contract Safety | Rug scores, LP lock, authorities | RugCheck |
| Wallet Forensics | Deployer analysis, fund flow | Helius (Solana), Allium (multi-chain) |
| Web Scraping | Project verification, team info | Firecrawl or similar |
| On-Chain Identity | Agent registration, trust signals | ATV Web3 Identity, ERC-8004 |
| Community | Forum signals, ecosystem intel | Protocol forums |
### Paid Sources (via x402 micropayments)
- Whale alert services (~$0.10/call, 1-2x daily)
- Breaking news aggregators (~$0.10/call, 2x daily)
- Budget: ~$0.30/day = ~$9/month
### Rules
1. Cross-reference: every prospect needs 2+ independent source confirmations
2. Multi-source cross-maGitHub で全文を読む (外部ページ)