clawdie-ai/html/README.md
Operator & Codex bf5db7846e docs(www): sync static landing versions and install quickstart
---
Build: pass | Tests: pass — Tests  2079 passed (2079)
2026-04-29 21:23:43 +02:00

2.2 KiB

HTML Website Sources

This directory contains the source files for Clawdie-hosted websites.

Structure

html/
├── clawdie/             # public landing for clawdie.si / www.clawdie.si
│   ├── index.html       # EN canonical
│   ├── sl/, de/, hr/,
│   │   ba/, sr/         # localized landings (Crowdin-managed)
│   ├── css/, screenshots/
│   ├── guides/          # legacy redirect bridges → docs.clawdie.si
│   ├── changelog.html, license.html, wizard.html
├── dashboard/           # legacy dashboard/static operator surfaces
├── docs-clawdie-si/     # historical static docs tree kept as bridge/fallback
└── osa/                 # https://osa.smilepowered.org
    └── index.html

Domain map

Surface Source Notes
clawdie.si / www.clawdie.si html/clawdie/ Project landing, 6 locales, hand-edited HTML.
docs.clawdie.si Astro/Starlight docs pipeline Canonical documentation surface. html/docs-clawdie-si/ is the historical static bridge.
osa.smilepowered.org html/osa/ Sister-project landing.
legacy static operator surfaces html/dashboard/ Keep only if still referenced operationally.

Deployment

Files are deployed manually to nginx webroots:

# Deploy clawdie.si / www.clawdie.si
cp -r html/clawdie/* /usr/local/www/clawdie/

# Deploy osa.smilepowered.org
cp html/osa/index.html /usr/local/www/osa/

Version sync

The version badge and status label in html/clawdie/*/index.html must match package.json. There is no automatic sync today, so each version bump should update:

  • html/clawdie/index.html
  • html/clawdie/sl/index.html
  • html/clawdie/de/index.html
  • html/clawdie/hr/index.html
  • html/clawdie/ba/index.html
  • html/clawdie/sr/index.html

The current repo version is 0.10.0.

Notes

  • Both public landings share a related CSS language (Cormorant Garamond + DM Mono).
  • html/clawdie/: dark theme (--cream: #0d1117).
  • html/osa/: light theme (--cream: #f5f0e8).
  • Translated html/clawdie/<locale>/index.html files are Crowdin-managed; direct edits there can be overwritten on the next sync. Prefer fixing EN and then round-tripping translations when possible.