developer
FeaturedCore developer rules and coding conventions for gh-aw changes.
Code & Development 5,125 stars
539 forks Updated today MIT
Install
Quality Score: 90/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Developer Instructions
Use this reference for gh-aw technical specs and development guidelines across code organization, validation, security, and implementation patterns.
## Table of Contents
- [Operational Command Playbook](#operational-command-playbook)
- [Capitalization Guidelines](#capitalization-guidelines)
- [Sub-Skills](#sub-skills)
## Operational Command Playbook
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.
### Validation checkpoints
Run validation in tiers — catch compile errors early, defer slow tests to the final pass only.
1. **After each significant code edit** (fast, <5s — catch compile errors immediately)
```bash
make build && make fmt
```
2. **Before every intermediate `report_progress` call** (fast, <30s — no tests)
```bash
make agent-report-progress-no-test
```
3. **Before the FINAL `report_progress` call** (change-scoped, includes impacted Go tests)
```bash
make agent-report-progress
```
4. **Before final handoff when time allows**
```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 additio...
Details
- Author
- github
- Repository
- github/gh-aw
- Created
- 1 years ago
- Last Updated
- today
- Language
- Go
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
developer-guidelines
Guidelines for the Developer role: strict adherence, no unsolicited refactoring, documentation, security.
5 Updated today
MatrixFounder Code & Development Listed
general-programming-guidelines
v1.12.1 — Mandatory engineering workflow and coding standards for every software task: implementation, debugging, review, testing, and refactoring.
1 Updated today
mikaeltorni Code & Development Listed
coding-best-practices
This skill should be used when developing, modifying, reviewing, or testing code. It defines universal rules for TDD, self-review, quality timing, review format, and security. MANDATORY for every agent performing such work — load at task start and apply continuously.
1 Updated 3 days ago
lklimek