원클릭으로
period-next-plan
Period planning (w/m/q/y) — set goal and plan for the next period.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Period planning (w/m/q/y) — set goal and plan for the next period.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Binder data modeling — define entity types, fields, relations, constraints, views, and navigation. Use when asked to "create a type", "add a field", "define a schema", "set up relations", "model entities", "create a view", "set up navigation", "render entities as files", or design a binder workspace schema.
Quick timestamped log entry — no conversation, just capture.
Build a day plan with carry-forwards and one critical item.
Day briefing — deliver context, capture what's happened, get moving.
Evening summary — reflect on the day, score it, close it out.
Period summary (w/m/q/y) — reflect on the period, score it, close it out.
| name | period-next-plan |
| description | Period planning (w/m/q/y) — set goal and plan for the next period. |
| argument-hint | [w|m|q|y] [offset] |
| disable-model-invocation | true |
Set up the goal and plan for the target period.
Offset controls direction: proactive (positive or default — planning upcoming periods) or retroactive (negative — backfilling a past period's plan). Use actual period dates from entries below — do NOT assume "next" or "current."
Target period with parent and siblings (created if missing): !G=$0; O=$1; binder read $(bun scripts/journal.ts ${G:-w} ${O:-next} --key) -f "key,goal,plan,parent(key,goal,plan,children(key,goal,plan,achievements,summary,totalScore))" --format yaml
Previous period: !G=$0; O=$1; P=$([ "$O" = "next" ] || [ -z "$O" ] && echo 0 || echo $(( O - 1 ))); binder read $(bun scripts/journal.ts ${G:-w} $P --key) -f "goal,plan,achievements,events,summary,totalScore" --format yaml
Show the parent period's goal and plan in 3-5 lines. Frame it as: "Here's what [quarter/month/year] is about."
Review the sibling periods (parent's children). For each completed sibling, briefly note what was achieved. For the most recent sibling:
"This has been on the plan since [period]. Carry with commitment, or kill it."
Suggest a goal for the new period, derived from:
The goal should be 1-3 lines. Concrete, not aspirational fluff.
"Does this goal feel right, or would you adjust it?"
Suggest a plan — concrete items that serve the goal:
Pull from:
Don't include items already achieved in previous siblings. Flag any carry-forward explicitly: "(carry from [sibling key])".
"What to add, remove, or change?"
Correct based on input. Max 1 follow-up, then write.
Use binder update to update the target period's entry (key from context):
goal: the agreed goalplan: the agreed plan as a plain bullet list — no checkboxes, no status markersbinder update <parent-key> 'plan+=<item>'Do NOT touch achievements, events, summary — those stay empty until the period is summarized.