@riddledc/riddle-proof-packs 0.2.2 → 0.3.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.
Files changed (30) hide show
  1. package/README.md +13 -0
  2. package/dist/index.cjs +1035 -6
  3. package/dist/index.js +1035 -6
  4. package/package.json +1 -1
  5. package/packs/audio-mix/README.md +30 -0
  6. package/packs/audio-mix/authoring-guide.md +35 -0
  7. package/packs/audio-mix/human-review-rubric.md +31 -0
  8. package/packs/audio-mix/metrics-schema.json +30 -0
  9. package/packs/audio-mix/profile.template.json +130 -0
  10. package/packs/audio-mix/ratchet-method.md +26 -0
  11. package/packs/neon-step-sequencer/README.md +41 -0
  12. package/packs/neon-step-sequencer/case-study/findings.md +102 -0
  13. package/packs/neon-step-sequencer/case-study/ratchet-card.md +39 -0
  14. package/packs/neon-step-sequencer/case-study/ratchet-log.md +203 -0
  15. package/packs/neon-step-sequencer/case-study/reusable-lessons.md +27 -0
  16. package/packs/neon-step-sequencer/examples/README.md +20 -0
  17. package/packs/neon-step-sequencer/examples/run-001-fast-mix-health/profile-result.json +5010 -0
  18. package/packs/neon-step-sequencer/examples/run-001-fast-mix-health/summary.md +37 -0
  19. package/packs/neon-step-sequencer/examples/run-002-mix-change/profile-result.json +6816 -0
  20. package/packs/neon-step-sequencer/examples/run-002-mix-change/summary.md +37 -0
  21. package/packs/neon-step-sequencer/examples/run-003-full-matrix/profile-result.json +18490 -0
  22. package/packs/neon-step-sequencer/examples/run-003-full-matrix/summary.md +33 -0
  23. package/packs/neon-step-sequencer/profile.template.json +75 -0
  24. package/packs/neon-step-sequencer/profiles/explore-songs-and-mixes.json +112 -0
  25. package/packs/neon-step-sequencer/profiles/fast-mix-health.json +181 -0
  26. package/packs/neon-step-sequencer/profiles/full-mix-health-matrix.json +154 -0
  27. package/packs/neon-step-sequencer/profiles/mix-change-before-after.json +202 -0
  28. package/packs/neon-step-sequencer/profiles/mobile-trainer-layout.json +109 -0
  29. package/packs/neon-step-sequencer/profiles/playback-sync.json +126 -0
  30. package/packs/neon-step-sequencer/profiles/source-readiness.json +114 -0
package/README.md CHANGED
@@ -83,6 +83,19 @@ Profiles are stored under `packs/<slug>/profile.json` and mirrored into the runt
83
83
  - `canvas-gameplay`
84
84
  - `mobile-layout-smoke`
85
85
  - `auth-smoke`
86
+ - `neon-step-sequencer-fast-mix-health`
87
+ - `neon-step-sequencer-source-readiness`
88
+ - `neon-step-sequencer-playback-sync`
89
+ - `neon-step-sequencer-mix-change-before-after`
90
+ - `neon-step-sequencer-mobile-trainer-layout`
91
+ - `neon-step-sequencer-full-mix-health-matrix`
92
+ - `neon-step-sequencer-explore-songs-and-mixes`
93
+
94
+ ## Audio and Neon ratchet packs
95
+
96
+ The `audio-mix` directory contains reusable audio-proof authoring guidance, a profile template, a metrics schema, a ratchet method, and a human-review rubric.
97
+
98
+ The `neon-step-sequencer` directory contains the first app-specific ratchet lab under the new architecture. Its profiles declare `current_target` or `interaction_snapshots` evidence-role patterns and explicitly state what they do not prove. The case-study files record the claim, evidence, failure classification, smallest layer changed, and next sharper question for each run.
86
99
 
87
100
  ## Usage
88
101