Go development workflow including verification commands and self-review checklist. Use when modifying Go code in internal/, pkg/, or cmd/ directories.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: go-development description: Go development workflow including verification commands and self-review checklist. Use when modifying Go code in internal/, pkg/, or cmd/ directories.
Go Development Workflow
Workflow for Go code changes in this repository.
Prerequisites
- Use
git-workflowSkill for branch management, commit conventions, and PR creation. - Refer to
.claude/rules/go.mdfor detailed verification commands and coding rules (SSOT).
Applicable Directories
| Directory | Description |
|---|---|
internal/ | Core application code (Clean Architecture) |
pkg/ | Reusable shared packages |
cmd/ | Application entry points |
Workflow
1. Make Changes
Edit Go files following the rules in .claude/rules/go.md.
2. Verify (from rules/go.md)
make go-lint && make tidy && make check-build && make gotest
3. Self-Review Checklist
- Domain layer has ZERO infrastructure dependencies
- Error handling uses
fmt.Errorf("context: %w", err) - No private keys or sensitive data logged
- Auto-generated files not edited
Database Changes
If modifying database schema, use db-migration skill.
Related
.claude/rules/go.md- Go rules (SSOT)git-workflow- Branch, commit, PR workflowdb-migration- Database schema workflow
More by hiromaily
View allTypeScript/JavaScript development workflow for apps/ directory. Use when modifying TypeScript code in ripple-lib-server or JavaScript in erc20-token.
CI/CD and DevOps workflow. Use when modifying GitHub Actions, Docker configurations, or compose files.
Shell script development workflow. Use when modifying files in scripts/ directory or any *.sh files.
Create GitHub issues with proper task classification. Classification determines which Skills will be used when working on the issue.
