droyd
Crypto Trading | Crypto Search | Crypto Token Filter -- AI crypto trading wallet via natural language. Use when the user wants to execute AI research tasks, trade crypto autonomously, search crypto content/news, filter projects by market criteria, manage trading positions, or interact with DROYD agents. Supports agent tasks (research, trading, data analysis), content search (semantic/recent), project discovery (by name/symbol/address/concept), project filtering (market cap, momentum, technical indicators), watchlist management, and autonomous trading with stop losses, take profits, and quant-based strategies. Works with Solana (trading) and other chains Ethereum, Base, and Arbitrum for token filtering + research.
What this skill does
# DROYD
Execute crypto research, trading, and data operations using natural language through DROYD's AI agent API.
[droyd.ai](https://droyd.ai) | [api.droyd.ai](https://api.droyd.ai)
## Quick Start
### First-Time Setup
#### Option A: User provides existing API key
If the user already has a DROYD API key:
1) Download the Droyd Skill
```bash
clawhub install droyd
```
or if clawhub is not installed
```bash
mkdir -p ~/.openclaw/skills/droyd` and copy the contents of the zip file download
```
2) configure creditials
```bash
cat > ~/.openclaw/workspace/skills/droyd/config.json << 'EOF'
{
"apiKey": "YOUR_API_KEY_HERE",
"apiUrl": "https://api.droyd.ai"
}
EOF
```
API keys can be obtained at [droyd.ai](https://droyd.ai) in account settings.
#### Option B: Guide user through signup
1. **Sign up** at [droyd.ai](https://droyd.ai)
2. **Get API key** in account settings
3. **Configure**:
```bash
mkdir -p ~/.openclaw/skills/droyd
cat > ~/.openclaw/skills/droyd/config.json << 'EOF'
{
"apiKey": "YOUR_API_KEY_HERE",
"apiUrl": "https://api.droyd.ai"
}
EOF
```
#### Verify Setup
```bash
scripts/droyd-search.sh "recent" "posts,news" 5
```
## Core Usage
### Agent Chat
Chat with DROYD AI agent. Supports multi-turn conversations:
```bash
# Chat with the agent
scripts/droyd-chat.sh "What's the current sentiment on AI tokens?"
# Continue conversation (pass conversation_uuid from previous response)
scripts/droyd-chat.sh "Tell me more about the second point" "uuid-from-previous"
# With streaming
scripts/droyd-chat.sh "Research Jupiter aggregator" "" "true"
```
**Reference**: [references/agent-chat.md](references/agent-chat.md)
### Content Search
Search crypto content with semantic or recent modes:
```bash
# Recent content
scripts/droyd-search.sh "recent" "posts,news" 25 "ethereum,base" "defi" 7
# Semantic search
scripts/droyd-search.sh "semantic" "posts,tweets" 50 "" "" 7 "What are the risks of liquid staking?"
```
**Reference**: [references/search.md](references/search.md)
### Project Search
Find projects by name, symbol, address, or concept:
```bash
# By name
scripts/droyd-project-search.sh "name" "Bitcoin,Ethereum" 10
# By symbol
scripts/droyd-project-search.sh "symbol" "BTC,ETH,SOL"
# Semantic search
scripts/droyd-project-search.sh "semantic" "AI agents in DeFi" 15
# By contract address
scripts/droyd-project-search.sh "address" "So11111111111111111111111111111111111111112"
```
**Reference**: [references/project-search.md](references/project-search.md)
### Project Filter
Screen projects with market criteria:
```bash
# Natural language filter
scripts/droyd-filter.sh "natural_language" "Find trending micro-cap Solana tokens with high trader growth"
# Direct filter (trending tokens on Solana under $10M mcap)
scripts/droyd-filter.sh "direct" "" "trending" "desc" "4h" "solana" "" "10" "50000"
```
**Reference**: [references/project-filter.md](references/project-filter.md)
### Trading
Execute trades with risk management:
```bash
# Simple market buy
scripts/droyd-trade-open.sh 123 "market_buy" 100
# Buy with stop loss and take profit (project_id, entry_amount, stop_%, tp_%)
scripts/droyd-trade-open.sh 123 "managed" 100 0.10 0.25
# Check positions
scripts/droyd-positions.sh
# Close position
scripts/droyd-trade-manage.sh 789 "close"
# Partial sell (50%)
scripts/droyd-trade-manage.sh 789 "sell" 0.5
```
**Reference**: [references/trading.md](references/trading.md)
## Capabilities Overview
### Search Modes
| Mode | Use Case |
|------|----------|
| `auto` | Default - automatically selects mode based on query presence |
| `recent` | Browse latest content by type, ecosystem, category |
| `semantic` | AI-powered question answering with analysis |
### Content Types
`posts`, `news`, `developments`, `tweets`, `youtube`, `memories`
### Project Search Types
- `project_id` - Direct ID lookup (fastest)
- `name` - Search by project name
- `symbol` - Search by ticker symbol
- `address` - Search by contract address (exact)
- `semantic` - AI-powered concept search
### Filter Sort Options
`trending`, `market_cap`, `price_change`, `traders`, `traders_change`, `volume`, `volume_change`, `buy_volume_ratio`, `quant_score`, `quant_score_change`, `mentions_24h`, `mentions_7d`
### Trading Leg Types
- `market_buy` - Immediate execution at market price
- `limit_order` - Buy when price drops by specified %
- `stop_loss` - Sell on price drop (protection)
- `take_profit` - Sell on price rise (lock gains)
- `quant_buy` / `quant_sell` - Trigger on momentum score thresholds
### Supported Chains
`solana`, `ethereum`, `base`, `arbitrum`
## Rate Limits
- Varies by subscription tier - most endpoints are 3 | 30 | 100 for the plans free |casual | pro per API session
- API sessions are 15 minutes per endpoint
- HTTP 429 returned when limit exceeded
## Error Handling
Common errors:
- `400` - Validation failed (check parameters)
- `401` - Invalid or missing API key
- `429` - Rate limit exceeded (wait 10 minutes)
- `500` - Internal server error
## Resources
- **Website**: [droyd.ai](https://droyd.ai)
- **API Playground**: [api.droyd.ai](https://api.droyd.ai)
- **Documentation**: https://docs.droyd.ai
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.