Treasure Wiki is Treasure Robotics' editable, serverless internal wiki for project knowledge. It is intentionally shaped like a classic wiki: article pages are static, blue links represent durable references, and edits happen against the source document rather than a database form.
The main page is Treasure Wiki. This page is a production smoke-test target for cross-link rendering, page history, and virtual filesystem access.
Architecture
Treasure Wiki separates the read path from the write path. Read traffic is served from static HTML and JSON assets, while authenticated writes go through a Lambda-backed API. After a write, the API rebuilds rendered pages and the static site index.
Content Model
Documents are stored as Markdown files. Cross-links use wiki-style syntax such as [[Treasure Wiki]] or [[About]], which are compiled into standard hyperlinks when the site is rendered.
Filesystem Interface
Automation clients can treat the wiki as a small virtual filesystem:
cat /about.mdreturns this raw Markdown file.ls /lists top-level Markdown files.find aboutsearches the static page index by title, summary, and path metadata.
Authentication
Authenticated browser edits reuse the shared session from auth.trsr.bot. Future programmatic edits can be made against the OpenAPI surface exposed at /openapi.json.