developer
SolidCore developer rules and coding conventions for gh-aw changes.
Code & Development 4,819 stars
466 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)
- [Code Organization](#code-organization)
- [WASM Build-Variant Pattern](#wasm-build-variant-pattern)
- [Validation Architecture](#validation-architecture)
- [Security Best Practices](#security-best-practices)
- [Safe Output Messages](#safe-output-messages)
- [Schema Validation](#schema-validation)
- [YAML Compatibility](#yaml-compatibility)
- [MCP Logs Guardrail](#mcp-logs-guardrail)
- [Release Management](#release-management)
- [Firewall Log Parsing](#firewall-log-parsing)
- [Breaking CLI Rules](#breaking-cli-rules)
- [Go Module Summaries](#go-module-summaries)
## 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_prog...
Details
- Author
- github
- Repository
- github/gh-aw
- Created
- 11 months ago
- Last Updated
- today
- Language
- Go
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Solid
developer-guidelines
Guidelines for the Developer role: strict adherence, no unsolicited refactoring, documentation, security.
4 Updated today
MatrixFounder Code & Development Listed
coding-best-practices
Use when developing code. Universal rules for TDD, self-review, quality timing, review format, security. MANDATORY for every agent that writes, modifies, reviews, or tests code — load at task start and apply continuously.
1 Updated today
lklimek AI & Automation Listed
develop
Project conventions and recurring gotchas for implementer agents working on agent-orchestrator. Use before committing any change in orchestrator/, tests/, or docs/.
8 Updated today
geserdugarov