Contributing to Gas City
Description
Gas City is experimental software, but the repo is now structured for external contributors. Before making changes, read: - [docs/index.mdx](docs/index.mdx) - [engdocs/contributors/index.md](engdocs/c
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
Repository README
This is the README for gastownhall/gascity, shared by 3 entries
in this directory. It describes the repository, not this entry specifically.
Contributing to Gas City
Gas City is experimental software, but the repo is now structured for external contributors. Before making changes, read:
- docs/index.mdx
- engdocs/contributors/index.md
- engdocs/contributors/codebase-map.md
- engdocs/architecture/index.md
- TESTING.md
Getting Started
- Fork the repository.
- Clone your fork.
- Install prerequisites from docs/getting-started/installation.md.
- Set up tooling and hooks:
make setup - Build and run the fast quality gates:
make build && make check
Development Workflow
We use a direct-to-main workflow for trusted contributors. External contributors should:
- Create a feature branch from
main - Make the change
- Run
make check - Run
make check-docsif you touched docs, navigation, or cross-links - Open a pull request
Branch Naming
Never open a PR from your fork's `main` branch. Use a dedicated branch per PR:
git checkout -b fix/session-startup upstream/main
git checkout -b docs/mintlify-nav upstream/main
Suggested prefixes:
fix/*feat/*refactor/*docs/*
Code Style
- Follow standard Go conventions
- Keep functions focused and small
- Add tests for behavior changes
- Add comments only when the logic is not self-evident
Design Philosophy
Gas City follows two project-level principles that should shape changes:
Zero Framework Cognition
Go handles transport, not reasoning. If the behavior belongs in the model or prompt, do not encode it as framework intelligence in Go.
Bitter Lesson Alignment
Prefer durable infrastructure, observability, and composition over brittle heuristics that a stronger model should eventually handle better.
For the capability boundary, use the [Primitive Test](engdocs/contributors/primitive-test.md).
Docs Workflow
The docs tree is now Mintlify-based.
- Config lives in
docs/docs.json - Preview locally with
cd docs && npx --yes mint@latest dev - Run docs checks with
make check-docs
When updating docs:
- Architecture docs describe current behavior
- Design docs describe proposed behavior
- Archive docs keep historical notes out of the main onboarding path
Make Targets
Run `make help` for the full list. The most useful targets are:
| Command | What it does |
|---|---|
make setup |
Install local tools and git hooks |
make build |
Build gc with version metadata |
make install |
Install gc into $(go env GOPATH)/bin |
make check |
Fast Go quality gates |
make check-docs |
Docs sync tests plus Mintlify broken-link checks |
make check-all |
Extended quality gates including integration tests |
make test |
Unit and repo-level Go tests |
make test-integration |
Integration tests |
make cover |
Coverage run |
macOS Release Verification
Before tagging
Related Agents
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
Development src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11
Development Cavecrew Builder
>
Development Cavecrew Investigator
>
Development Cavecrew Reviewer
>
Development Gitnexus Branch Hygiene Reviewer
GitNexus branch hygiene and mergeability reviewer. Use to classify merge state, conflicts, stale branches, mer
Development