# Quickstart: Verification Checklist Framework V1.5 (075) This quickstart is for developers implementing and validating Spec 075. ## Prerequisites - Docker + Sail - A seeded workspace + tenant and a user that can access the tenant plane (`/admin/t/{tenant}`) ## Local setup - Start containers: `vendor/bin/sail up -d` - Install deps (if needed): `vendor/bin/sail composer install` - Run migrations: `vendor/bin/sail artisan migrate` ## Run verification (expected UX) After implementation, the Verify surface should behave like: 1. Navigate to the tenant-scoped Verify step (onboarding or equivalent). 2. If no active run exists, the single primary CTA is **Start verification**. 3. If a run is active, the single primary CTA is **Refresh results**. 4. Results default to the **Issues** tab with blockers/failures/warnings ordered first. ## Acknowledge a check (expected UX) After implementation: 1. On a `fail` or `warn` check card, click **Acknowledge**. 2. Confirmation modal appears (required). 3. Submit a short reason (≤ 160 chars) and optional expiry (informational only). 4. The acknowledgement displays (who/when/reason) and the issue moves into the “Acknowledged issues” group. ## Authorization expectations - Non-members attempting to access tenant-scoped verification pages: deny-as-not-found (404). - Tenant members without `tenant_verification.acknowledge`: acknowledgement attempts fail with 403. ## Run the focused test suite Once tests are implemented: - Run only the spec-related tests: `vendor/bin/sail artisan test --compact --filter=Verification` (or point at the specific test file(s)). ## Formatting - Format only changed files before finalizing: `vendor/bin/sail bin pint --dirty`