@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.
- package/README.md +13 -0
- package/dist/index.cjs +1035 -6
- package/dist/index.js +1035 -6
- package/package.json +1 -1
- 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
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Reusable Lessons
|
|
2
|
+
|
|
3
|
+
## Atomic proof first
|
|
4
|
+
|
|
5
|
+
Start with the smallest claim that can produce useful evidence. For Neon, that is not "the mix sounds good"; it is route, contract, source readiness, render metrics, no silence, and no clipping.
|
|
6
|
+
|
|
7
|
+
## Failure is product input
|
|
8
|
+
|
|
9
|
+
A failing run should become a clearer classification, not a vague "Riddle caught a bug" headline. Use `product_regression`, `proof_insufficient`, `profile_calibration`, `app_contract_gap`, `runtime_environment_blocked`, and `needs_human_review`.
|
|
10
|
+
|
|
11
|
+
## App contracts beat scraping
|
|
12
|
+
|
|
13
|
+
Complex audio state is easier to prove when the app exposes a small redacted proof contract. Scraping visible controls is still useful, but rendered metric agreement needs intentional app state.
|
|
14
|
+
|
|
15
|
+
## Keep metrics compact
|
|
16
|
+
|
|
17
|
+
Large metrics belong in artifacts. The summary should answer:
|
|
18
|
+
|
|
19
|
+
- did the render complete?
|
|
20
|
+
- did the mix clip?
|
|
21
|
+
- was it silent?
|
|
22
|
+
- did the intended metric move?
|
|
23
|
+
- what should a human review next?
|
|
24
|
+
|
|
25
|
+
## Core changes are last
|
|
26
|
+
|
|
27
|
+
Most ratchet steps should change profile JSON, pack docs, app proof contracts, or app fixtures. Riddle Proof core changes are justified only when the missing primitive applies beyond Neon.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Neon Step Sequencer example runs
|
|
2
|
+
|
|
3
|
+
These examples are local Playwright runner outputs captured against LilArcade Neon Step Sequencer on May 24, 2026. They are included to show how this pack records atomic proof claims with explicit evidence-role patterns.
|
|
4
|
+
|
|
5
|
+
The raw `profile-result.json` files are real runner outputs. They intentionally keep enough evidence to audit the verdict, but the summaries are the preferred place to start.
|
|
6
|
+
|
|
7
|
+
## Runs
|
|
8
|
+
|
|
9
|
+
| Run | Evidence-role pattern | Status | Claim |
|
|
10
|
+
| --- | --- | --- | --- |
|
|
11
|
+
| `run-001-fast-mix-health` | `current_target` | passed | The current Neon target exposes a proof contract, source receipts, and a bounded offline mix-health render. |
|
|
12
|
+
| `run-002-mix-change` | `interaction_snapshots` | passed | A bass-level edit changes rendered bass and mix metrics without clipping. |
|
|
13
|
+
| `run-003-full-matrix` | `current_target` | passed | The mix-health proof holds across desktop, phone, iPad Mini, and iPad viewports. |
|
|
14
|
+
|
|
15
|
+
## What these examples do not prove
|
|
16
|
+
|
|
17
|
+
- They do not prove subjective mix taste.
|
|
18
|
+
- They do not prove every song, section, or mix preset.
|
|
19
|
+
- They do not prove production CDN asset availability; these were local dev-server runs.
|
|
20
|
+
- They do not prove a reference/candidate release delta. The mix-change run uses pre-action/post-action snapshots inside one proof run, not a separate baseline deployment.
|