@brainervirus/workit-codex 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: workit-steer
3
+ description: Use when new instructions, interruptions, or forgotten items arrive mid-task
4
+ ---
5
+
6
+ # Steer without losing the thread
7
+
8
+ New context mid-session is normal; losing the thread is not. Park,
9
+ classify, handle, re-anchor — every time.
10
+
11
+ ## Before method work
12
+
13
+ If there is no active or paused task, run shared `task.start` then `policy.assess`
14
+ before relying on selected policy rules or other product mutations. Assessment
15
+ selects requirements; do not wait for a rule that can only exist after assess.
16
+
17
+ ## Method
18
+
19
+ 1. Park current state to task progress verbatim: summary, nextAction,
20
+ blockers. Never trust memory across an interruption.
21
+ 2. Classify the steering:
22
+ - same-task: fold into scope (reassess if facts changed), continue.
23
+ - new-task: `task.start` + `policy.assess`; the parked task waits.
24
+ - quick-question: answer from the parked state, then resume.
25
+ 3. Handle it with the same rigor as the parked work (no drive-by edits).
26
+ 4. Re-anchor: one-line resume brief (where we were, what changed, what
27
+ is next) before touching the parked work again.
28
+
29
+ ## Completion
30
+
31
+ Both the steering and the parked work have an owner, a next action, and
32
+ no silent drops. Interrupted work resumes from the brief, not from recall.