.
├── app.doql.less
├── CHANGELOG.md
├── examples
│   ├── backend_service
│   │   ├── app
│   │   │   └── users.py
│   │   └── README.md
│   ├── frontend_view
│   │   ├── fixtures
│   │   │   └── menu_items.yaml
│   │   ├── README.md
│   │   └── src
│   │       └── menu_icons.py
│   ├── mcp_service
│   │   ├── README.md
│   │   └── src
│   │       └── demo.py
│   ├── nexu_markpact_exporter.py
│   ├── realtime_lane_nexu_sync.py
│   ├── run_examples.py
│   ├── scientific_calculator_demo2.py
│   ├── scientific_calculator_demo.py
│   ├── vertical_slice
│   │   ├── README.md
│   │   └── src
│   │       └── flow.py
│   ├── web_app_analytics
│   │   ├── cinema
│   │   │   ├── cinema_player.html
│   │   │   ├── stage0.html
│   │   │   ├── stage1.html
│   │   │   └── stage2.html
│   │   └── README.md
│   ├── web_app_calculator
│   │   ├── cinema
│   │   │   ├── alt_a.html
│   │   │   ├── alt_b.html
│   │   │   ├── alt_c.html
│   │   │   ├── cinema_player.html
│   │   │   ├── _inject_runtime.html
│   │   │   ├── _inject_shield.html
│   │   │   ├── stage0.html
│   │   │   ├── stage1.html
│   │   │   └── stage2.html
│   │   ├── fixtures
│   │   │   └── inputs.json
│   │   ├── markpact_sandbox
│   │   │   ├── README.md
│   │   │   └── sandbox
│   │   │       ├── requirements.txt
│   │   │       └── src
│   │   │           └── calculator.py
│   │   ├── README.md
│   │   ├── run.py
│   │   ├── src
│   │   │   └── calculator.py
│   │   └── workspace
│   │       ├── fixtures
│   │       │   └── inputs.json
│   │       ├── intract.yaml
│   │       ├── nexu.yaml
│   │       └── src
│   │           └── calculator.py
│   ├── web_app_dashboard
│   │   ├── cinema
│   │   │   ├── cinema_player.html
│   │   │   ├── stage0.html
│   │   │   ├── stage1.html
│   │   │   └── stage2.html
│   │   ├── fixtures
│   │   │   └── dashboard_data.json
│   │   ├── README.md
│   │   ├── run.py
│   │   ├── src
│   │   │   └── dashboard.py
│   │   └── workspace
│   │       ├── fixtures
│   │       │   └── dashboard_data.json
│   │       ├── intract.yaml
│   │       ├── nexu.yaml
│   │       └── src
│   │           └── dashboard.py
│   ├── web_app_event_monitor
│   │   ├── docker
│   │   │   ├── docker-compose.yml
│   │   │   ├── Dockerfile
│   │   │   └── README.md
│   │   ├── pactown.yaml
│   │   ├── run.py
│   │   └── services
│   │       ├── alerts
│   │       │   └── README.md
│   │       ├── analytics
│   │       │   └── README.md
│   │       └── dashboard
│   │           └── README.md
│   └── web_app_pactown_ecosystem
│       ├── pactown.yaml
│       ├── run.py
│       └── services
│           ├── api
│           │   └── README.md
│           └── web
│               └── README.md
├── goal.yaml
├── LICENSE
├── Makefile
├── project
│   ├── analysis.toon.yaml
│   ├── calls.mmd
│   ├── calls.png
│   ├── calls.toon.yaml
│   ├── calls.yaml
│   ├── compact_flow.mmd
│   ├── compact_flow.png
│   ├── context.md
│   ├── duplication.toon.yaml
│   ├── evolution.toon.yaml
│   ├── flow.mmd
│   ├── flow.png
│   ├── index.html
│   ├── logic.pl
│   ├── map.toon.yaml
│   ├── mermaid.export
│   ├── planfile-tickets.yaml
│   ├── project.toon.yaml
│   ├── prompt.txt
│   └── README.md
├── project.sh
├── pyproject.toml
├── pyqual.yaml
├── README.md
├── scripts
│   ├── check-doc-links.py
│   └── ci-cinema-smoke.sh
├── src
│   └── nexu
│       ├── blueprint.py
│       ├── bundle.py
│       ├── capsule.py
│       ├── cinema_baseline_contracts.py
│       ├── cinema_history.py
│       ├── cinema_markpact.py
│       ├── cinema_offline_options.py
│       ├── cinema_policy.py
│       ├── cinema_projects.py
│       ├── cinema_publish.py
│       ├── cinema.py
│       ├── cinema_scripts.py
│       ├── cinema_server.py
│       ├── cli.py
│       ├── config.py
│       ├── diff.py
│       ├── drift.py
│       ├── export_prompt.py
│       ├── files.py
│       ├── freeze.py
│       ├── git.py
│       ├── hashing.py
│       ├── init_project.py
│       ├── __init__.py
│       ├── intract_adapter.py
│       ├── intract.py
│       ├── iterate.py
│       ├── journal.py
│       ├── llm.py
│       ├── __main__.py
│       ├── mcp_server.py
│       ├── models.py
│       ├── orchestrate.py
│       ├── paths.py
│       ├── plan.py
│       ├── promote.py
│       ├── report.py
│       ├── review.py
│       ├── runtime.py
│       ├── status.py
│       ├── templates
│       │   └── cinema
│       │       ├── alt_a.html.tmpl
│       │       ├── alt_b.html.tmpl
│       │       ├── alt_c.html.tmpl
│       │       ├── cinema_player.html.tmpl
│       │       ├── nexu_hooks.py.tmpl
│       │       ├── server.py.tmpl
│       │       └── stage0.html.tmpl
│       └── verify.py
├── SUMD.md
├── SUMR.md
├── testql-scenarios
│   └── generated-cli-tests.testql.toon.yaml
├── tests
│   ├── conftest.py
│   ├── test_capsule_flow.py
│   ├── test_capsule_next_stage.py
│   ├── test_capsule_runtime_report.py
│   ├── test_cinema_baseline_contracts.py
│   ├── test_cinema_history.py
│   ├── test_cinema_markpact.py
│   ├── test_cinema_offline_options.py
│   ├── test_cinema_policy.py
│   ├── test_cinema_projects.py
│   ├── test_cinema_publish.py
│   ├── test_cinema_scripts.py
│   ├── test_cinema_server.py
│   ├── test_cinema_spatial_patch.py
│   ├── test_export_prompt_ledger.py
│   ├── test_intract.py
│   ├── test_models.py
│   ├── test_nexu.py
│   ├── test_orchestration_mcp.py
│   ├── test_promote_apply.py
│   ├── test_review_bundle.py
│   └── test_verify_intract.py
├── TODO
│   └── 1.md
├── tree.sh
├── tree.txt
├── uv.lock
└── VERSION

49 directories, 172 files
