pi-goal
仓库创建 2025年12月3日最近提交 3 小时前SkillHot 收录 20 天前
▸ 精选理由
适合希望让 agent 管理并持续跟踪多步长期目标的使用场景,减少人工记忆负担。
这个 Skill 做什么
为长期目标提供持久化的创建、审计、暂停和完成等生命周期管理工具。
提供一种持久化的目标管理工具,能创建、审计、暂停、恢复和标记完成长期目标,并支持 token 预算等元信息。 当你需要把长期任务落地跟踪或让系统记住一个持续目标时就用。特点是 Codex 风格的持久存储与生命周期接口,方便后续查询与自动化操作。
▸ 展开 SKILL.md 英文原文
Persistent Codex-style goal tracking for pi. Use when the user explicitly asks to set, continue, audit, pause, resume, complete, or inspect a long-running goal.
6.7w
Stars
5.4k
Forks
40
仓库内 Skill
+1.6k
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/packages/pi-goal/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/packages/pi-goal/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# 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:
```ts
create_goal({
objective: "Ship the pi-goal extension",
token_budget: 50000,
});
```
Inspect a goal:
```ts
get_goal({});
```
Update a goal:
```ts
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 outputvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有