sgit newsroom v0.1.29 · snapshot 2026-09-24

Reading room · sgit.ai

On this page

Reading room / sgit.ai · raw text · live ↗

From sgit.ai, the page as fetched on 2026-09-24 · open the live page ↗Everything on this sheet is the source site's own text; the newsroom's chrome is outside it.

Admin & engineering, sgit.ai

How the sgit.ai site is built: a vault app with generated pages, bridge-loaded assets, a validation suite, and sgit itself as the deployment pipeline.

Source: https://sgit.ai/admin/index.html↗ · site v0.6.8 · this file is generated from the same content as the page, so the two cannot drift. Every page on this site has a .md twin; internal links below point at them.


Home↗ / Admin

Admin & engineering

How this site is built, shipped, and versioned. sgit.ai is not hosted on a web server. It is a vault app: a set of HTML pages living inside an encrypted SG/Send vault, decrypted and rendered in your browser. The site about sgit is delivered by sgit.

Architecture

# published site — one folder per section; root holds only what must live there
├── index.html · index.md                     # the front door + its markdown twin
├── CNAME · app.json · robots.txt · sitemap.xml
├── llms.txt · llms-full.txt                  # machine index; every page in one file
├── why/ · try/ · security/ · skills/ · briefs/
├── use-cases/       # patterns, each with an evidence status + agent brief
├── case-studies/    # things that actually happened, with numbers
├── docs/ · vault/ · deploy/
├── assets/          # site.css, site.js, vault-docs.js, try-setup.py
└── admin/
    ├── content/     # page bodies — one file per page, plus pages.json
    └── build/       # build_pages.py (the engine) + validate.js

Adding a page

Content and machinery are separate, so nothing in the generator grows as the site does. It was 2,709 lines with every page inlined, and is 648 now that bodies live in admin/content/. A new page is a file and a row:

# 1. write the body — just the <main>, no head, no nav, no footer
$ vim admin/content/case-studies/my-study.html
# 2. register it: { "path", "section", "title", "desc" }
$ vim admin/content/pages.json
# 3. build and check
$ python3 admin/build/build_pages.py && node admin/build/validate.js

The build then produces, for free: the page with nav and footer, its .md twin with links rewritten to markdown, its row in llms.txt, its section in llms-full.txt, its entry in sitemap.xml, and its canonical, Open Graph and JSON-LD tags. The validator refuses the build if the page is unreachable from anywhere, if a link or a markdown twin is missing, if it carries no structured data, or if it could render invisible without JavaScript.

Build system

Every page is generated from a single Python script holding one shared template (nav, footer, bootstrap, version stamp) plus per-page content. Nothing is hand-edited twice: change the template once, regenerate, and every page updates consistently, including the version badge you can see in the nav.

Validation before every push

Release process

# 1. bump SITE_VERSION (v0.1.n — n increases on every push) + add a versions row
# 2. regenerate + validate
$ python3 admin/build/build_pages.py && node admin/build/validate.js
# 3. ship — GitHub Pages deploys from the dev branch
$ git add -A && git commit -m "site vX.Y.Z: …" && git push origin dev
# 4. verify live — the release is not done until sgit.ai serves the new version
$ curl -s https://sgit.ai/index.html | grep -o 'v0\.[0-9]*\.[0-9]*' | head -1

All four steps are one script, admin/build/release.sh, which also pulls the board vault↗ first so the snapshot the release renders is current, and refuses to push until the validator, including the vault-key leak tripwire, has passed. The repository is SGit-AI/SGit-AI__Website; until v0.2.76 the same folder was also an sgit vault pushed on every release, a pattern retired and written up in one tree, two remotes↗. See release history↗.

Design & contributions

A standing brief for Claude Code sessions proposing design improvements lives at admin/brief-design-improvements.md↗, it carries the constraints (authoring contract, self-contained assets, validation suite, version bump) that any change must respect.

← Home↗Release history →↗


Site index for agents↗ · HTML version↗