checkpoint: preserve zero-core agent handoff

This commit is contained in:
冰朔 2026-08-21 01:29:17 +08:00
commit e54c93c7ae
91 changed files with 13603 additions and 121 deletions

View file

@ -49,6 +49,14 @@ test('main branch and zero domains are public portals with real runtime projecti
assert.match(portal, /numberCoordinateCount/)
})
test('the authenticated world return control remains clickable above the non-interactive scene', () => {
const styles = read('src/modules/qoder-surface/starlake-surface.css')
const rule = styles.match(/\.starlake-scene \.world-channel-return\s*\{[^}]+\}/)?.[0]
assert.ok(rule, 'world return control must have an explicit style boundary')
assert.match(rule, /pointer-events:auto/)
})
test('zero-sense and fifth-domain boundaries remain explicit', () => {
const app = read('src/main.tsx')
const portal = read('src/modules/public-domain/PublicDomainPortal.tsx')