Search documentation

Search pages and headings in the docs.

Git Commits

Also follow the always-on rule .cursor/rules/git-commits.mdc.

Principle

We are not afraid of many commits. Each commit is a step. Reading git log should reconstruct the path that brought us here — not a single opaque dump.

When to use

  • User asks to commit, amend (only if allowed), or draft commit messages
  • Splitting a large diff into reviewable steps
  • Matching existing commit voice before opening a PR

Format

type(scope): imperative summary

Optional body: why this step matters, or what remains intentional.
PieceConvention
Typefeat fix refactor style docs test chore
ScopeMatch the area of the change. Infer from git log in the current repo.
SubjectImperative, concise, no trailing period
Body1–2 sentences of why / intent — not a file inventory

Scope examples

RepoTypical scopes
JustHoldweb, api, tokens, agents, mobile
1chooo.combio, projects, services, admin, articles

Splitting workflow

When the working tree mixes concerns:

  1. Group by one step (one UI surface, one API layer, one docs pass).
  2. Stage only that group; commit with a message that names the step.
  3. Repeat until the tree is clean.
  4. Prefer a short chain over one mega-commit.

Message checklist

  • Subject alone makes the step clear in git log --oneline
  • Body answers "why this step?" when non-obvious
  • No unrelated files in the same commit
  • Still only commit when the user explicitly asks

Anti-patterns

AvoidPrefer
update stuff / misc fixesNamed step + scope
One commit for 5 pagesOne commit per page/step
Body that lists every fileBody that states intent
Squashing away intermediate steps before PR (unless asked)Keep the narrative

Examples

Good — JustHold step chain

feat(web): add member desktop top-nav item list
feat(web): make member account menu header-ready
feat(web): add desktop top navbar to member site header
feat(web): switch member shell from sidebar to top navbar
docs(agents): document member desktop top-nav shell
refactor(web): drop Tools page desktop intro

Start with the tool cards; nav already labels the page.

Good — 1chooo.com step chain

feat(bio): restyle work history with company logos
fix(cursor): scale heatmap to the content column
chore(services): remove big money from the navbar
fix(cursor): scale /cursor heatmap to the content column

The year grid was a fixed-width HTML layout clipped by overflow-x-hidden.

Bad

chore: cleanup
refactor(web): remove headers and fix layout and update docs