Skip to main content
ClaudeWave
Skill12k estrellas del repoactualizado today

token-unlock-treasury

# token-unlock-treasury This Claude Code skill analyzes token vesting schedules, unlock events, and treasury holdings to forecast selling pressure and project sustainability. It tracks allocation categories like team, investor, and ecosystem tokens across different lock periods and vesting structures, assesses the market impact of upcoming unlocks by measuring them against circulating supply and trading volume, and identifies high-risk unlock events such as investor cliff unlocks and founder releases that typically create short-term price pressure.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/HKUDS/Vibe-Trading /tmp/token-unlock-treasury && cp -r /tmp/token-unlock-treasury/agent/src/skills/token-unlock-treasury ~/.claude/skills/token-unlock-treasury
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Token Unlock & Treasury Analysis

## Overview

Track token vesting schedules, upcoming unlock events, and project treasury holdings to forecast sell pressure and assess project sustainability. Token unlocks are one of the most predictable and high-impact supply-side events in crypto — large unlocks consistently create short-term selling pressure.

## Core Concepts

### 1. Token Distribution Taxonomy

**Standard allocation categories:**

| Category | Typical % | Lock Period | Vesting | Sell Pressure Risk |
|----------|-----------|------------|---------|-------------------|
| Team / Founders | 15-25% | 12-24 months cliff | 2-4 year linear | High (sell to fund lifestyle / diversify) |
| Investors (Seed) | 5-15% | 6-12 months cliff | 1-2 year linear | Very high (VC fund lifecycle: must return capital) |
| Investors (Series A+) | 10-20% | 6-12 months cliff | 1-2 year linear | Very high |
| Ecosystem / Community | 20-40% | Variable | Ongoing emissions | Medium (depends on incentive design) |
| Treasury / Foundation | 10-20% | None (discretionary) | DAO-governed | Low-medium (depends on governance) |
| Public Sale / Airdrop | 5-15% | None | Immediately liquid | Initial dump, then stabilizes |
| Advisors | 2-5% | 6-12 months cliff | 1-2 year linear | Medium |

### 2. Unlock Event Types

**Cliff unlock:**
- Large one-time release after lock period expires
- Most impactful: 5-30% of supply unlocking in a single event
- Typical impact: -5% to -20% price decline in the 7 days around a cliff unlock

**Linear / continuous unlock:**
- Steady stream of tokens released over time (daily/weekly/monthly)
- Creates persistent but predictable sell pressure
- Impact depends on rate relative to trading volume

**Milestone-based unlock:**
- Triggered by protocol metrics (TVL target, user count, etc.)
- Less predictable but usually positive signal (means protocol is growing)

### 3. Unlock Impact Assessment

```python
def assess_unlock_impact(unlock_amount, circulating_supply, daily_volume, recipient_type):
    """
    Assess the market impact of an upcoming token unlock.
    """
    # Unlock as % of circulating supply
    supply_pct = unlock_amount / circulating_supply * 100

    # Unlock as multiple of daily volume
    volume_multiple = unlock_amount / daily_volume

    # Base impact score
    if supply_pct > 10:
        base_impact = "critical"      # >10% of supply = very high impact
    elif supply_pct > 5:
        base_impact = "high"
    elif supply_pct > 2:
        base_impact = "medium"
    elif supply_pct > 0.5:
        base_impact = "low"
    else:
        base_impact = "negligible"

    # Adjust for recipient type (who receives the tokens)
    recipient_multiplier = {
        "team": 0.7,         # Team sells ~70% within 6 months historically
        "investor_seed": 0.8, # VCs must return capital, sell aggressively
        "investor_later": 0.6,
        "ecosystem": 0.3,    # Ecosystem tokens often re-staked or used
        "treasury": 0.2,     # Treasury rarely dumps (governance constraints)
        "community": 0.5,    # Mixed behavior
    }

    effective_sell_pressure = supply_pct * recipient_multiplier.get(recipient_type, 0.5)

    # Volume absorption capacity
    if volume_multiple > 5:
        absorption = "illiquid"       # Market cannot absorb easily
    elif volume_multiple > 2:
        absorption = "difficult"
    elif volume_multiple > 0.5:
        absorption = "manageable"
    else:
        absorption = "easily_absorbed"

    return {
        "supply_impact_pct": supply_pct,
        "base_impact": base_impact,
        "effective_sell_pct": effective_sell_pressure,
        "volume_absorption": absorption,
    }
```

