@odla-ai/chapter 0.25.4 → 0.25.6
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/package.json +1 -1
- package/runbooks/adopt-existing.md +32 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odla-ai/chapter",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.6",
|
|
4
4
|
"description": "A leader/follower foundation for branded membership sites: shared CRM, admin, auth, payments, booking, and explicit record delivery from one defineChapter config.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://odla.ai/docs/packages/chapter",
|
|
@@ -489,6 +489,15 @@ At 390, 768, 1280, and 1440 pixels in every theme, compare:
|
|
|
489
489
|
- at 1280 and 1440, every unselected collection table uses the full content
|
|
490
490
|
width: no empty detail pane and no wide table squeezed into a narrow rail;
|
|
491
491
|
after selection, both master and detail remain usable;
|
|
492
|
+
- no content-width background stripe, split canvas, or abrupt backdrop seam
|
|
493
|
+
appears around a viewport-width workspace. Inspect computed background,
|
|
494
|
+
padding, min-height, and overflow on every ancestor between the host mount and
|
|
495
|
+
the workspace—including theme scopes and embedded shells. A `100vw` child can
|
|
496
|
+
escape a centered max-width box while one of those ancestors still paints the
|
|
497
|
+
centered box behind it;
|
|
498
|
+
- record the CSS-pixel bounding boxes for the accepted outer workspace, master,
|
|
499
|
+
and detail at desktop widths. Compare those measurements with the frozen
|
|
500
|
+
baseline; static markup and component identity cannot prove geometry;
|
|
492
501
|
- no clipped labels, card text escape, accidental document scroll, or
|
|
493
502
|
horizontal overflow;
|
|
494
503
|
- loading, empty, error, unauthorized, 404, and reduced-motion states.
|
|
@@ -602,6 +611,29 @@ Run the real journey:
|
|
|
602
611
|
`doctor`, unit tests, build, CLI smoke, a login page, and a human-looking admin
|
|
603
612
|
screen are necessary but not sufficient.
|
|
604
613
|
|
|
614
|
+
### Close the source-to-deployment loop
|
|
615
|
+
|
|
616
|
+
A commit, pushed branch, or merged pull request does not change a running
|
|
617
|
+
website. After every change that affects a route, workspace, asset, provider
|
|
618
|
+
binding, or acceptance result:
|
|
619
|
+
|
|
620
|
+
1. identify the exact reviewed commit and intended deployment target;
|
|
621
|
+
2. build and deploy that commit with the repository's reviewed dev command;
|
|
622
|
+
3. capture the deploy command, direct origin, immutable Worker/deployment
|
|
623
|
+
version, and source commit in PM;
|
|
624
|
+
4. reload the direct deployed origin and assert distinctive behavior from the
|
|
625
|
+
acceptance matrix—not merely a shared label or route;
|
|
626
|
+
5. measure the deployed viewport geometry, inspect the computed styles of every
|
|
627
|
+
layout ancestor involved in a breakout, and exercise the affected journey;
|
|
628
|
+
source CSS, selector-presence tests, and static markup do not prove which
|
|
629
|
+
layer paints the deployed page;
|
|
630
|
+
6. leave the bug/task open if the intended commit was not deployed or the live
|
|
631
|
+
assertion was not observed.
|
|
632
|
+
|
|
633
|
+
Do not report “fixed”, “ready for handoff”, or a passing phase from source-only
|
|
634
|
+
tests. If CI is expected to deploy a branch or merge automatically, verify the
|
|
635
|
+
actual completed deployment and version rather than assuming the trigger ran.
|
|
636
|
+
|
|
605
637
|
Before filing a route bug from deployed evidence, prove that the probed
|
|
606
638
|
deployment runs the intended commit/version. Repeat the request against the
|
|
607
639
|
direct candidate origin and the public domain with a unique non-secret query
|