Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Core developer rules and coding conventions for gh-aw changes.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | -25% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 7% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 21% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -51% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 18% | 0% |
Use this reference for gh-aw technical specs and development guidelines across code organization, validation, security, and implementation patterns.
Use this section for the detailed day-to-day command flow that was intentionally removed from AGENTS.md to keep first-run ambient context small.
Run validation in tiers — catch compile errors early, defer slow tests to the final pass only.
bash make build && make fmt
report_progress call (fast, <30s — no tests)bash make agent-report-progress-no-test
report_progress call (change-scoped, includes impacted Go tests)bash make agent-report-progress
bash make agent-finish
> Key rule: Run test-unit only before the final report_progress call, not before intermediate saves. The pre-PR targets scope formatting, linting, tests, and workflow drift checks to the branch changes.
> Timeout budget: make agent-report-progress should normally finish in under 30 seconds. Workflow source or compiler changes additionally run the full workflow drift check. Set TEST_UNIT_RUN_FULL=1 only when the full Go suite is required.
make fmtmake recompile*.cjs) changes: make fmt-cjs && make lint-cjsWhen explicitly asked to merge main:
make merge-main..go or .cjs, resolve and stage files.bash make build make recompile git commit make fmt
The gh-aw CLI follows context-based capitalization to distinguish between the product name and generic workflow references.
| Context | Format | Example | |---------|--------|---------| | Product name | Capitalized | "GitHub Agentic Workflows CLI from GitHub Next" | | Generic workflows | Lowercase | "Enable agentic workflows" | | Technical terms | Capitalized | "Compile Markdown workflows to GitHub Actions YAML" |
This convention distinguishes between the product name (GitHub Agentic Workflows) and the concept (agentic workflows), following industry standards similar to "GitHub Actions" vs. "actions".
The capitalization rules are enforced through automated tests in cmd/gh-aw/capitalization_test.go that run as part of the standard test suite.
The following sub-skills cover specific areas of the codebase. Load them lazily when the task requires the specific domain:
| Sub-skill | When to use | |-----------|-------------| | .github/skills/developer-code-organization/SKILL.md | Creating new files, refactoring, WASM stubs, file size decisions | | .github/skills/developer-security/SKILL.md | Implementing new features, reviewing for security, template injection concerns | | .github/skills/developer-internals/SKILL.md | Working on compiler internals, validation, safe outputs, MCP server, schema changes | | .github/skills/developer-release/SKILL.md | Creating a release, evaluating breaking changes, firewall log analysis |
Other measured skills in the registry, with their headline benchmark lift.