원클릭으로
goal-management
Create, update, and track personal goals with priority levels
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create, update, and track personal goals with priority levels
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.