Aria_moltbot aria-goals
Manage user goals, habits, and progress tracking. Create goals with milestones and reminders.
install
source · Clone the upstream repo
git clone https://github.com/Najia-afk/Aria_moltbot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Najia-afk/Aria_moltbot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/aria_skills/goals" ~/.claude/skills/najia-afk-aria-moltbot-aria-goals && rm -rf "$T"
manifest:
aria_skills/goals/SKILL.mdsource content
aria-goals
Manage user goals, habits, and progress tracking. Create goals with milestones, track progress, and set reminders.
Usage
exec python3 /app/skills/run_skill.py goals <function> '<json_args>'
Functions
list
List goals with optional filtering.
exec python3 /app/skills/run_skill.py goals list '{"status": "active"}'
Filter options:
: "active", "completed", "paused", "all"status
: filter by category namecategory
create
Create 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
Update goal progress or details.
exec python3 /app/skills/run_skill.py goals update '{"goal_id": 1, "progress": 50, "note": "Completed A1 level!"}'
complete_milestone
Mark a milestone as completed.
exec python3 /app/skills/run_skill.py goals complete_milestone '{"goal_id": 1, "milestone_index": 0}'
get_reminders
Get goals with upcoming deadlines or check-in reminders.
exec python3 /app/skills/run_skill.py goals get_reminders '{"days_ahead": 7}'
Goal Categories
Common categories:
- Fitness, wellness, medicalhealth
- Career, professional developmentwork
- Education, skills, languageslearning
- Hobbies, relationships, lifestylepersonal
- Savings, investments, budgetsfinancial
Database Schema
Goals are stored in the
goals table with:
,id
,titledescription
,category
,status
(0-100)progress
,target_date
,created_atupdated_at
(JSONB array)milestones
(JSONB for extra data)metadata
Python Module
This skill wraps
/app/skills/aria_skills/goals.py