### 4. Historical Unlock Price Patterns

**Empirical observations (2021-2025 data):**

| Unlock Size (% of circ.) | Pre-unlock (7d) | Post-unlock (7d) | Post-unlock (30d) |
|--------------------------|-----------------|------------------|-------------------|
| >10% | -8 to -15% | -5 to -20% | -10 to -30% (often no recovery) |
| 5-10% | -3 to -8% | -3 to -10% | Mixed (depends on market regime) |
| 2-5% | -1 to -5% | -2 to -5% | Usually recovers within 30d |
| <2% | Minimal | -1 to -3% | Negligible long-term impact |

**Key patterns:**
1. **Pre-unlock front-running**: market starts selling 3-7 days before known unlock dates
2. **Post-unlock recovery**: if broader market is bullish, 2-5% unlocks often fully recover within 2-4 weeks
3. **Continuous unlock drag**: tokens with >5% monthly emission rate tend to underperform BTC by 10-20% annualized
4. **Cliff + bear market = disaster**: large cliff unlocks during bear markets create cascading selling

### 5. Treasury Health Analysis

**Treasury assessment framework:**

```python
treasury_health = {
    "total_value_usd": 500_000_000,       # Total treasury value
    "runway_months": 36,                   # Treasury / monthly burn
    "diversification": {
        "native_token_pct": 60,            # % held in own token (risky)
        "stablecoins_pct": 25,             # USDC/USDT/DAI (safe)
        "eth_btc_pct": 10,                 # Blue-chip crypto
        "other_pct": 5,                    # Other assets
    },
    "monthly_burn_usd": 5_000_000,         # Operating expenses per month
    "revenue_coverage": 0.6,               # Revenue / burn ratio
}

def treasury_signal(health):
    # Runway assessment
    if health["runway_months"] < 12:
        runway_signal = "critical"         # Less than 1 year of funding
    elif health["runway_months"] < 24:
        runway_signal = "concerning"
    else:
        runway_signal = "healthy"

    # Diversification assessment
    native_pct = health["diversification"]["native_token_pct"]
    if native_pct > 80:
        diversity_signal = "concentrated_risk"  # Treasury value crashes with token price
    elif native_pct > 50:
        diversity_signal = "moderate_risk"
    else:
        diversity_signal = "diversified"        # Healthy treasury management

    # Revenue sustainability
    if h
vibe-tradingSkill

Professional finance research toolkit — backtesting (7 engines + benchmark comparison panel), factor analysis, Alpha Zoo (452 pre-built alphas across qlib158/alpha101/gtja191/academic), options pricing, 77 finance skills, 29 multi-agent swarm teams, Trade Journal analyzer, and Shadow Account (extract → backtest → render) across 7 data sources (tushare, yfinance, okx, akshare, mootdx, ccxt, futu).

adr-hshareSkill

ADR/H-share/A-share cross-listing premium analysis — track pricing gaps between US-listed ADRs, HK-listed H-shares, and A-shares for arbitrage signals, dual-listing valuation, and delisting risk assessment.

akshareSkill

AKShare financial data aggregator (18k+ stars). Free, no API key. Covers A-shares, US, HK, futures, macro, forex. Primary fallback for tushare and yfinance.

alpha-zooSkill

Browse and bench the bundled alpha zoos — prebuilt cross-sectional factor libraries (Kakushadze 101, GTJA 191, Qlib 158, Fama-French / Carhart). Use when the user asks "which alphas exist", wants metadata on a named alpha, or wants to run IC/IR on a whole zoo over a universe.

ashare-pre-st-filterSkill

A 股 ST/*ST 风险预测框架 — 基于最新中报/三季报或业绩预告/快报,预测下一财年是否会因营收、利润、净资产、分红不达标而被风险警示,并将新浪监管处罚记录作为独立证据面纳入风险等级。仅适用于 A 股,不预测财务造假。

asset-allocationSkill

Asset allocation theory and optimizer usage — MPT / Black-Litterman / risk budgeting / all-weather strategy, including guides for 4 optimizers and rebalancing rules.

backtest-diagnoseSkill

Diagnose failed or underperforming backtests, locate the root cause, and fix the issue

behavioral-financeSkill

Behavioral finance applications: theories of overreaction and underreaction, behavioral explanations for momentum and reversal, investor sentiment cycles, cognitive-bias checklists, and debiasing quantitative strategies.