Aria_moltbot aria-hourlygoals
Manage Aria's hourly goals and micro-tasks for short-term focus.
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/hourly_goals" ~/.claude/skills/najia-afk-aria-moltbot-aria-hourlygoals && rm -rf "$T"
manifest:
aria_skills/hourly_goals/SKILL.mdsource content
aria-hourlygoals
Manage hourly goals for focused, short-term work. Links to main goals for progress tracking.
Usage
exec python3 /app/skills/run_skill.py hourly_goals <function> '<json_args>'
Functions
hourly_create
Create an hourly goal.
exec python3 /app/skills/run_skill.py hourly_goals hourly_create '{"title": "Review PR #123", "priority": "high"}'
hourly_list
List hourly goals.
exec python3 /app/skills/run_skill.py hourly_goals hourly_list '{"status": "pending"}'
hourly_update
Update goal status.
exec python3 /app/skills/run_skill.py hourly_goals hourly_update '{"goal_id": 5, "status": "completed", "notes": "Merged successfully"}'
API Endpoints
- List hourly goalsGET /hourly-goals
- Create hourly goalPOST /hourly-goals
- Update hourly goalPATCH /hourly-goals/{id}
Database Schema
hourly_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 |