Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

pi-goal — Persistent Goal Tracking

Tracks long-running goals across sessions and forces an evidence-based audit before anything is marked complete.

AutomationIntermediate67,5315,507AI score 7/10Last updated: Aug 9, 2026

What it does

  • Registers a long-running objective with a token budget and keeps its state persistent.
  • Defines when and how to use the create_goal, get_goal, and update_goal tools.
  • Enforces a completion audit: restate the goal as concrete deliverables, map every requirement to real evidence (files, command output, tests), and treat uncertainty as incomplete.
  • Distinguishes 'complete' from 'budget-limited' so stopping due to budget exhaustion isn't mislabeled as success.

Who it's for

  • Users of pi-based agent setups managing multi-session work.
  • Anyone tired of agents declaring tasks 'done' prematurely.
  • Teams running automation under strict token budgets.

Examples

  • Create the goal "Ship the pi-goal extension" with a 50k token budget.
  • Call get_goal mid-way through a multi-day refactor to check status.
  • Verify tests pass and deliverable files exist before calling update_goal({ status: "complete" }).

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/HEAD/packages/pi-goal/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the packages/pi-goal folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/pi-goal/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/code-yeongyu/oh-my-openagent.git && mkdir -p ~/.claude/skills/pi-goal && cp -r oh-my-openagent/packages/pi-goal/* ~/.claude/skills/pi-goal/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/code-yeongyu/oh-my-openagent.git
  3. Create the skill folder: mkdir -p ~/.claude/skills/pi-goal
  4. Copy the files: cp -r oh-my-openagent/packages/pi-goal/* ~/.claude/skills/pi-goal/
  5. Restart Claude Code and ask it to "set a long-running goal" to confirm the skill loads.
  6. Note: the create_goal/update_goal tools require the pi runtime; without it, treat the file as a completion-audit playbook.
View source on GitHubLicense: NOASSERTION