Borrowing it
Nothing to install: this file belongs to rios0rios0/guide. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/rios0rios0/guide/main/.github/workflows/generate-ai-rules/commands/scaffold-go-project.mdgit clone --depth 1 https://github.com/rios0rios0/guideWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/rios0rios0/guide/scaffold-go-project)<a href="https://agentmods.dev/commands/rios0rios0/guide/scaffold-go-project"><img src="https://agentmods.dev/badge/commands/rios0rios0/guide/scaffold-go-project.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01775 |
| Opus 5 | $0.00000 | $0.00888 |
| Sonnet 5 | $0.00000 | $0.00355 |
| Haiku 4.5 | $0.00000 | $0.00178 |
Grade A, and why
scaffold-go-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 274 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Scaffold a new Go backend project following Clean Architecture with domain/infrastructure separation, Dig DI, testify testing, and standard naming conventions.
For detailed Go conventions, refer to the Go rule. For architecture patterns, refer to the Architecture rule. For testing standards, refer to the Testing rule. For Makefile setup, refer to the CI/CD rule.
Directory Structure
Create the following layout:
<project>/
├── cmd/
│ └── <app>/
│ ├── main.go
│ └── dig.go
├── internal/
│ ├── container.go
│ ├── domain/
│ │ ├── commands/
│ │ │ └── container.go
│ │ ├── entities/
│ │ │ └── container.go
│ │ └── repositories/
│ └── infrastructure/
│ ├── controllers/
│ │ ├── container.go
│ │ ├── mappers/
│ │ ├── requests/
│ │ └── responses/
│ └── repositories/
│ ├── container.go
│ ├── mappers/
│ └── models/
├── test/
│ ├── domain/
│ │ ├── builders/
│ │ ├── doubles/
│ │ │ └── repositories/
│ │ └── helpers/
│ └── infrastructure/
│ └── doubles/
│ └── repositories/
├── go.mod
├── go.sum
├── Makefile
└── README.md
Step-by-Step
1. Initialize the module
mkdir <project> && cd <project>
go mod init <module-path>
2. Create the domain layer -- entities (pure, no framework tags)
// internal/domain/entities/user.go
package entities
type User struct {
ID string
Name string
Email string
}
3. Create repository contracts
// internal/domain/repositories/users_repository.go
package repositories
import "module/internal/domain/entities"
type UsersRepository interface {
FindAll() ([]entities.User, error)
FindByID(id string) (*entities.User, error)
Insert(entity *entities.User) error
}
4. Create commands (business logic)
// internal/domain/commands/list_users_command.go
package commands
import (
"module/internal/domain/entities"
"module/internal/domain/repositories"
)
type ListUsersCommand struct {
repo repositories.UsersRepository
}
func NewListUsersCommand(repo repositories.UsersRepository) *ListUsersCommand {
return &ListUsersCommand{repo: repo}
}
func (c *ListUsersCommand) Execute() ([]entities.User, error) {
return c.repo.FindAll()
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 274 lines · 0 tokens per session scan A 1d0f069349fe
scaffold-go-project is a command published in the GitHub repository rios0rios0/guide (2 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,775 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
skill-go-gin-api
Padrões DARE para APIs REST em Go + Gin (ou stdlib net/http) + sqlc + PostgreSQL. Handlers, services, repositories, middleware, validador, JWT, rate limit, swag OpenAPI.
trex.openapi.generate
Regenerate the Go client code from OpenAPI specifications. Run this after modifying any openapi/.yaml files.
golang-backend-engineer
Build scalable Golang backend systems with Google Cloud Spanner, Pub/Sub, Redis, and Elasticsearch.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.