一键导入
ultragoal
Durable goal ledger in .omp/ultragoal/ with fail-closed checkpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Durable goal ledger in .omp/ultragoal/ with fail-closed checkpoints
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Diagnose and fix build/CI failures automatically
Concurrent code generation via multi-model picker
UI/UX design and frontend component generation
OMP self-improvement — analyse own skills/agents and propose improvements
Visual diff/screenshot comparison verdict
Clone and adapt a web page/design to the codebase
基于 SOC 职业分类
| name | ultragoal |
| description | Durable goal ledger in .omp/ultragoal/ with fail-closed checkpoints |
| trigger | ultragoal:, /ultragoal, /omp:ultragoal |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | ultragoal |
| Keywords | ultragoal:, /ultragoal |
| Tier | Planning Tool |
| Source | src/skills/ultragoal.mts |
Durable goal ledger that persists goals in .omp/ultragoal/goals.json with fail-closed checkpoints. Goals survive session restarts and context resets. Each goal is assigned an ID, status, and creation timestamp. Supports adding new goals, listing current goals, and marking goals complete or failed.
interface SkillInput { trigger: string; args: string[]; }
interface SkillOutput { status: "ok" | "error"; message: string; }
export async function activate(input: SkillInput): Promise<SkillOutput>
export function deactivate(): void
Activates the ultragoal mode by spawning bin/omp.mjs ultragoal [args]. The CLI handler creates or reads .omp/ultragoal/goals.json, adds new goals from args, and prints the current goal list. No persistent resources are maintained by the skill itself.