Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.43 KB

File metadata and controls

48 lines (32 loc) · 1.43 KB

supermodeltools.github.io — Claude Instructions

What this repo is

This is the homepage for Supermodel's open-source architecture documentation index, deployed to GitHub Pages at repos.supermodeltools.com. It lists repos that have architecture docs generated by supermodeltools/arch-docs.

Project structure

  • repos.yaml — source of truth for all listed repos (categories, names, descriptions, pills)
  • generate-index.go — Go static site generator that reads repos.yaml and produces site/index.html
  • site/ — build output directory (gitignored)
  • .github/workflows/build-index.yml — builds and deploys to GitHub Pages on push

Development

  • Language: Go 1.24
  • Build: go run generate-index.go
  • The generator uses text/template and embeds all HTML/CSS/JS inline
  • No external dependencies beyond gopkg.in/yaml.v3

Pull Requests

When asked to implement something and raise a PR, always create the PR using gh pr create:

gh pr create \
  --repo supermodeltools/supermodeltools.github.io \
  --title "..." \
  --body "..." \
  --base main \
  --head <branch>

Issues

When creating a GitHub issue, always include @claude at the end of the body so the workflow auto-triggers.

Branch naming

claude/issue-{number}-{YYYYMMDD}-{HHMM}

Commits

Keep commit messages concise and descriptive. Include:

Co-Authored-By: Claude <noreply@anthropic.com>