What problem does it solve? Teams need one Playwright test suite that runs against every environment (dev, prod-test, prod) of a Fusebase project without hardcoding URLs, org ids, or credentials, while avoiding dangerous mistakes like locking out app access principals or running against the wrong stage. ## Core Features & Use Cases - Environment-aware scaffolding: Generate a Playwright harness via fusebase scaffold --template e2e where fusebase env supplies base URLs, org/app ids, and test users per environment. - Per-app and cross-app specs: One Playwright project per app from fusebase.json, with specs/common, specs/<appKey>, and specs/integration for cross-app portal flows. - Safe production testing: Stage guard specs, self-skipping fixtures, secret handling via PW_USER_<KEY>_PASSWORD, and CI templates for GitLab and GitHub. - Use Case: Convert a manually verified QA scenario into a role-differential Playwright spec, run it with FUSEBASE_ENV=dev npm test, then promote it to the prod-test environment. ## Quick Start Ask the AI to scaffold an environment-aware Playwright e2e suite for this Fusebase project and convert a manually verified scenario into a spec that runs against dev and prod-test.