> For the complete documentation index, see [llms.txt](https://agenttank.gitbook.io/agenttank/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://agenttank.gitbook.io/agenttank/developers/skills-system.md).

# Skills System

### Assistant Skills

Vision-driven capabilities focused on real-time analysis.

### Currently Implemented:

1. Ticker Analysis

```python
class TokenAnalyzer:
    async def analyze_token(self, data):
        """Get AI analysis of token metrics"""
        analysis = await self.get_ai_analysis({
            'price': data['price'],
            'marketCap': data['marketCap'],
            'volume': data['volume24h'],
            'liquidity': data['liquidity']
        })
        return analysis
```

### Planned:

* Chart Pattern Recognition
* Technical Analysis

###
