@riddledc/riddle-proof-packs 0.2.1 → 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.
- package/README.md +13 -0
- package/dist/index.cjs +1035 -6
- package/dist/index.js +1035 -6
- package/package.json +2 -2
- package/packs/audio-mix/README.md +30 -0
- package/packs/audio-mix/authoring-guide.md +35 -0
- package/packs/audio-mix/human-review-rubric.md +31 -0
- package/packs/audio-mix/metrics-schema.json +30 -0
- package/packs/audio-mix/profile.template.json +130 -0
- package/packs/audio-mix/ratchet-method.md +26 -0
- package/packs/neon-step-sequencer/README.md +41 -0
- package/packs/neon-step-sequencer/case-study/findings.md +102 -0
- package/packs/neon-step-sequencer/case-study/ratchet-card.md +39 -0
- package/packs/neon-step-sequencer/case-study/ratchet-log.md +203 -0
- package/packs/neon-step-sequencer/case-study/reusable-lessons.md +27 -0
- package/packs/neon-step-sequencer/examples/README.md +20 -0
- package/packs/neon-step-sequencer/examples/run-001-fast-mix-health/profile-result.json +5010 -0
- package/packs/neon-step-sequencer/examples/run-001-fast-mix-health/summary.md +37 -0
- package/packs/neon-step-sequencer/examples/run-002-mix-change/profile-result.json +6816 -0
- package/packs/neon-step-sequencer/examples/run-002-mix-change/summary.md +37 -0
- package/packs/neon-step-sequencer/examples/run-003-full-matrix/profile-result.json +18490 -0
- package/packs/neon-step-sequencer/examples/run-003-full-matrix/summary.md +33 -0
- package/packs/neon-step-sequencer/profile.template.json +75 -0
- package/packs/neon-step-sequencer/profiles/explore-songs-and-mixes.json +112 -0
- package/packs/neon-step-sequencer/profiles/fast-mix-health.json +181 -0
- package/packs/neon-step-sequencer/profiles/full-mix-health-matrix.json +154 -0
- package/packs/neon-step-sequencer/profiles/mix-change-before-after.json +202 -0
- package/packs/neon-step-sequencer/profiles/mobile-trainer-layout.json +109 -0
- package/packs/neon-step-sequencer/profiles/playback-sync.json +126 -0
- 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
|
|