Architect Site

Two views into the AgentCanvas architect pipelines.

This site has two parts. The reference side is hand-written: curated algorithm visualizations, paper notes, and the files-contract reader's guide. The mirror side is auto-generated from .claude/commands/architect/ — every skill markdown rendered to HTML, one page per file, rebuildable with one command. Pick whichever fits what you're after.

reference/

hand-written

Algorithm visualizations and curated explanations. Stable; edited by hand.

mirror/

auto-generated

1:1 HTML rendering of every skill markdown under .claude/commands/architect/. Rebuilt by build_mirror.py.

Rebuilding the mirror

cd /path/to/vlnworkspace
python docs/pages/aas/build_mirror.py
# clears docs/pages/aas/mirror/ and rebuilds 50 pages from
# .claude/commands/architect/**/*.md
# (also re-runs docs/_lib/_aas_nav.py to keep the cross-site nav)

Requires the markdown Python package (pip install markdown). The script is dependency-light beyond that — pure stdlib + markdown.

Viewing locally

# Recommended: serve as part of the docs/ dev server
bash docs/run_dev.sh
# then visit http://127.0.0.1:8092/aas/index.html
# (use the top "AAS" tab from any docs page to land here)

# Or open this file directly (cross-site links still resolve)
xdg-open docs/pages/aas/index.html