@intentsolutionsio/token-launch-tracker 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +22 -0
- package/LICENSE +21 -0
- package/README.md +162 -0
- package/agents/launch-tracker-agent.md +338 -0
- package/package.json +43 -0
- package/skills/skill-adapter/assets/README.md +5 -0
- package/skills/skill-adapter/assets/config-template.json +32 -0
- package/skills/skill-adapter/assets/skill-schema.json +28 -0
- package/skills/skill-adapter/assets/test-data.json +27 -0
- package/skills/skill-adapter/references/README.md +4 -0
- package/skills/skill-adapter/references/best-practices.md +69 -0
- package/skills/skill-adapter/references/examples.md +73 -0
- package/skills/skill-adapter/scripts/README.md +8 -0
- package/skills/skill-adapter/scripts/helper-template.sh +42 -0
- package/skills/skill-adapter/scripts/validation.sh +32 -0
- package/skills/tracking-token-launches/ARD.md +183 -0
- package/skills/tracking-token-launches/PRD.md +66 -0
- package/skills/tracking-token-launches/SKILL.md +161 -0
- package/skills/tracking-token-launches/config/settings.yaml +166 -0
- package/skills/tracking-token-launches/references/errors.md +167 -0
- package/skills/tracking-token-launches/references/examples.md +292 -0
- package/skills/tracking-token-launches/references/implementation.md +36 -0
- package/skills/tracking-token-launches/scripts/dex_sources.py +270 -0
- package/skills/tracking-token-launches/scripts/event_monitor.py +345 -0
- package/skills/tracking-token-launches/scripts/formatters.py +279 -0
- package/skills/tracking-token-launches/scripts/launch_tracker.py +572 -0
- package/skills/tracking-token-launches/scripts/token_analyzer.py +417 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Skill Best Practices
|
|
2
|
+
|
|
3
|
+
Guidelines for optimal skill usage and development.
|
|
4
|
+
|
|
5
|
+
## For Users
|
|
6
|
+
|
|
7
|
+
### Activation Best Practices
|
|
8
|
+
|
|
9
|
+
1. **Use Clear Trigger Phrases**
|
|
10
|
+
- Match phrases from skill description
|
|
11
|
+
- Be specific about intent
|
|
12
|
+
- Provide necessary context
|
|
13
|
+
|
|
14
|
+
2. **Provide Sufficient Context**
|
|
15
|
+
- Include relevant file paths
|
|
16
|
+
- Specify scope of analysis
|
|
17
|
+
- Mention any constraints
|
|
18
|
+
|
|
19
|
+
3. **Understand Tool Permissions**
|
|
20
|
+
- Check allowed-tools in frontmatter
|
|
21
|
+
- Know what the skill can/cannot do
|
|
22
|
+
- Request appropriate actions
|
|
23
|
+
|
|
24
|
+
### Workflow Optimization
|
|
25
|
+
|
|
26
|
+
- Start with simple requests
|
|
27
|
+
- Build up to complex workflows
|
|
28
|
+
- Verify each step before proceeding
|
|
29
|
+
- Use skill consistently for related tasks
|
|
30
|
+
|
|
31
|
+
## For Developers
|
|
32
|
+
|
|
33
|
+
### Skill Development Guidelines
|
|
34
|
+
|
|
35
|
+
1. **Clear Descriptions**
|
|
36
|
+
- Include explicit trigger phrases
|
|
37
|
+
- Document all capabilities
|
|
38
|
+
- Specify limitations
|
|
39
|
+
|
|
40
|
+
2. **Proper Tool Permissions**
|
|
41
|
+
- Use minimal necessary tools
|
|
42
|
+
- Document security implications
|
|
43
|
+
- Test with restricted tools
|
|
44
|
+
|
|
45
|
+
3. **Comprehensive Documentation**
|
|
46
|
+
- Provide usage examples
|
|
47
|
+
- Document common pitfalls
|
|
48
|
+
- Include troubleshooting guide
|
|
49
|
+
|
|
50
|
+
### Maintenance
|
|
51
|
+
|
|
52
|
+
- Keep version updated
|
|
53
|
+
- Test after tool updates
|
|
54
|
+
- Monitor user feedback
|
|
55
|
+
- Iterate on descriptions
|
|
56
|
+
|
|
57
|
+
## Performance Tips
|
|
58
|
+
|
|
59
|
+
- Scope skills to specific domains
|
|
60
|
+
- Avoid overlapping trigger phrases
|
|
61
|
+
- Keep descriptions under 1024 chars
|
|
62
|
+
- Test activation reliability
|
|
63
|
+
|
|
64
|
+
## Security Considerations
|
|
65
|
+
|
|
66
|
+
- Never include secrets in skill files
|
|
67
|
+
- Validate all inputs
|
|
68
|
+
- Use read-only tools when possible
|
|
69
|
+
- Document security requirements
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Skill Usage Examples
|
|
2
|
+
|
|
3
|
+
This document provides practical examples of how to use this skill effectively.
|
|
4
|
+
|
|
5
|
+
## Basic Usage
|
|
6
|
+
|
|
7
|
+
### Example 1: Simple Activation
|
|
8
|
+
|
|
9
|
+
**User Request:**
|
|
10
|
+
```
|
|
11
|
+
[Describe trigger phrase here]
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**Skill Response:**
|
|
15
|
+
1. Analyzes the request
|
|
16
|
+
2. Performs the required action
|
|
17
|
+
3. Returns results
|
|
18
|
+
|
|
19
|
+
### Example 2: Complex Workflow
|
|
20
|
+
|
|
21
|
+
**User Request:**
|
|
22
|
+
```
|
|
23
|
+
[Describe complex scenario]
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Workflow:**
|
|
27
|
+
1. Step 1: Initial analysis
|
|
28
|
+
2. Step 2: Data processing
|
|
29
|
+
3. Step 3: Result generation
|
|
30
|
+
4. Step 4: Validation
|
|
31
|
+
|
|
32
|
+
## Advanced Patterns
|
|
33
|
+
|
|
34
|
+
### Pattern 1: Chaining Operations
|
|
35
|
+
|
|
36
|
+
Combine this skill with other tools:
|
|
37
|
+
```
|
|
38
|
+
Step 1: Use this skill for [purpose]
|
|
39
|
+
Step 2: Chain with [other tool]
|
|
40
|
+
Step 3: Finalize with [action]
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Pattern 2: Error Handling
|
|
44
|
+
|
|
45
|
+
If issues occur:
|
|
46
|
+
- Check trigger phrase matches
|
|
47
|
+
- Verify context is available
|
|
48
|
+
- Review allowed-tools permissions
|
|
49
|
+
|
|
50
|
+
## Tips & Best Practices
|
|
51
|
+
|
|
52
|
+
- ✅ Be specific with trigger phrases
|
|
53
|
+
- ✅ Provide necessary context
|
|
54
|
+
- ✅ Check tool permissions match needs
|
|
55
|
+
- ❌ Avoid vague requests
|
|
56
|
+
- ❌ Don't mix unrelated tasks
|
|
57
|
+
|
|
58
|
+
## Common Issues
|
|
59
|
+
|
|
60
|
+
**Issue:** Skill doesn't activate
|
|
61
|
+
**Solution:** Use exact trigger phrases from description
|
|
62
|
+
|
|
63
|
+
**Issue:** Unexpected results
|
|
64
|
+
**Solution:** Check input format and context
|
|
65
|
+
|
|
66
|
+
## See Also
|
|
67
|
+
|
|
68
|
+
- Main SKILL.md for full documentation
|
|
69
|
+
- scripts/ for automation helpers
|
|
70
|
+
- assets/ for configuration examples
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
*[Tons of Skills](https://tonsofskills.com) by [Intent Solutions](https://intentsolutions.io) | [jeremylongshore.com](https://jeremylongshore.com)*
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Scripts
|
|
2
|
+
|
|
3
|
+
Bundled resources for token-launch-tracker skill
|
|
4
|
+
|
|
5
|
+
- [ ] contract_security_analysis.py: Script to perform static analysis and vulnerability detection on smart contracts.
|
|
6
|
+
- [ ] liquidity_lock_checker.py: Script to verify LP locks and track liquidity changes.
|
|
7
|
+
- [ ] social_verification.py: Script to assess team legitimacy and community presence.
|
|
8
|
+
- [ ] risk_scoring.py: Script to calculate a composite risk score for a token.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Helper script template for skill automation
|
|
3
|
+
# Customize this for your skill's specific needs
|
|
4
|
+
|
|
5
|
+
set -e
|
|
6
|
+
|
|
7
|
+
function show_usage() {
|
|
8
|
+
echo "Usage: $0 [options]"
|
|
9
|
+
echo ""
|
|
10
|
+
echo "Options:"
|
|
11
|
+
echo " -h, --help Show this help message"
|
|
12
|
+
echo " -v, --verbose Enable verbose output"
|
|
13
|
+
echo ""
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
# Parse arguments
|
|
17
|
+
VERBOSE=false
|
|
18
|
+
|
|
19
|
+
while [[ $# -gt 0 ]]; do
|
|
20
|
+
case $1 in
|
|
21
|
+
-h|--help)
|
|
22
|
+
show_usage
|
|
23
|
+
exit 0
|
|
24
|
+
;;
|
|
25
|
+
-v|--verbose)
|
|
26
|
+
VERBOSE=true
|
|
27
|
+
shift
|
|
28
|
+
;;
|
|
29
|
+
*)
|
|
30
|
+
echo "Unknown option: $1"
|
|
31
|
+
show_usage
|
|
32
|
+
exit 1
|
|
33
|
+
;;
|
|
34
|
+
esac
|
|
35
|
+
done
|
|
36
|
+
|
|
37
|
+
# Your skill logic here
|
|
38
|
+
if [ "$VERBOSE" = true ]; then
|
|
39
|
+
echo "Running skill automation..."
|
|
40
|
+
fi
|
|
41
|
+
|
|
42
|
+
echo "✅ Complete"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Skill validation helper
|
|
3
|
+
# Validates skill activation and functionality
|
|
4
|
+
|
|
5
|
+
set -e
|
|
6
|
+
|
|
7
|
+
echo "🔍 Validating skill..."
|
|
8
|
+
|
|
9
|
+
# Check if SKILL.md exists
|
|
10
|
+
if [ ! -f "../SKILL.md" ]; then
|
|
11
|
+
echo "❌ Error: SKILL.md not found"
|
|
12
|
+
exit 1
|
|
13
|
+
fi
|
|
14
|
+
|
|
15
|
+
# Validate frontmatter
|
|
16
|
+
if ! grep -q "^---$" "../SKILL.md"; then
|
|
17
|
+
echo "❌ Error: No frontmatter found"
|
|
18
|
+
exit 1
|
|
19
|
+
fi
|
|
20
|
+
|
|
21
|
+
# Check required fields
|
|
22
|
+
if ! grep -q "^name:" "../SKILL.md"; then
|
|
23
|
+
echo "❌ Error: Missing 'name' field"
|
|
24
|
+
exit 1
|
|
25
|
+
fi
|
|
26
|
+
|
|
27
|
+
if ! grep -q "^description:" "../SKILL.md"; then
|
|
28
|
+
echo "❌ Error: Missing 'description' field"
|
|
29
|
+
exit 1
|
|
30
|
+
fi
|
|
31
|
+
|
|
32
|
+
echo "✅ Skill validation passed"
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
# ARD: Token Launch Tracker
|
|
2
|
+
|
|
3
|
+
> Part of [Tons of Skills](https://tonsofskills.com) by [Intent Solutions](https://intentsolutions.io) | [jeremylongshore.com](https://jeremylongshore.com)
|
|
4
|
+
|
|
5
|
+
## Architecture Pattern
|
|
6
|
+
|
|
7
|
+
**Event Streaming Pattern** - Python CLI that monitors blockchain events and aggregates data from multiple sources.
|
|
8
|
+
|
|
9
|
+
## Workflow
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Event Detection → Data Enrichment → Risk Analysis → Display
|
|
13
|
+
↓ ↓ ↓ ↓
|
|
14
|
+
RPC/Websocket Token Info Contract Table/Alert
|
|
15
|
+
Analysis
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Data Flow
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
Input: Chain selection + filters (time, DEX, liquidity)
|
|
22
|
+
↓
|
|
23
|
+
Monitor: PairCreated events from DEX factories
|
|
24
|
+
↓
|
|
25
|
+
Enrich: Fetch token metadata (name, symbol, supply)
|
|
26
|
+
↓
|
|
27
|
+
Analyze: Check contract for red flags
|
|
28
|
+
↓
|
|
29
|
+
Filter: Apply user criteria (min liquidity, etc.)
|
|
30
|
+
↓
|
|
31
|
+
Output: Formatted launch list with risk indicators
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Directory Structure
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
skills/tracking-token-launches/
|
|
38
|
+
├── PRD.md # Product requirements
|
|
39
|
+
├── ARD.md # Architecture document
|
|
40
|
+
├── SKILL.md # Agent instructions
|
|
41
|
+
├── scripts/
|
|
42
|
+
│ ├── launch_tracker.py # Main CLI entry point
|
|
43
|
+
│ ├── event_monitor.py # Blockchain event listener
|
|
44
|
+
│ ├── token_analyzer.py # Token contract analysis
|
|
45
|
+
│ ├── dex_sources.py # DEX factory addresses
|
|
46
|
+
│ └── formatters.py # Output formatting
|
|
47
|
+
├── references/
|
|
48
|
+
│ ├── errors.md # Error handling guide
|
|
49
|
+
│ └── examples.md # Usage examples
|
|
50
|
+
└── config/
|
|
51
|
+
└── settings.yaml # Default configuration
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## API Integration
|
|
55
|
+
|
|
56
|
+
### Ethereum RPC (eth_getLogs)
|
|
57
|
+
- **Events**: PairCreated, Transfer, Mint
|
|
58
|
+
- **Data**: New pair address, token addresses, reserves
|
|
59
|
+
|
|
60
|
+
### DexScreener API
|
|
61
|
+
- **Endpoint**: `https://api.dexscreener.com/latest/dex/tokens/{address}`
|
|
62
|
+
- **Data**: Price, liquidity, volume, pair info
|
|
63
|
+
|
|
64
|
+
### GeckoTerminal API
|
|
65
|
+
- **Endpoint**: `https://api.geckoterminal.com/api/v2/`
|
|
66
|
+
- **Data**: New pools, token info, trading data
|
|
67
|
+
|
|
68
|
+
## Component Design
|
|
69
|
+
|
|
70
|
+
### event_monitor.py
|
|
71
|
+
```python
|
|
72
|
+
class EventMonitor:
|
|
73
|
+
def get_recent_pairs(chain, dex, hours) -> List[PairCreated]
|
|
74
|
+
def stream_new_pairs(chain, callback) -> None
|
|
75
|
+
def get_liquidity_adds(pair_address) -> List[LiquidityEvent]
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### token_analyzer.py
|
|
79
|
+
```python
|
|
80
|
+
class TokenAnalyzer:
|
|
81
|
+
def get_token_info(address) -> TokenInfo
|
|
82
|
+
def check_contract(address) -> ContractAnalysis
|
|
83
|
+
def get_holders(address, top_n) -> List[Holder]
|
|
84
|
+
def detect_honeypot(address) -> HoneypotResult
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### dex_sources.py
|
|
88
|
+
```python
|
|
89
|
+
# DEX factory addresses per chain
|
|
90
|
+
DEX_FACTORIES = {
|
|
91
|
+
"ethereum": {
|
|
92
|
+
"uniswap_v2": "0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f",
|
|
93
|
+
"uniswap_v3": "0x1F98431c8aD98523631AE4a59f267346ea31F984",
|
|
94
|
+
"sushiswap": "0xC0AEe478e3658e2610c5F7A4A2E1777cE9e4f2Ac",
|
|
95
|
+
},
|
|
96
|
+
# ... more chains
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## Data Structures
|
|
101
|
+
|
|
102
|
+
### PairCreated Event
|
|
103
|
+
```python
|
|
104
|
+
@dataclass
|
|
105
|
+
class PairCreated:
|
|
106
|
+
block_number: int
|
|
107
|
+
timestamp: int
|
|
108
|
+
pair_address: str
|
|
109
|
+
token0: str
|
|
110
|
+
token1: str
|
|
111
|
+
dex: str
|
|
112
|
+
chain: str
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### TokenInfo
|
|
116
|
+
```python
|
|
117
|
+
@dataclass
|
|
118
|
+
class TokenInfo:
|
|
119
|
+
address: str
|
|
120
|
+
name: str
|
|
121
|
+
symbol: str
|
|
122
|
+
decimals: int
|
|
123
|
+
total_supply: int
|
|
124
|
+
owner: str
|
|
125
|
+
is_verified: bool
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### ContractAnalysis
|
|
129
|
+
```python
|
|
130
|
+
@dataclass
|
|
131
|
+
class ContractAnalysis:
|
|
132
|
+
has_mint_function: bool
|
|
133
|
+
has_blacklist: bool
|
|
134
|
+
is_proxy: bool
|
|
135
|
+
ownership_renounced: bool
|
|
136
|
+
liquidity_locked: bool
|
|
137
|
+
risk_score: int # 0-100
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Risk Indicators
|
|
141
|
+
|
|
142
|
+
| Indicator | Risk Level | Detection |
|
|
143
|
+
|-----------|------------|-----------|
|
|
144
|
+
| Mint function | High | Bytecode analysis |
|
|
145
|
+
| Blacklist/whitelist | Medium | Function signature |
|
|
146
|
+
| Not verified | Medium | Block explorer API |
|
|
147
|
+
| Proxy contract | Medium | Implementation check |
|
|
148
|
+
| Owner not renounced | Low | owner() call |
|
|
149
|
+
| Low initial liquidity | Warning | Reserve check |
|
|
150
|
+
| Few holders | Warning | Holder count |
|
|
151
|
+
|
|
152
|
+
## Supported Chains
|
|
153
|
+
|
|
154
|
+
| Chain | Chain ID | DEXes |
|
|
155
|
+
|-------|----------|-------|
|
|
156
|
+
| Ethereum | 1 | Uniswap V2/V3, Sushiswap |
|
|
157
|
+
| BSC | 56 | PancakeSwap V2/V3 |
|
|
158
|
+
| Arbitrum | 42161 | Camelot, Uniswap |
|
|
159
|
+
| Base | 8453 | Aerodrome, Uniswap |
|
|
160
|
+
| Polygon | 137 | QuickSwap, Uniswap |
|
|
161
|
+
|
|
162
|
+
## Error Handling Strategy
|
|
163
|
+
|
|
164
|
+
| Error | Handling |
|
|
165
|
+
|-------|----------|
|
|
166
|
+
| RPC connection failed | Fallback to backup RPC |
|
|
167
|
+
| Rate limited | Exponential backoff |
|
|
168
|
+
| Contract not verified | Show warning, limited analysis |
|
|
169
|
+
| Invalid chain | Return supported chains list |
|
|
170
|
+
|
|
171
|
+
## Performance Considerations
|
|
172
|
+
|
|
173
|
+
- Cache token info (24h TTL)
|
|
174
|
+
- Batch RPC calls when possible
|
|
175
|
+
- Use websockets for real-time monitoring
|
|
176
|
+
- Limit historical scan to 24h default
|
|
177
|
+
|
|
178
|
+
## Security
|
|
179
|
+
|
|
180
|
+
- No wallet connections
|
|
181
|
+
- Read-only operations
|
|
182
|
+
- API keys in environment variables
|
|
183
|
+
- No transaction signing
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# PRD: Token Launch Tracker
|
|
2
|
+
|
|
3
|
+
## Summary
|
|
4
|
+
|
|
5
|
+
**One-liner**: Track new token launches, liquidity additions, and upcoming IDO/IEO events across chains.
|
|
6
|
+
|
|
7
|
+
**Domain**: Cryptocurrency / DeFi / Token Launches
|
|
8
|
+
|
|
9
|
+
**Users**: Traders, Investors, Researchers, Degens
|
|
10
|
+
|
|
11
|
+
## Problem Statement
|
|
12
|
+
|
|
13
|
+
New token launches happen constantly across multiple chains and DEXes. Traders miss opportunities because they can't track all launches in real-time. Manual monitoring is time-consuming and unreliable. Existing tools are scattered across different platforms.
|
|
14
|
+
|
|
15
|
+
## User Stories
|
|
16
|
+
|
|
17
|
+
1. **As a trader**, I want to see new tokens that just added liquidity, so that I can evaluate early entry opportunities.
|
|
18
|
+
|
|
19
|
+
2. **As an investor**, I want to track upcoming IDO/IEO launches, so that I can plan participation in promising projects.
|
|
20
|
+
|
|
21
|
+
3. **As a researcher**, I want to analyze token launch patterns, so that I can identify trends and red flags.
|
|
22
|
+
|
|
23
|
+
4. **As a degen**, I want real-time alerts for new token deployments, so that I can assess them quickly.
|
|
24
|
+
|
|
25
|
+
## Functional Requirements
|
|
26
|
+
|
|
27
|
+
- **REQ-1**: Detect new token deployments on supported chains
|
|
28
|
+
- **REQ-2**: Track liquidity additions on major DEXes
|
|
29
|
+
- **REQ-3**: Fetch upcoming launches from IDO platforms
|
|
30
|
+
- **REQ-4**: Display token contract info (name, symbol, supply)
|
|
31
|
+
- **REQ-5**: Show initial liquidity amount and trading pair
|
|
32
|
+
- **REQ-6**: Analyze contract for common rug pull indicators
|
|
33
|
+
- **REQ-7**: Support multiple chains (Ethereum, BSC, Base, Arbitrum)
|
|
34
|
+
- **REQ-8**: Provide filtering by chain, DEX, and time window
|
|
35
|
+
|
|
36
|
+
## Data Sources
|
|
37
|
+
|
|
38
|
+
### On-Chain Detection
|
|
39
|
+
- Factory contract events (PairCreated)
|
|
40
|
+
- Token deployment transactions
|
|
41
|
+
- Liquidity mint events
|
|
42
|
+
|
|
43
|
+
### IDO/IEO Platforms
|
|
44
|
+
- CoinList
|
|
45
|
+
- Pinksale
|
|
46
|
+
- DxSale
|
|
47
|
+
- Unicrypt
|
|
48
|
+
|
|
49
|
+
### Aggregators
|
|
50
|
+
- DEXTools
|
|
51
|
+
- DexScreener
|
|
52
|
+
- GeckoTerminal
|
|
53
|
+
|
|
54
|
+
## Success Metrics
|
|
55
|
+
|
|
56
|
+
- Detect liquidity additions within 1 block
|
|
57
|
+
- List upcoming IDOs with correct dates
|
|
58
|
+
- Flag suspicious contracts accurately
|
|
59
|
+
- Support 5+ chains and 10+ DEXes
|
|
60
|
+
|
|
61
|
+
## Non-Goals
|
|
62
|
+
|
|
63
|
+
- Automated trading or sniping
|
|
64
|
+
- Financial advice on token quality
|
|
65
|
+
- Price predictions
|
|
66
|
+
- Private sale access
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: tracking-token-launches
|
|
3
|
+
description: |
|
|
4
|
+
Track new token launches across DEXes with risk analysis and contract verification.
|
|
5
|
+
Use when discovering new token launches, monitoring IDOs, or analyzing token contracts.
|
|
6
|
+
Trigger with phrases like "track launches", "find new tokens", "new pairs on uniswap",
|
|
7
|
+
"token risk analysis", or "monitor IDOs".
|
|
8
|
+
|
|
9
|
+
allowed-tools: Read, Write, Edit, Grep, Glob, Bash(python:*launch_tracker*)
|
|
10
|
+
version: 1.0.0
|
|
11
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
12
|
+
license: MIT
|
|
13
|
+
compatible-with: claude-code, codex, openclaw
|
|
14
|
+
tags: [crypto, monitoring, tracking-token]
|
|
15
|
+
---
|
|
16
|
+
# Token Launch Tracker
|
|
17
|
+
|
|
18
|
+
## Overview
|
|
19
|
+
|
|
20
|
+
Monitor new token launches across decentralized exchanges. Detect PairCreated events from DEX factory contracts, fetch token metadata, and analyze contracts for risk indicators like mint functions, blacklists, proxy patterns, and ownership status.
|
|
21
|
+
|
|
22
|
+
## Prerequisites
|
|
23
|
+
|
|
24
|
+
Before using this skill, ensure you have:
|
|
25
|
+
- Python 3.8+ with `requests` library
|
|
26
|
+
- RPC endpoint access (public endpoints work for basic usage)
|
|
27
|
+
- Optional: Etherscan API key for contract verification checks
|
|
28
|
+
- Optional: Custom RPC URLs for higher rate limits
|
|
29
|
+
|
|
30
|
+
## Commands
|
|
31
|
+
|
|
32
|
+
### recent - Show Recent Launches
|
|
33
|
+
```bash
|
|
34
|
+
python launch_tracker.py recent --chain ethereum --hours 24
|
|
35
|
+
python launch_tracker.py recent --chain base --analyze --limit 20
|
|
36
|
+
python launch_tracker.py recent --chain bsc --dex "PancakeSwap V2" -f json
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Options:
|
|
40
|
+
- `--chain, -c`: Chain to scan (ethereum, bsc, arbitrum, base, polygon)
|
|
41
|
+
- `--hours, -H`: Hours to look back (default: 24)
|
|
42
|
+
- `--dex, -d`: Filter by DEX name
|
|
43
|
+
- `--limit, -l`: Maximum results (default: 50)
|
|
44
|
+
- `--analyze, -a`: Include token and contract analysis
|
|
45
|
+
- `--rpc-url`: Custom RPC URL
|
|
46
|
+
|
|
47
|
+
### detail - Token Details
|
|
48
|
+
```bash
|
|
49
|
+
python launch_tracker.py detail --address 0x... --chain ethereum
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Options:
|
|
53
|
+
- `--address, -a`: Token contract address (required)
|
|
54
|
+
- `--chain, -c`: Chain (default: ethereum)
|
|
55
|
+
- `--pair, -p`: Pair address (optional)
|
|
56
|
+
- `--etherscan-key`: API key for verification check
|
|
57
|
+
|
|
58
|
+
### risk - Risk Analysis
|
|
59
|
+
```bash
|
|
60
|
+
python launch_tracker.py risk --address 0x... --chain base
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Analyzes contract for risk indicators:
|
|
64
|
+
- Mint function (HIGH risk)
|
|
65
|
+
- Proxy contract (MEDIUM risk)
|
|
66
|
+
- Not verified (MEDIUM risk)
|
|
67
|
+
- Blacklist functionality (MEDIUM risk)
|
|
68
|
+
- Active owner (LOW risk)
|
|
69
|
+
|
|
70
|
+
### summary - Launch Statistics
|
|
71
|
+
```bash
|
|
72
|
+
python launch_tracker.py summary --hours 24
|
|
73
|
+
python launch_tracker.py summary --chains ethereum,base,arbitrum
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### dexes - List DEXes
|
|
77
|
+
```bash
|
|
78
|
+
python launch_tracker.py dexes --chain bsc
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### chains - List Chains
|
|
82
|
+
```bash
|
|
83
|
+
python launch_tracker.py chains
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Instructions
|
|
87
|
+
|
|
88
|
+
1. **Check recent launches** on a specific chain:
|
|
89
|
+
```bash
|
|
90
|
+
cd ${CLAUDE_SKILL_DIR}/scripts
|
|
91
|
+
python launch_tracker.py recent --chain ethereum --hours 6
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
2. **Get detailed token info** for a specific address:
|
|
95
|
+
```bash
|
|
96
|
+
python launch_tracker.py detail --address 0x6982508145454ce325ddbe47a25d4ec3d2311933 --chain ethereum
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
3. **Analyze token risk** before interaction:
|
|
100
|
+
```bash
|
|
101
|
+
python launch_tracker.py risk --address 0x... --chain base --etherscan-key YOUR_KEY
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
4. **View cross-chain summary**:
|
|
105
|
+
```bash
|
|
106
|
+
python launch_tracker.py summary --hours 24
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
5. **Export to JSON** for programmatic use:
|
|
110
|
+
```bash
|
|
111
|
+
python launch_tracker.py -f json recent --chain ethereum --analyze > launches.json
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## Supported Chains
|
|
115
|
+
|
|
116
|
+
| Chain | DEXes | Block Time |
|
|
117
|
+
|-------|-------|------------|
|
|
118
|
+
| Ethereum | Uniswap V2/V3, SushiSwap | 12s |
|
|
119
|
+
| BSC | PancakeSwap V2/V3 | 3s |
|
|
120
|
+
| Arbitrum | Uniswap V3, Camelot, SushiSwap | 0.25s |
|
|
121
|
+
| Base | Uniswap V3, Aerodrome | 2s |
|
|
122
|
+
| Polygon | Uniswap V3, QuickSwap, SushiSwap | 2s |
|
|
123
|
+
|
|
124
|
+
## Risk Indicators
|
|
125
|
+
|
|
126
|
+
| Indicator | Severity | Description |
|
|
127
|
+
|-----------|----------|-------------|
|
|
128
|
+
| Mint function | HIGH | Contract can mint new tokens |
|
|
129
|
+
| Proxy contract | MEDIUM | Implementation can be changed |
|
|
130
|
+
| Not verified | MEDIUM | Source code not public |
|
|
131
|
+
| Blacklist/whitelist | MEDIUM | Can restrict transfers |
|
|
132
|
+
| Active owner | LOW | Ownership not renounced |
|
|
133
|
+
| Small bytecode | INFO | Might be minimal/proxy |
|
|
134
|
+
|
|
135
|
+
## Output
|
|
136
|
+
|
|
137
|
+
- **Table format**: Formatted ASCII tables with token data
|
|
138
|
+
- **JSON format**: Structured data for programmatic use
|
|
139
|
+
- **Risk scores**: 0-100 scale (higher = riskier)
|
|
140
|
+
- **Links**: Explorer and DEXScreener URLs
|
|
141
|
+
|
|
142
|
+
## Error Handling
|
|
143
|
+
|
|
144
|
+
See `${CLAUDE_SKILL_DIR}/references/errors.md` for comprehensive error handling including:
|
|
145
|
+
- RPC connection issues and fallback chain
|
|
146
|
+
- Rate limiting and backoff strategies
|
|
147
|
+
- Contract analysis edge cases
|
|
148
|
+
|
|
149
|
+
## Examples
|
|
150
|
+
|
|
151
|
+
See `${CLAUDE_SKILL_DIR}/references/examples.md` for detailed examples including:
|
|
152
|
+
- Finding high-risk tokens
|
|
153
|
+
- Multi-chain monitoring scripts
|
|
154
|
+
- Python integration
|
|
155
|
+
|
|
156
|
+
## Resources
|
|
157
|
+
|
|
158
|
+
- [Uniswap V2 Factory](https://docs.uniswap.org/contracts/v2/reference/smart-contracts/factory)
|
|
159
|
+
- [PancakeSwap Factory](https://docs.pancakeswap.finance/developers/smart-contracts)
|
|
160
|
+
- [DEXScreener](https://dexscreener.com/) - Real-time pair data
|
|
161
|
+
- [Etherscan API](https://docs.etherscan.io/) - Contract verification
|