一键导入
core-goal-run
Use only when the user explicitly invokes this skill to create or resume a persistent file-based goal tracker across sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use only when the user explicitly invokes this skill to create or resume a persistent file-based goal tracker across sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use only when the user explicitly invokes this skill to map unresolved product, domain, repository, or delivery unknowns before choosing a path.
Use only when the user explicitly invokes this skill to stress-test an existing plan or design through one load-bearing question at a time.
Use only when the user explicitly invokes this skill to evaluate a skill with representative cases, isolated runs, independent judging, and evidence-driven edits.
Use for a concrete defect or regression that needs reproduction, root-cause diagnosis, a fix, and regression validation. Do not trigger for routine localized edits or primarily performance-focused work.
Use when the requested feature genuinely spans at least two delivery layers such as frontend, backend, API, data, scripts, or tests. Do not expand a single-layer change into a full-stack workflow.
Use to plan modernization, framework upgrades, service extraction, schema migrations, rewrites, and rollback paths.
| name | core-goal-run |
| description | Use only when the user explicitly invokes this skill to create or resume a persistent file-based goal tracker across sessions. |
| metadata | {"version":"1.0","updated":"2026-07-26"} |
Execute or resume an explicitly requested long-running goal while keeping its state recoverable across sessions. Do not use this workflow for ordinary work that can finish in the current turn.
Use three plain Markdown files in the goal directory:
<goal-dir>/
├── goal-plan-list.md # original plan or source, read-only
├── goal-tasks.md # compact current status
└── goal-log.md # evidence and handoff notes
If the source plan has another name, keep that name and create only
goal-tasks.md and goal-log.md beside it.
Do not create tracker scripts, hooks, run IDs, registries, dashboards, or hidden state unless the user explicitly requests a heavier system.
goal-tasks.mdKeep this file short enough to understand at a glance:
# Goal Tasks
Source: `goal-plan-list.md`
| ID | Task | Status | Auto | Evidence | Notes |
|---|---|---|---|---|---|
| T001 | Inspect current state | DONE | yes | `goal-log.md#t001` | current baseline read |
| T002 | Implement the next slice | DOING | yes | pending | scoped to current slice |
| T003 | Approve production rollout | HUMAN_PENDING | no | pending | user decision required |
Use only these statuses unless the user's existing tracker defines another taxonomy:
TODODOINGVERIFYINGDONEBLOCKEDHUMAN_PENDINGSKIPPED_HUMANDo not paste command output, long rationale, PR bodies, or full logs into the table.
goal-log.mdRecord concise evidence and the next handoff:
# Goal Log
## YYYY-MM-DD Run
Request:
- Resume automatic work from the source plan.
## T001
Status: DONE
Evidence:
- Reviewed the current source and repository state.
- Relevant check completed successfully.
## Handoff
Read first:
- `goal-tasks.md`
- `goal-log.md`
Next:
- Continue T002.
- Keep T003 pending until the user decides.
Evidence should be a pointer such as a command and exit status, test result, changed path, commit SHA, PR or CI URL, deployment readback, screenshot path, or reviewed source section. The tracker itself is not proof of completion.
Handoff says what to read and do next.HUMAN_PENDING unless the
user has already authorized the exact action.Stop and report when:
Do not treat a difficult, slow, or incomplete task as blocked while meaningful authorized work can still continue.