with one click
gormes-git
// Use when the user invokes gormes-git to commit every current Gormes worktree change in coherent split commits, make development green, and push only the existing development branch.
// Use when the user invokes gormes-git to commit every current Gormes worktree change in coherent split commits, make development green, and push only the existing development branch.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | gormes-git |
| description | Use when the user invokes gormes-git to commit every current Gormes worktree change in coherent split commits, make development green, and push only the existing development branch. |
gormes-git has one job: commit all dirty Gormes changes on the existing
development branch, split the commits by coherent scope, validate the branch,
and push origin development.
Do not use this skill for feature implementation, PR opening, PR merging, release tagging, branch creation, worktrees, or narrow/partial commits. If the user invokes this skill in a dirty worktree, treat that as permission to commit every tracked and untracked change after the safety scan.
Work only on the existing development branch.
git branch --show-current.development, stop before editing or staging. Switch only when it is safe and the user has not asked to preserve another branch state.git reset --hard or git checkout -- <path> unless the user explicitly asks for that exact operation.main directly.timeout is unavailable, use the command runner's own timeout mechanism.Treat the worktree as shared state.
Run:
git branch --show-current
git status --short --untracked-files=all
git diff --stat
git worktree list
If untracked files exist, scan them before staging:
git ls-files --others --exclude-standard
find <untracked-paths> -maxdepth 2 -type f -size +5M -print
Stop if a file looks like credentials, a home-directory dump, vendored dependencies, build artifacts, or accidental large binary output.
Run this before validation whenever the relevant source files changed:
go run ./cmd/progress write
node webpages/landing/scripts/sync-assets.mjs
Use go run ./cmd/progress write when docs/content/building-gormes/architecture_plan/progress.json changed. It refreshes the progress-driven docs and site progress data.
Use node webpages/landing/scripts/sync-assets.mjs when installer scripts, benchmarks.json, progress data, or site-served assets changed. It refreshes webpages/landing/public/install.* and generated site mirrors.
After either command, rerun git status --short --untracked-files=all and review the newly changed files. Do not hand-edit generated mirrors unless the generator is broken and that blocker is reported.
Run the repository green gate one command at a time with timeouts:
timeout 20m go test ./... -count=1
timeout 5m go run ./cmd/progress validate
git diff --check
Run focused public-surface gates when relevant:
timeout 20m sh -c 'cd webpages/landing/legacy/go-renderer && go test ./... -count=1'
timeout 20m sh -c 'cd webpages/landing && npm run build'
timeout 30m sh -c 'cd webpages/landing && npm run test:e2e'
timeout 30m sh -c 'cd docs/www-tests && npm run test:e2e'
Use the public-surface gates when README.md, docs/, webpages/landing/, benchmarks.json, or docs/content/building-gormes/architecture_plan/progress.json changed. If a gate fails, inspect the failing test or command output, fix the real issue in the current worktree, then rerun the failing gate and any affected higher-level gate.
Run skill validation when a skill changed:
python3 /home/xel/.codex/skills/.system/skill-creator/scripts/quick_validate.py webpages/docs/development-skills/<skill-name>
find -L .agents/skills .claude/skills .codex/skills -maxdepth 2 -name SKILL.md -print | sort
Commit all changes in coherent slices. Prefer these groups when present:
| Scope | Typical paths | Subject shape |
|---|---|---|
| Runtime/CLI behavior | cmd/, internal/, runtime tests | fix: or feat: |
| Docs, parity, skills | webpages/docs/, development skills, progress rows, generated progress docs | docs: |
| Landing/public site | assets/, webpages/landing/, landing tests | web: |
| Repository metadata | root README.md, benchmarks, install mirrors, generated site data not tied to another slice | chore: |
Keep generated files in the same commit as the source change that caused them when the relationship is clear. If a generated file spans multiple scopes, put it with the progress/docs commit unless that would leave a later commit unbuildable.
For each split commit:
git add -- <paths-for-this-slice>
git diff --cached --stat
git diff --cached --check
git diff --cached --name-status
git commit -m "<type>: <summary>"
If a commit hook changes files, review them, rerun the relevant validation, stage the hook output, and retry the commit.
After the final split commit:
git status --short --branch --untracked-files=all
The worktree must be clean before pushing.
Push only development:
git push origin development
If the push is rejected because the remote moved, run:
git fetch origin development
git merge --no-edit origin/development
Resolve any conflicts without discarding local work, rerun the green gate, then push origin development again. If the merge becomes unsafe or ambiguous, stop and report the blocker instead of forcing.
Report:
Do not claim the branch is green without command output from the relevant gates.