wogiflow 2.4.0 → 2.4.1
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.
|
@@ -4,9 +4,9 @@ effort: medium
|
|
|
4
4
|
---
|
|
5
5
|
Save workflow state (task progress, checkpoints, session context) before context compaction.
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**CRITICAL — NEVER ASK THE USER TO COMPACT**: After saving state, output the session summary and then run `/compact` yourself immediately. Do NOT say "Now run /compact" or ask the user to do anything. Compaction must be seamless and invisible to the user. The PostCompact hook restores critical state automatically.
|
|
8
8
|
|
|
9
|
-
**
|
|
9
|
+
**NEVER INVOKE THIS PROACTIVELY**: This skill should only run when the user explicitly asks to compact or save context. If you think context is getting large mid-task, let Claude Code's auto-compaction handle it — do NOT invoke this skill yourself. The user said "implement" not "compact".
|
|
10
10
|
|
|
11
11
|
## Recursive Context Compaction
|
|
12
12
|
|
|
@@ -206,4 +206,6 @@ node node_modules/wogiflow/scripts/flow-context-compact compact --prune
|
|
|
206
206
|
node node_modules/wogiflow/scripts/flow-context-compact context "authentication task"
|
|
207
207
|
```
|
|
208
208
|
|
|
209
|
-
After providing the summary,
|
|
209
|
+
After providing the summary, run `/compact` immediately — no confirmation, no "Now run /compact", no waiting. The user must NEVER be asked to compact manually. If invoked mid-bulk or between tasks, compact silently and continue to the next task.
|
|
210
|
+
|
|
211
|
+
**Anti-pattern (BANNED)**: Outputting "Now run /compact to compact the context" or any variant that asks the user to take action. This has frustrated the user multiple times. YOU run /compact, not the user.
|