This directory contains all documentation for the SheetAtlas project, organized by purpose and audience.
GitHub Pages website - Public-facing project website
- URL: https://ghostintheshell-192.github.io/sheet-atlas/
- Contents: Landing page, downloads, features, screenshots
- Deployment: Automatic via GitHub Actions on push to
mainbranch - Workflow:
.github/workflows/deploy-pages.yml
Files:
index.html- Main landing page (generated fromindex.html.template)index.html.template- Template with version placeholdersstyles/- CSS stylesheetsimages/- Screenshots and visual assetsscripts/- JavaScript for website interactivity
Developer documentation - Technical reference for contributors
- Audience: Developers, contributors, code reviewers
- Contents: Architecture specs, development guides, quick start
- Entry point: project/README.md
Files:
README.md- Developer hub (setup, build, test)ARCHITECTURE.md- Architecture overview with Mermaid diagramstechnical-specs.md- Performance, security, config specifications
- Edit template:
docs/website/index.html.template - Commit and push to
mainbranch - GitHub Actions regenerates
index.htmlwith current version - Website automatically deploys to GitHub Pages
Template placeholders:
${VERSION}- Full version (e.g.,v0.3.3)${VERSION_NUMBER}- Version number (e.g.,0.3.3)${RELEASE_DATE}- Release date${ALPHA_BANNER}- Warning banner for pre-release versions
- Edit files in
docs/project/ - Commit and push normally
- Documentation visible on GitHub repository
The release pipeline (.github/workflows/release.yml) automatically:
- Generates
index.htmlfrom template with current version - Commits updated website to
mainbranch - Triggers GitHub Pages deployment
See RELEASE_PROCESS.md for complete release workflow.
- Language: All documentation in English
- Format: Markdown for text, YAML for data
- Updates: Keep "Last Updated" dates current
- Links: Use relative paths for internal docs
Located in repository root:
- README.md - Main project overview and user guide
- CLAUDE.md - Development standards and conventions
- CHANGELOG.md - Version history (auto-generated)
- RELEASE_PROCESS.md - Release workflow documentation
October 2025 Reorganization:
- Separated website (
docs/website/) from developer docs - Introduced template-based website generation
- Removed business strategy docs (moved to
.personal/) - Eliminated duplicate files (
overview.md,roadmap.md)
November 2025 Cleanup:
- Consolidated overlapping README files
- Updated all references to reflect current structure
- Removed broken links to deleted files
Last Updated: January 2026