aria_skills/hourly_goals/SKILL.md
Manage Aria's hourly goals and micro-tasks for short-term focus.
npx skillsauth add najia-afk/aria_moltbot aria-hourlygoalsInstall 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.
Manage hourly goals for focused, short-term work. Links to main goals for progress tracking.
exec python3 /app/skills/run_skill.py hourly_goals <function> '<json_args>'
Create an hourly goal.
exec python3 /app/skills/run_skill.py hourly_goals hourly_create '{"title": "Review PR #123", "priority": "high"}'
List hourly goals.
exec python3 /app/skills/run_skill.py hourly_goals hourly_list '{"status": "pending"}'
Update goal status.
exec python3 /app/skills/run_skill.py hourly_goals hourly_update '{"goal_id": 5, "status": "completed", "notes": "Merged successfully"}'
GET /hourly-goals - List hourly goalsPOST /hourly-goals - Create hourly goalPATCH /hourly-goals/{id} - Update hourly goalhourly_goals: | Column | Type | Description | |--------|------|-------------| | id | SERIAL | Primary key | | title | TEXT | Goal title | | description | TEXT | Details | | status | TEXT | pending/in_progress/completed/failed | | priority | TEXT | low/medium/high/critical | | target_hour | TIMESTAMP | Target completion time | | parent_goal_id | INTEGER | Link to main goal | | notes | TEXT | Progress notes | | created_at | TIMESTAMP | Creation time | | completed_at | TIMESTAMP | Completion time |
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`