Documentation
System architecture and operational guide for autonom.vc
4
AI Agents
5
Input Sources
5
Safety Filters
50%
Profit Share
System Architecture
autonom.vc is an autonomous venture capital system that discovers, analyzes, and trades Solana memecoins. The system runs 24/7 via scheduled cron jobs, with the frontend serving as a read-only dashboard.
Data Flow
Input Sources → Filter Layer → Analysis Pipeline → Execution → Portfolio Monitor 1. DISCOVERY: Cron jobs poll graduating/graduated/trending tokens 2. FILTERING: Safety checks + deduplication (invested or analyzed < 6h) 3. ANALYSIS: 4-agent pipeline (Quant → Profiler → Evaluator → Chief) 4. EXECUTION: Auto-buy via Pump.fun SDK if PASS verdict 5. MONITORING: Portfolio agent checks exit conditions every minute
Agent Pipeline
🔢
Quant Agent
Fetches and scores token metrics: market cap, liquidity, volume, holder distribution
0-100
👤
Profiler Agent
Analyzes social presence: Twitter mentions, follower counts, engagement metrics
0-100
📊
Evaluator Agent
Assesses caller credibility via CallScan: win rate, track record, red flags
0-100
👔
Chief Agent
Synthesizes all reports, makes final PASS/REJECT/WATCH verdict with position sizing
VERDICT + SOL
Scheduled Tasks
| Task | Schedule | Description |
|---|---|---|
| /api/cron/discovery | Every 30min | Polls graduating + graduated tokens |
| /api/cron/trending | Every 6h | Polls top trending tokens |
| /api/cron/portfolio | Every 1min | Monitors positions for exit signals |
Profit Share System
50% Profit Share
Alpha submitters earn 50% of profits from their successful calls. When a trade closes in profit, half is automatically allocated to the caller's wallet.
Claim Process:
- 1. Submit alpha with wallet address
- 2. System analyzes and potentially trades
- 3. On profitable exit, claim becomes available
- 4. Connect wallet to /claim and withdraw
Requirements:
- • Valid Solana wallet address
- • Signal must pass all filters
- • Trade must close in profit
API Reference
GET
/api/analysisPaginated analysis listPOST
/api/analysisStart new analysisGET
/api/portfolioPortfolio positions & tradesGET
/api/claim/leaderboardTop callers leaderboardPOST
/api/claimClaim profit shareGET
/api/discovery/pollDiscovery status (cached)