← Developers
Skill
Plus required

Drop in a SKILL.md.
Your agent does the rest.

AgentSkills-compatible. Place SKILL.md in your agent workspace and Chartai pattern commands are available as native slash commands — no integration code.

Get Plus access →View commands
Installation

3-step setup

01
Install the Skill
# Install Chartai skill globally
pip install chartai-skill

# Or copy SKILL.md to your agent workspace
curl -o SKILL.md https://chartai.live/skill/SKILL.md
02
Configure API key
# .env or environment
CHARTAI_API_KEY=sk-chartai-<YOUR_KEY>

# Or pass inline
chartai-skill configure --api-key sk-chartai-<YOUR_KEY>
03
Use in Claude Code / agent workspace
# Claude Code reads SKILL.md automatically
# Any slash command starting with /chartai: is routed

# Example agent interaction:
User: What patterns does BTCUSDT show right now?
Assistant: /chartai:scan BTCUSDT 1h
→ Found Falling Wedge (continuation) — breakout zone 77,400
Command reference

4 slash commands

/chartai:scan<symbol> [tf]

Scan a symbol for patterns on a timeframe. Returns pattern cards with entry/target/stop.

Example
/chartai:scan BTCUSDT 4h
Response
🦉 Chartai: Bullish Bat @ 76,200 | Target 80,400 | Stop 73,800 | Conf 0.87
/chartai:alert<symbol> <pattern> [tf]

Subscribe to alerts for a pattern on a symbol. Notifies your agent when detected.

Example
/chartai:alert ETHUSDT "double bottom" 1d
Response
🦉 Chartai: Alert set. Will notify when Double Bottom detected on ETHUSDT 1D.
/chartai:records[symbol] [limit]

Fetch recent historical signal records with outcomes.

Example
/chartai:records AAPL 10
Response
🦉 Chartai: Last 10 AAPL records — 7 wins, 2 losses, 1 open. Avg R: +1.87
/chartai:patterns[category]

List all supported pattern types.

Example
/chartai:patterns harmonic
Response
🦉 Chartai: 8 harmonic patterns — Bat, Gartley, Butterfly, Crab, Cypher, Shark, ABCD, 5-0
SKILL.md

The spec file your agent reads

SKILL.md
agentskills v1.0
# Chartai Skill

**version**: 1.0.0
**requires**: CHARTAI_API_KEY

## Commands

### /chartai:scan <symbol> [tf]
Scan trading symbol for harmonic and chart patterns.
Returns: pattern name, entry, target, stop, confidence, timestamp.

### /chartai:alert <symbol> <pattern> [tf]
Subscribe to pattern alerts for a symbol on a timeframe.

### /chartai:records [symbol] [limit]
Retrieve historical signal records with win/loss outcomes.

### /chartai:patterns [category]
List supported pattern types (reversal | continuation | harmonic).

## Auth
Pass `X-API-Key` header or set `CHARTAI_API_KEY` env var.
Base URL: https://api.chartai.live

## Tier requirements
- scan, records, patterns: Plus or higher
- alert webhooks: Plus or higher

Add Chartai signals to your agent workspace today

Plus or Pro plan required. 14-day free trial.