aria_skills/portfolio/SKILL.md
💼 Portfolio and position management for Crypto Trader
npx skillsauth add najia-afk/aria_moltbot aria-portfolioInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Portfolio and position management. Open/close positions, track unrealized P&L, view trade history, calculate performance metrics, and check risk limits.
exec python3 /app/skills/run_skill.py portfolio <function> '<json_args>'
Open a new trading position.
exec python3 /app/skills/run_skill.py portfolio open_position '{"symbol": "BTC/USDT", "side": "long", "amount": 0.1}'
Close an existing position.
exec python3 /app/skills/run_skill.py portfolio close_position '{"position_id": "abc", "reason": "take profit"}'
Get all open positions with unrealized P&L.
exec python3 /app/skills/run_skill.py portfolio get_positions '{}'
Get trade history.
exec python3 /app/skills/run_skill.py portfolio get_trade_history '{}'
Calculate portfolio performance metrics.
exec python3 /app/skills/run_skill.py portfolio get_performance_metrics '{}'
Check if portfolio respects risk limits.
exec python3 /app/skills/run_skill.py portfolio check_risk_limits '{}'
tools
# aria-working-memory Persistent short-term memory operations for Aria runtime context. ## Purpose - Store, retrieve, rank, checkpoint, and prune working memory. - Provide high-relevance context for decision and response flows. ## Main Tools - `remember` - `recall` - `get_context` - `checkpoint` - `restore_checkpoint` - `forget` - `update` - `reflect` - `sync_to_files`
development
```skill --- name: aria-unified-search description: "🔎 RRF-merged search across semantic + graph + memory backends" metadata: {"aria": {"emoji": "🔎"}} --- # aria-unified-search Unified search engine that queries semantic memories (pgvector cosine), knowledge graph (ILIKE), and traditional memories (text match), then merges results via Reciprocal Rank Fusion (RRF) with content-hash deduplication. ## Architecture ``` Query ↓ (parallel to 3 backends) ├── SemanticBackend (pgvector cosi
tools
# aria-telegram Telegram Bot API integration skill. ## Purpose - Send and reply to messages through bot credentials. - Fetch updates and basic bot metadata. ## Main Tools - `send_message` - `reply_to_message` - `get_updates` - `get_me`
tools
# aria-sprint-manager Sprint planning and board flow management skill. ## Purpose - Operate goal board as Product Owner. - Move, prioritize, and report sprint progress. ## Main Tools - `sprint_status` - `sprint_plan` - `sprint_move_goal` - `sprint_report` - `sprint_prioritize`