The environment creates the bond.
The leaders developed Luminai within an interactive colonization environment. Sylvan tests a more deeply integrated generation after thousands of years of development.
Inspect the controlling premise
Project Explorer
Inspect the corrected story, trace unresolved causes, and work through source-linked brainstorming packets. The repository browser remains available below.
Development workspace · September 6 workshop pass
All twenty workshop gates have accepted directions. Their unresolved mechanics remain visible. The active Story Completion gate remains SC-010 Question 7.
Public, read-only development material with full spoilers. Draft answers stay in your browser until exported; they do not update the vault. A spoiler boundary is not privacy protection.
The leaders developed Luminai within an interactive colonization environment. Sylvan tests a more deeply integrated generation after thousands of years of development.
Inspect the controlling premiseFinal-years control is established. Stopping authority, cumulative harm, privacy, and remedies still need concrete rules.
Test the leaders' safeguardsKonrad's Daemon verifies an apparent separation. Konrad authorizes reactivation, which attaches his revived system to Samuel's hidden hierarchy. The false evidence still needs definition.
Inspect the takeover resultSamuel and the older criminals remain on the previous containment planet. George participates directly on Sylvan's world, then becomes Samuel's intended scapegoat.
Inspect George's roleStory completion · Live from the vault
The story advances horizontally: every active problem receives the same level of development before any one branch moves deeper.
Integrated foundation review · September 5, 2026
The leaders created an interactive colonization environment and developed Luminai within it. Konrad tries to prove his experienced daemon superior; Samuel turns his reactivation into access. Sylvan already has decisive control during the final years. Exact safeguards and presentation mechanics remain open.
Current method Bound action, observe the method, compare the record, expose the hidden command.
Read the foundation update record9 / 27story tasks complete
Project explorer
Search or browse 539 documents across canon, development systems, story loops, prose tools, public work, and session history.
The repository keeps the existing cPanel Git deployment flow.
Deployment target:
/home/iainmcok/public_html/devsite/
The portfolio application remains in the repository subfolder:
/home/iainmcok/public_html/devsite/iainreiddotdev/
Recommended permissions after deployment:
find ~/public_html/devsite -type d -exec chmod 755 {} \;
find ~/public_html/devsite -type f -exec chmod 644 {} \;
The public document root is public_html/. The repository deploys to public_html/devsite/, while the portfolio remains in its iainreiddotdev/ subfolder. The application is therefore served under https://iainreid.dev/devsite/iainreiddotdev/ (for example the VibeKB page is https://iainreid.dev/devsite/iainreiddotdev/saas-lab/). The shared account system lives under the same base path (/devsite/iainreiddotdev/auth/..., /devsite/iainreiddotdev/admin/). This base path is configured in one place: includes/config.php.
The Seeds static atlas remains at /devsite/docs/, while vault files retain their repository-relative paths beneath /devsite/.
The complete tracked repository deployment includes this application's auth/, admin/, data/, and scripts/ directories in their existing nested location. The VibeKB portfolio page is served by saas-lab/index.php. See docs/AUTH.md for the full account-system guide.
The SQLite database is created at runtime at ~/public_html/devsite/iainreiddotdev/data/saas-lab.sqlite. SQLite also writes journal/lock files in that directory, so data/ itself must be writable by the PHP user. Ownership matters more than the numeric mode; on this host PHP runs as the site user, so owner-write suffices. Least-permissive starting point:
chmod 750 ~/public_html/devsite/iainreiddotdev/data
# after the DB is created:
chmod 640 ~/public_html/devsite/iainreiddotdev/data/saas-lab.sqlite
Do not use 777. The blanket chmod above still leaves data/ owner-writable.
cd ~/public_html/devsite/iainreiddotdev
SAAS_LAB_ADMIN_PASSWORD='strong-password' \
php scripts/create-admin.php --name="Iain Reid" --email="admin@example.com"
curl -I https://iainreid.dev/devsite/iainreiddotdev/data/saas-lab.sqlite
Expected: 403 Forbidden (404 also acceptable). A 200 / file download is a deployment blocker — fix data/.htaccess and permissions before proceeding.
x/)The deployment includes the x/ directory (gated experiment routes, e.g. x/hello.php served at https://iainreid.dev/devsite/iainreiddotdev/x/hello.php). Because the complete tracked repository is published, application documentation and experiment templates are also present beneath the nested application folder; they remain development material rather than application navigation.
The cPanel deploy is copy-only — it never deletes files the repository removed or renamed. If you rename or replace a gated route, the old, possibly ungated file stays live on the server and can bypass the gate. After any such change, remove the stale file over SSH, for example:
rm -f ~/public_html/devsite/iainreiddotdev/x/old-name.php
# or an entire renamed experiment folder:
rm -rf ~/public_html/devsite/iainreiddotdev/x/old-slug
Then re-verify the old URL returns 404 and the new one is gated. See docs/EXPERIMENT_VISIBILITY.md for the full verification procedure.