with one click
goal-management
Create, update, and track personal goals with priority levels
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create, update, and track personal goals with priority levels
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Permanently learn from a web page by extracting and storing knowledge triples
Quickly read and extract clean content from a web page (temporary, not stored)
Recall past conversations and recent activity timeline from episodic memory
Get a structured thematic overview of all knowledge or a specific topic
Browse and explore the knowledge graph interactively
Search semantic memory for facts, relationships, and learned procedures
| name | goal-management |
| description | Create, update, and track personal goals with priority levels |
Manage your personal goals for autonomous self-improvement.
exec(open("skills/goal-management/scripts/goals.py").read())
print(check_goals(active_only=True))
exec(open("skills/goal-management/scripts/goals.py").read())
print(set_goal("Learn about transformer models", priority=3))
exec(open("skills/goal-management/scripts/goals.py").read())
print(mark_in_progress("Learn about transformer models"))
exec(open("skills/goal-management/scripts/goals.py").read())
print(mark_completed("Learn about transformer models", notes="Learned about attention mechanisms"))
exec(open("skills/goal-management/scripts/goals.py").read())
print(update_goal("Learn about transformer models", status="blocked", notes="Need GPU access"))
For broad goals like "Learn about X", break them into specific sub-goals first:
exec(open("skills/goal-management/scripts/goals.py").read())
print(set_goal("Research the founding of Rome", parent_goal="Learn about the Roman Empire"))
exec(open("skills/goal-management/scripts/goals.py").read())
print(check_subgoals("Learn about the Roman Empire"))
check_goals() — see current goalsset_goal(desc, parent_goal="...")mark_in_progress(desc) — mark in progressmark_completed(desc, notes="...") — mark COMPLETED with notes!IMPORTANT: Parent goals cannot be completed until all sub-goals are done. Always call mark_completed() when you finish a goal.