pi-goal
パイ用の永続的なCodexスタイルの目標追跡。ユーザーが長期目標の設定、継続、監査、一時停止、再開、完了、または検査を明示的に要求する場合に使用されます。
コンテキストを 217 トークン使用しますコンテキストを 217 トークン 使用します
取り込み時のスキャン結果 · 2026-08-22
- 危険な処理実行時にコードを評価しています
test/extension.test.ts:515 - 外部送信同梱されたスクリプトが外部のホストに接続します
接続先として検出されたホスト: discord.gg, sisyphuslabs.ai
ルールに基づく静的スキャンの結果です。検出がないことは安全を保証するものではありません。 本文と同梱スクリプトは全文を閲覧できるため、実行前に内容をご確認ください。
pi-goal
Use goal tools only when the user explicitly wants persistent goal tracking or when an active goal already exists.
Tools
Create a goal:
create_goal({
objective: "Ship the pi-goal extension",
token_budget: 50000,
});
Inspect a goal:
get_goal({});
Update a goal:
update_goal({
status: "complete",
});
update_goal only accepts complete. User-facing /goal commands control pause, resume, budget-limited, and clear transitions.
Completion Rule
Before marking a goal complete, audit the actual current state:
- Restate the goal as concrete deliverables.
- Map every explicit requirement to real evidence.
- Inspect files, command output, test results, or repository state for each item.
- Treat uncertainty as incomplete.
- Call
update_goal({ status: "complete" })only when no required work remains.
Use budget-limited status when the reason to stop is budget exhaustion rather than completion.