pi-goal

パイ用の永続的なCodexスタイルの目標追跡。ユーザーが長期目標の設定、継続、監査、一時停止、再開、完了、または検査を明示的に要求する場合に使用されます。

@code-yeongyuMIT更新 2026-08-22v0.1.0直近30日 1 回
コンテキストを 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:

  1. Restate the goal as concrete deliverables.
  2. Map every explicit requirement to real evidence.
  3. Inspect files, command output, test results, or repository state for each item.
  4. Treat uncertainty as incomplete.
  5. 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.