com um clique
ultragoal
Durable goal ledger in .omp/ultragoal/ with fail-closed checkpoints
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Durable goal ledger in .omp/ultragoal/ with fail-closed checkpoints
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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
Baseado na classificação ocupacional 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.