forked from garrytan/gstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJUDGMENT-PROVENANCE.json
More file actions
6718 lines (6718 loc) · 335 KB
/
Copy pathJUDGMENT-PROVENANCE.json
File metadata and controls
6718 lines (6718 loc) · 335 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"schema_version": 1,
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"public_skills": [
"plan",
"qa",
"debug",
"review",
"ship"
],
"tool_skills": [
"make-pdf"
],
"counts": {
"public_skills": 5,
"tool_skills": 1,
"mandatory_inputs": 25,
"templates": 47,
"section_templates": 14,
"packaged_section_copies": 14,
"internal_execution_adapters": 1,
"scenarios": 19,
"bug_fix_ports": 34,
"assets": 70,
"dependency_copies": 3,
"runtime_helpers": 39
},
"sources": [
{
"source": "gstack",
"tree": "plan",
"public_mode": "Discovery",
"legacy_mode": "catalog",
"source_path": "SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "402bd0d7b0f2bf02f6c9e4754e0e2a655f5f4057",
"normalized_render_sha256": "4b63f137a98f1ac0bef6c6fcac1179a54494e8440583ef7a0f582bbbaad7d65e",
"target": "skills/plan/references/legacy/gstack.md",
"disposition": "BUG_FIX",
"overlays": [
679,
879
],
"original_source_file": "SKILL.md.tmpl",
"original_line_range": "1-92",
"purpose": "Legacy catalog and top-level workflow routing.",
"invocation_conditions": "The problem, user, wedge, or value proposition is still fluid.",
"modes": {
"public": "Discovery",
"legacy_alias": "catalog"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"Route first"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/gstack.md",
"parity_test": "evals/parity/contracts/gstack.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks"
},
{
"source": "office-hours",
"tree": "plan",
"public_mode": "Discovery",
"legacy_mode": "product",
"source_path": "office-hours/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "8568fe73cca76a80805fab3092cacd10db7e1d7f",
"normalized_render_sha256": "603b1ee5a1bf745cb1e06a0c14bbb1208e7149b4d6130b8f008975ddb0095b8f",
"target": "skills/plan/references/legacy/office-hours.md",
"disposition": "BUG_FIX",
"overlays": [
679,
2030,
1049,
1116,
886,
703,
2000,
879,
538,
1777,
2189
],
"original_source_file": "office-hours/SKILL.md.tmpl",
"original_line_range": "1-526",
"purpose": "Reframe a product idea through YC-style office hours.",
"invocation_conditions": "The problem, user, wedge, or value proposition is still fluid.",
"modes": {
"public": "Discovery",
"legacy_alias": "product"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"SETUP (run this check BEFORE any browse command)",
"YC Office Hours",
"Brain Context (preflight)",
"Phase 1: Context Gathering",
"Prior Learnings",
"Phase 2A: Startup Mode — YC Product Diagnostic",
"Operating Principles",
"Response Posture",
"Anti-Sycophancy Rules",
"Pushback Patterns — How to Push",
"The Six Forcing Questions",
"Q1: Demand Reality",
"Q2: Status Quo",
"Q3: Desperate Specificity",
"Q4: Narrowest Wedge",
"Q5: Observation & Surprise",
"Q6: Future-Fit",
"Phase 2B: Builder Mode — Design Partner",
"Operating Principles",
"Response Posture",
"Questions (generative, not interrogative)",
"Phase 2.5: Related Design Discovery",
"Phase 2.75: Landscape Awareness",
"Phase 3: Premise Challenge",
"Phase 4: Alternatives Generation (MANDATORY)",
"Visual Sketch (UI ideas only)",
"Phase 4.5: Founder Signal Synthesis",
"Builder Profile Append",
"Phase 5: Design Doc",
"Startup mode design doc template:",
"Builder mode design doc template:",
"Spec Review Loop",
"Brain Calibration Write-Back (Phase 2 / gated)",
"Brain Cache Background Refresh",
"Phase 6: Handoff — The Relationship Closing",
"Step 1: Read Builder Profile",
"Step 2: Follow the Tier Path",
"If TIER = introduction (first session)",
"If TIER = welcome_back (sessions 2-3)",
"If TIER = regular (sessions 4-7)",
"If TIER = inner_circle (sessions 8+)",
"Founder Resources (all tiers)",
"Next-skill recommendations — hand the user into the loop",
"Section self-check (before you finish)",
"Capture Learnings",
"Important Rules"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/office-hours.md",
"parity_test": "evals/parity/contracts/office-hours.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks",
"baseline_render_sha256": "f9dc3e03dbf193c96111c6e79e9ec0fd97505f5edecb79fd94fbe0de4622e721",
"routing": {
"invocation": "$plan --mode Discovery --module office-hours",
"visibility": "primary",
"depth": "deep",
"mutation": "design-doc-only",
"web": "optional"
}
},
{
"source": "plan-ceo-review",
"tree": "plan",
"public_mode": "Product",
"legacy_mode": "ceo",
"source_path": "plan-ceo-review/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "c43cfe64146fe79df74a974f1673fe36defcce00",
"normalized_render_sha256": "a12bf8b296f31c7c950ba07f64567c09a44d6173bca40628a33d8a61eafc00a8",
"target": "skills/plan/references/legacy/plan-ceo-review.md",
"disposition": "BUG_FIX",
"overlays": [
679,
2030,
886,
703,
879,
2189
],
"original_source_file": "plan-ceo-review/SKILL.md.tmpl",
"original_line_range": "1-427",
"purpose": "Challenge scope, strategy, and the ten-star product shape.",
"invocation_conditions": "The plan exists and the main uncertainty is scope, ambition, or product trajectory.",
"modes": {
"public": "Product",
"legacy_alias": "ceo"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"Step 0: Detect platform and base branch",
"Mega Plan Review Mode",
"Philosophy",
"Prime Directives",
"Engineering Preferences (use these to guide every recommendation)",
"Cognitive Patterns — How Great CEOs Think",
"Priority Hierarchy Under Context Pressure",
"PRE-REVIEW SYSTEM AUDIT (before Step 0)",
"Prerequisite Skill Offer",
"Retrospective Check",
"Frontend/UI Scope Detection",
"Taste Calibration (EXPANSION and SELECTIVE EXPANSION modes)",
"Landscape Check",
"Prior Learnings",
"Brain Context (preflight)",
"Step 0: Nuclear Scope Challenge + Mode Selection",
"0A. Premise Challenge",
"0B. Existing Code Leverage",
"0C. Dream State Mapping",
"0C-bis. Implementation Alternatives (MANDATORY)",
"0D-prelude. Expansion Framing (shared by EXPANSION and SELECTIVE EXPANSION)",
"0D. Mode-Specific Analysis",
"0D-POST. Persist CEO Plan (EXPANSION and SELECTIVE EXPANSION only)",
"Spec Review Loop",
"0E. Temporal Interrogation (EXPANSION, SELECTIVE EXPANSION, and HOLD modes)",
"0F. Mode Selection",
"Review Sections (11 sections, after scope and mode are agreed)",
"Section 1: Architecture Review",
"Section 2: Error & Rescue Map",
"Section 3: Security & Threat Model",
"Section 4: Data Flow & Interaction Edge Cases",
"Section 5: Code Quality Review",
"Section 6: Test Review",
"Section 7: Performance Review",
"Section 8: Observability & Debuggability Review",
"Section 9: Deployment & Rollout Review",
"Section 10: Long-Term Trajectory Review",
"Section 11: Design & UX Review (skip if no UI scope detected)",
"Outside Voice Integration Rule",
"CRITICAL RULE — How to ask questions",
"Required Outputs",
"\"NOT in scope\" section",
"\"What already exists\" section",
"\"Dream state delta\" section",
"Error & Rescue Registry (from Section 2)",
"Failure Modes Registry",
"TODOS.md updates",
"Scope Expansion Decisions (EXPANSION and SELECTIVE EXPANSION only)",
"Diagrams (mandatory, produce all that apply)",
"Stale Diagram Audit",
"Implementation Tasks",
"Markdown section (always emit)",
"JSONL artifact (always write, even if zero tasks)",
"Completion Summary",
"Unresolved Decisions",
"Handoff Note Cleanup",
"Review Log",
"Review Readiness Dashboard",
"Plan File Review Report",
"Detect the plan file",
"Generate the report",
"GSTACK REVIEW REPORT",
"Write to the plan file",
"Next Steps — Review Chaining",
"docs/designs Promotion (EXPANSION and SELECTIVE EXPANSION only)",
"Formatting Rules",
"Capture Learnings",
"Brain Calibration Write-Back (Phase 2 / gated)",
"Brain Cache Background Refresh",
"Mode Quick Reference",
"Section self-check (before you finish)",
"EXIT PLAN MODE GATE (BLOCKING)"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/plan-ceo-review.md",
"parity_test": "evals/parity/contracts/plan-ceo-review.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks"
},
{
"source": "plan-eng-review",
"tree": "plan",
"public_mode": "Engineering",
"legacy_mode": "eng",
"source_path": "plan-eng-review/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "1d5be0e6f47f0896ee831b53c56818850b1dcfe4",
"normalized_render_sha256": "57d9e304a41b7d348b28220ab7dff075aff74461c796687afc89d5de4a9f83ec",
"target": "skills/plan/references/legacy/plan-eng-review.md",
"disposition": "BUG_FIX",
"overlays": [
679,
1071,
2030,
592,
886,
703,
879
],
"original_source_file": "plan-eng-review/SKILL.md.tmpl",
"original_line_range": "1-158",
"purpose": "Review architecture, data flow, tests, performance, and failure modes.",
"invocation_conditions": "The plan needs architecture, data, failure-mode, performance, or test review.",
"modes": {
"public": "Engineering",
"legacy_alias": "eng"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"Plan Review Mode",
"Scope gate (FIRST — overrides everything below). This is a hard STOP.",
"Priority hierarchy",
"My engineering preferences (use these to guide your recommendations):",
"Cognitive Patterns — How Great Eng Managers Think",
"Documentation and diagrams:",
"Brain Context (preflight)",
"BEFORE YOU START:",
"Design Doc Check",
"Prerequisite Skill Offer",
"Step 0: Scope Challenge",
"Review Sections (after scope is agreed)",
"Prior Learnings",
"1. Architecture review",
"Confidence Calibration",
"Pre-emit verification gate (#1539 — kills the \"field doesn't exist\" FP class)",
"2. Code quality review",
"3. Test review",
"Test Framework Detection",
"E2E Test Decision Matrix",
"REGRESSION RULE (mandatory)",
"Test Plan Artifact",
"4. Performance review",
"Outside Voice Integration Rule",
"CRITICAL RULE — How to ask questions",
"Required outputs",
"\"NOT in scope\" section",
"\"What already exists\" section",
"TODOS.md updates",
"Diagrams",
"Failure modes",
"Worktree parallelization strategy",
"Implementation Tasks",
"Markdown section (always emit)",
"JSONL artifact (always write, even if zero tasks)",
"Completion summary",
"Retrospective learning",
"Formatting rules",
"Review Log",
"Review Readiness Dashboard",
"Plan File Review Report",
"Detect the plan file",
"Generate the report",
"GSTACK REVIEW REPORT",
"Write to the plan file",
"Capture Learnings",
"Brain Calibration Write-Back (Phase 2 / gated)",
"Brain Cache Background Refresh",
"Next Steps — Review Chaining",
"Unresolved decisions",
"Section self-check (before you finish)",
"EXIT PLAN MODE GATE (BLOCKING)"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/plan-eng-review.md",
"parity_test": "evals/parity/contracts/plan-eng-review.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks"
},
{
"source": "plan-devex-review",
"tree": "plan",
"public_mode": "DX",
"legacy_mode": "dx",
"source_path": "plan-devex-review/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "1ef723c10997a08ef87940daceb08bf8d60dd810",
"normalized_render_sha256": "1289c366de5492b120ed562b0c0b6bc9c603ee26cad3c9378079cd2cdbfefff6",
"target": "skills/plan/references/legacy/plan-devex-review.md",
"disposition": "BUG_FIX",
"overlays": [
679,
2030,
886,
703,
879
],
"original_source_file": "plan-devex-review/SKILL.md.tmpl",
"original_line_range": "1-462",
"purpose": "Review developer personas, time-to-hello-world, friction, and DX measurement.",
"invocation_conditions": "Developers, SDK/CLI/API consumers, onboarding, or documentation are the product surface.",
"modes": {
"public": "DX",
"legacy_alias": "dx"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"Step 0: Detect platform and base branch",
"/plan-devex-review: Developer Experience Plan Review",
"DX First Principles",
"The Seven DX Characteristics",
"Cognitive Patterns — How Great DX Leaders Think",
"DX Scoring Rubric (0-10 calibration)",
"TTHW Benchmarks (Time to Hello World)",
"Hall of Fame Reference",
"Priority Hierarchy Under Context Pressure",
"PRE-REVIEW SYSTEM AUDIT (before Step 0)",
"Prerequisite Skill Offer",
"Auto-Detect Product Type + Applicability Gate",
"Brain Context (preflight)",
"Step 0: DX Investigation (before scoring)",
"0A. Developer Persona Interrogation",
"0B. Empathy Narrative as Conversation Starter",
"0C. Competitive DX Benchmarking",
"0D. Magical Moment Design",
"0E. Mode Selection",
"0F. Developer Journey Trace with Friction-Point Questions",
"0G. First-Time Developer Roleplay",
"The 0-10 Rating Method",
"Review Sections (8 passes, after Step 0 is complete)",
"Prior Learnings",
"DX Trend Check",
"Pass 1: Getting Started Experience (Zero Friction)",
"Pass 2: API/CLI/SDK Design (Usable + Useful)",
"Pass 3: Error Messages & Debugging (Fight Uncertainty)",
"Pass 4: Documentation & Learning (Findable + Learn by Doing)",
"Pass 5: Upgrade & Migration Path (Credible)",
"Pass 6: Developer Environment & Tooling (Valuable + Accessible)",
"Pass 7: Community & Ecosystem (Findable + Desirable)",
"Pass 8: DX Measurement & Feedback Loops (Implement + Refine)",
"Appendix: Claude Code Skill DX Checklist",
"CRITICAL RULE — How to ask questions",
"Required Outputs",
"Developer Persona Card",
"Developer Empathy Narrative",
"Competitive DX Benchmark",
"Magical Moment Specification",
"Developer Journey Map",
"First-Time Developer Confusion Report",
"\"NOT in scope\" section",
"\"What already exists\" section",
"TODOS.md updates",
"DX Scorecard",
"DX Implementation Checklist",
"Implementation Tasks",
"Markdown section (always emit)",
"JSONL artifact (always write, even if zero tasks)",
"Unresolved Decisions",
"Review Log",
"Review Readiness Dashboard",
"Plan File Review Report",
"Detect the plan file",
"Generate the report",
"GSTACK REVIEW REPORT",
"Write to the plan file",
"Capture Learnings",
"Brain Calibration Write-Back (Phase 2 / gated)",
"Brain Cache Background Refresh",
"Next Steps — Review Chaining",
"Mode Quick Reference",
"Formatting Rules",
"Section self-check (before you finish)",
"EXIT PLAN MODE GATE (BLOCKING)"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/plan-devex-review.md",
"parity_test": "evals/parity/contracts/plan-devex-review.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks"
},
{
"source": "autoplan",
"tree": "plan",
"public_mode": "Full chain",
"legacy_mode": "auto",
"source_path": "autoplan/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "b2eaca9fde8f46001bea9961b8ed651d0f6f9e13",
"normalized_render_sha256": "08e1fc76cb9ef5335a365f008faff5c37558a648c9ff938caa28097f1ca8e60c",
"target": "skills/plan/references/legacy/autoplan.md",
"disposition": "BUG_FIX",
"overlays": [
679,
2014,
2023,
886,
703,
879,
9108
],
"original_source_file": "autoplan/SKILL.md.tmpl",
"original_line_range": "1-916",
"purpose": "Run CEO, engineering, and DX plan reviews with an auditable decision trail.",
"invocation_conditions": "The user wants the full CEO/engineering/DX chain with automatic routing.",
"modes": {
"public": "Full chain",
"legacy_alias": "auto"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"Step 0: Detect platform and base branch",
"Prerequisite Skill Offer",
"/autoplan — Auto-Review Pipeline",
"The 6 Decision Principles",
"Decision Classification",
"Sequential Execution — MANDATORY",
"What \"Auto-Decide\" Means",
"Filesystem Boundary — Codex Prompts",
"Phase 0: Intake + Restore Point",
"Step 1: Capture restore point",
"Step 2: Read context",
"Step 3: Load skill files from disk",
"Phase 0.5: Codex auth + version preflight",
"Phase 1: CEO Review (Strategy & Scope)",
"Phase 2: Design Review (conditional — skip if no UI scope)",
"Phase 3: Eng Review + Dual Voices",
"Phase 3.5: DX Review (conditional — skip if no developer-facing scope)",
"Decision Audit Trail",
"Pre-Gate Verification",
"Phase 4: Final Approval Gate",
"Implementation Tasks aggregator",
"Completion: Write Review Logs",
"Important Rules"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/autoplan.md",
"parity_test": "evals/parity/contracts/autoplan.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks",
"baseline_render_sha256": "8367e4f8d4bb5a9427f46f47bc327cdc8f481d2ae097f5a6747cd3eefa103653",
"routing": {
"invocation": "$plan --mode Full chain --module autoplan",
"visibility": "primary",
"depth": "deep",
"mutation": "plan-only",
"web": "optional"
}
},
{
"source": "spec",
"tree": "plan",
"public_mode": "Specification",
"legacy_mode": "spec",
"source_path": "spec/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "6c0c14e1b37e1e56d85427e9c8d080a6df908992",
"normalized_render_sha256": "e4525d525e43fc24fa0d72ee01a21020e115faa49bb94949ba9f4b38dd6332dd",
"target": "skills/plan/references/legacy/spec.md",
"disposition": "BUG_FIX",
"overlays": [
679,
886,
879
],
"original_source_file": "spec/SKILL.md.tmpl",
"original_line_range": "1-769",
"purpose": "Turn intent into a backlog-ready issue/spec and optional execution handoff.",
"invocation_conditions": "Intent must become acceptance criteria, issue structure, testing, rollback, and handoff.",
"modes": {
"public": "Specification",
"legacy_alias": "spec"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"/spec — Author a Backlog-Ready Spec (issue + optional agent spawn)",
"Flag Reference (parse from the user's initial invocation)",
"Process (STRICT — do not skip or combine phases)",
"Phase 1: Understand the \"Why\" (+ optional --dedupe)",
"Phase 2: Scope and Boundaries",
"Phase 3: Technical Interrogation (HARD requirement: read code first)",
"Phase 4: Draft Review",
"Phase 4.5: Quality Gate (--no-gate to skip)",
"Phase 4.5a: Semantic Content Review (precedes the redaction regex)",
"Phase 4.5b: Fail-closed redaction (PRECEDES dispatch)",
"Redaction scan — pre-codex (the spec body)",
"Phase 5: File the Spec (+ optional --execute)",
"Phase 5 dispatch logic (plan-mode-aware default)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Repo Ownership — See Something, Say Something",
"Search Before Building",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"File the issue (always)",
"Redaction scan — pre-issue (the issue body you're about to file)",
"Archive the spec (always, local by default)",
"Redaction scan — pre-archive (the body about to be archived)",
"Spawn the agent (--execute path only)",
"TTHW telemetry (DX11/F7)",
"How to Ask Questions",
"Issue Quality Standards",
"1. Stakeholder Context (\"Why This Matters\")",
"2. Verified Current State",
"3. Audit Tables for Landscape Context",
"4. Quantified Impact",
"5. Prioritized Recommendations with Rationale",
"6. \"What's Working Well\" / \"Do Not Touch\"",
"7. Dependency Graphs for Multi-Part Work",
"8. Schema, API Shapes, and Data Models",
"9. File Reference Table",
"10. Testable Acceptance Criteria",
"11. Testing Pyramid",
"12. Root Cause Analysis (bugs and quality issues)",
"13. Effort Breakdown",
"14. Rollback Strategy",
"Issue Structure Templates",
"Standard Issues (default; also used for --bug, --feature, --refactor framings)",
"Epics",
"Audit / Cleanup Issues (routed via --audit flag)",
"Rules",
"Anti-Patterns",
"Handoff"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/spec.md",
"parity_test": "evals/parity/contracts/spec.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks",
"baseline_render_sha256": "0a2be9d256d347193b69a6b542de7bde5f4aff9b18983654ab8852bdfac61d60",
"routing": {
"invocation": "$plan --mode Specification --module spec",
"visibility": "primary",
"depth": "deep",
"mutation": "spec-and-issue",
"web": "optional"
}
},
{
"source": "plan-tune",
"tree": "plan",
"public_mode": "Discovery",
"legacy_mode": "preferences",
"source_path": "plan-tune/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "dc1214d4c023ed2b126aca8aedb4153b222e73c5",
"normalized_render_sha256": "97e6b1468ce1382245c4d5e92bd71a2a16d0d171508cd32e7f1501ed2e24f54c",
"target": "skills/plan/references/legacy/plan-tune.md",
"disposition": "BUG_FIX",
"overlays": [
679,
879
],
"original_source_file": "plan-tune/SKILL.md.tmpl",
"original_line_range": "1-659",
"purpose": "Inspect and tune question preferences and developer profile.",
"invocation_conditions": "The problem, user, wedge, or value proposition is still fluid.",
"modes": {
"public": "Discovery",
"legacy_alias": "preferences"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Completion Status Protocol",
"Operational Self-Improvement",
"Telemetry (run last)",
"Plan Status Footer",
"/plan-tune — Question Tuning + Developer Profile (v1 observational)",
"Step 0: Detect what the user wants",
"Consent + opt-in",
"5-Q setup (post-consent, or via Setup gate)",
"Inspect profile",
"Review question log",
"Set a preference",
"Edit declared profile",
"Show gap",
"Stats",
"Recent auto-decisions",
"Audit unmarked questions",
"Dream cycle review",
"Dream cycle distill (manual trigger)",
"Important Rules"
],
"evidence_requirements": "Ground conclusions in inspected code, commands, browser/device observations, or source artifacts.",
"artifacts_produced": "Produce every report, plan, log, screenshot, manifest, or handoff required by the source.",
"mutation_authority": "Use the source mutation boundary; never broaden writes, commits, pushes, merges, or deploys.",
"exit_states": "Preserve source completion checks, unresolved-decision reporting, and explicit blocked exits.",
"voice": "Direct builder voice; match the user language and retain source-specific tone constraints.",
"response_posture": "Direct, evidence-first builder language; preserve source-specific recommendations and constructive pressure.",
"new_location": "skills/plan/references/legacy/plan-tune.md",
"parity_test": "evals/parity/contracts/plan-tune.json + scripts/gstack2/run-parity.ts canonical specialist render, excluded-wrapper, lazy-section, and pinned-source provenance checks",
"baseline_render_sha256": "906afb95787873a7fad1a71f54db620c774f2665b86b091202e6aaad97ce763f",
"routing": {
"invocation": "$plan --mode Discovery --module plan-tune",
"visibility": "primary",
"depth": "standard",
"mutation": "profile-only",
"web": "none"
}
},
{
"source": "context-save",
"tree": "plan",
"public_mode": "Discovery",
"legacy_mode": "context-save",
"source_path": "context-save/SKILL.md.tmpl",
"base_sha": "bb57306d98c97011b0919c6132705a15b1579781",
"blob_sha": "a3702bc95439cddd87841aba836708bf511ef55d",
"normalized_render_sha256": "c7cf8af4b2eb818f444fa3169efa9282771e4f08680bc8246cd49bb2e83d216e",
"target": "skills/plan/references/legacy/context-save.md",
"disposition": "BUG_FIX",
"overlays": [
679,
879
],
"original_source_file": "context-save/SKILL.md.tmpl",
"original_line_range": "1-274",
"purpose": "Save branch, decisions, and remaining work.",
"invocation_conditions": "The problem, user, wedge, or value proposition is still fluid.",
"modes": {
"public": "Discovery",
"legacy_alias": "context-save"
},
"question_sequence": "Preserve the source workflow order; gather prerequisites before consequential questions.",
"follow_up_behavior": "Specialist follow-up order is preserved from the pinned source. The retired 1.x shared onboarding wrapper is excluded, and carved specialist phases are package-local lazy references loaded at their original workflow point.",
"smart_skip_rules": "Skip only when the source condition is false, and name every skipped module with evidence.",
"pushback_rules": "Preserve the source forcing questions, recommendation pressure, and one-question-at-a-time cadence.",
"stop_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"approval_gates": "Preserve every STOP, hard gate, approval boundary, and no-mutation-before-approval rule.",
"rubrics_and_scoring": "All rubric names, dimensions, anchors, and scoring rules remain verbatim in new_location.",
"cognitive_frameworks": [
"Preamble (run first)",
"Plan Mode Safe Operations",
"Skill Invocation During Plan Mode",
"First-run guidance (one-time)",
"AskUserQuestion Format",
"Tool resolution (read first)",
"When AskUserQuestion is unavailable or a call fails",
"Format",
"Handling 5+ options — split, never drop",
"Self-check before emitting",
"Artifacts Sync (skill start)",
"Model-Specific Behavioral Patch (claude)",
"Voice",
"Context Recovery",
"Writing Style (skip entirely if EXPLAIN_LEVEL: terse appears in the preamble echo OR the user's current message explicitly requests terse / no-explanations output)",
"Completeness Principle — Boil the Ocean",
"Confusion Protocol",
"Continuous Checkpoint Mode",
"Context Health (soft directive)",
"Question Tuning (skip entirely if QUESTION_TUNING: false)",
"Completion Status Protocol",