Personal skill library for opencode / Claude. Install skills to ~/.claude/skills/ to extend Claude with domain-specific knowledge, scripts, and references.
# Interactive: choose component (skills / workspace / both) + which skills
./install.sh
# Install everything without prompts
./install.sh --all
# Skills only — all, no prompts
./install.sh --skills --all
# Workspace config files only (picoclaw)
# Dry run (preview only)
./install.sh --dry-runRequires rsync. No other dependencies.
# Remove installed skills
./uninstall.sh| Skill | Description |
|---|---|
binance-futures |
Binance Futures API — account, positions, income history, WebSocket, funding rates. Unified bf.py CLI (pure stdlib). |
crypto-quant-trader |
Senior quant researcher mode — regime detection, ICT/SMC, order flow (OBI/TFI), Kelly sizing, walk-forward backtesting. |
trading-journal |
Performance analytics — Sharpe, SQN, K-Ratio, behavioral bias detection, Monte Carlo, equity curve analysis. |
| Skill | Description |
|---|---|
github |
Interact with GitHub via gh CLI — issues, PRs, CI runs, API queries. |
tmux |
Remote-control tmux sessions — send keystrokes, scrape pane output for interactive CLIs. |
skill-creator |
Create or update skills — structure, scripts, references, and assets. |
summarize |
Summarize URLs, podcasts, and local files. Transcribe YouTube/video content. |
The three finance skills are designed to work together:
binance-futures → crypto-quant-trader → trading-journal
(pull live data) (analyze & strategize) (audit performance)
bf.py income --days 90 → "Is my edge holding?" → advanced_metrics.py
bf.py positions → "Should I add here?" → behavioral_analytics.py
personal-claw-skills/
├── install.sh Numbered-menu rsync installer
├── uninstall.sh Skill remover
├── skills/ Installs to ~/.claude/skills/ or ~/.picoclaw/workspace/skills/
│ ├── binance-futures/ Futures API + bf.py CLI
│ ├── crypto-quant-trader/ Quant analysis & strategy
│ ├── trading-journal/ Performance analytics
│ ├── github/ GitHub CLI wrapper
│ ├── tmux/ tmux session control
│ ├── skill-creator/ Skill authoring helper
│ └── summarize/ URL/video summarizer
└── workspace/ Picoclaw workspace config files
├── IDENTITY.md Who Zai is
├── SOUL.md Core values and operating principles
├── USER.md User profile and preferences
├── AGENTS.md Behavior guide, alert thresholds, message format
├── HEARTBEAT.md 30-min periodic checks (positions, funding, regime)
└── TOOLS.md Available tools and API reference
rsync -av workspace/ ~/.picoclaw/workspace/