aria_skills/goals/SKILL.md
Manage user goals, habits, and progress tracking. Create goals with milestones and reminders.
npx skillsauth add najia-afk/aria_moltbot aria-goalsInstall 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 user goals, habits, and progress tracking. Create goals with milestones, track progress, and set reminders.
exec python3 /app/skills/run_skill.py goals <function> '<json_args>'
List goals with optional filtering.
exec python3 /app/skills/run_skill.py goals list '{"status": "active"}'
Filter options:
status: "active", "completed", "paused", "all"category: filter by category nameCreate a new goal.
exec python3 /app/skills/run_skill.py goals create '{"title": "Learn Italian", "category": "learning", "description": "Reach B1 level in Italian", "target_date": "2025-12-31", "milestones": ["Complete A1", "Complete A2", "Complete B1"]}'
Update goal progress or details.
exec python3 /app/skills/run_skill.py goals update '{"goal_id": 1, "progress": 50, "note": "Completed A1 level!"}'
Mark a milestone as completed.
exec python3 /app/skills/run_skill.py goals complete_milestone '{"goal_id": 1, "milestone_index": 0}'
Get goals with upcoming deadlines or check-in reminders.
exec python3 /app/skills/run_skill.py goals get_reminders '{"days_ahead": 7}'
Common categories:
health - Fitness, wellness, medicalwork - Career, professional developmentlearning - Education, skills, languagespersonal - Hobbies, relationships, lifestylefinancial - Savings, investments, budgetsGoals are stored in the goals table with:
id, title, descriptioncategory, status, progress (0-100)target_date, created_at, updated_atmilestones (JSONB array)metadata (JSONB for extra data)This skill wraps /app/skills/aria_skills/goals.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`