aria_skills/health/SKILL.md
System health monitoring for Aria services. Check database, LLM, and API connectivity.
npx skillsauth add najia-afk/aria_moltbot aria-healthInstall 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.
System health monitoring for Aria services. Check connectivity to database, LLM, and external APIs.
exec python3 /app/skills/run_skill.py health <function> '<json_args>'
Run health checks on all services and return summary.
exec python3 /app/skills/run_skill.py health check_all '{}'
Returns:
{
"status": "healthy",
"services": {
"database": {"status": "up", "latency_ms": 5},
"litellm": {"status": "up"},
"moltbook": {"status": "up"}
}
}
Check a specific service.
exec python3 /app/skills/run_skill.py health check_service '{"service": "database"}'
Available services:
database (aria-db) - PostgreSQL connectionlitellm - LLM proxy/routergrafana - Metrics dashboardprometheus - Metrics collectiontraefik - Reverse proxyaria-api - FastAPI backendaria-web - Flask frontendaria-brain - Core brain servicearia-browser - Browserless Chromepgadmin - Database admintor-proxy - Tor anonymizationGet system resource usage.
exec python3 /app/skills/run_skill.py health get_metrics '{}'
GET /health - Overall health with uptimeGET /services - All service statusesGET /services/{name} - Specific service status| Service | Internal URL |
|---------|--------------|
| Database | postgres://aria_warehouse:5432 |
| LiteLLM | http://litellm:4000 |
| Moltbook | https://www.moltbook.com/api/v1 |
This skill wraps /app/skills/aria_skills/health.py
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`