Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/charles001-wong/autocode-flow/coding-stylegit clone --depth 1 https://github.com/charles001-wong/autocode-flowWhat 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 | $0.00000 | $0.00394 |
| Opus 5 | $0.00000 | $0.00197 |
| Sonnet 5 | $0.00000 | $0.00079 |
| Haiku 4.5 | $0.00000 | $0.00039 |
Grade A, and why
coding-style 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 2d 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.
What it actually says
Coding Standards — Go / go-zero
File Organization
- Maximum file length: 400 lines
- One primary concern per file
- Group related files in directories by feature/domain, not by type
Naming Conventions
- Files:
snake_case.go, test filessnake_case_test.go - Exported:
PascalCasefor public types, functions, constants - Unexported:
camelCasefor private identifiers - Interfaces: verb-er pattern (
Reader,Writer,Closer) - Packages: short, lowercase, singular (
user,auth,order)
Error Handling
Style: explicit returns
// ✅ Always check errors explicitly
result, err := doSomething()
if err != nil {
return fmt.Errorf("doSomething failed: %w", err)
}
// ❌ Never ignore errors
result, _ := doSomething()
Code Quality
- No commented-out code in commits
- No debug/print statements in production code
- Prefer immutable data structures where possible
- Functions should do one thing, under 50 lines
- Validate inputs at system boundaries
- Run linter before committing:
golangci-lint run
go-zero Conventions
- Follow the three-layer architecture: Handler → Logic → Model
- Never put business logic in handlers
- Use
conf.MustLoadfor configuration loading - Propagate
ctxthrough all layers - Define types in
.apifiles and generate withgoctl - Use
logxfor structured logging, notfmt.Printlnorlog - Use
sqlxfor database operations with proper error handling - Register middleware in route configuration, not inline
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.
- 2d ago First seen · 57 lines · 0 tokens per session scan A a42036e13bb0
coding-style is a cursor rule published in the GitHub repository charles001-wong/autocode-flow (2 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 394 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 cursor rules, from other repositories
postgres-best-practices
Use the pg-aiguide tools and skills when working with PostgreSQL, TimescaleDB, or Tiger Cloud databases.
go-backend-scalability
Go 后端可扩展性最佳实践,涵盖数据库管理、API 设计、性能优化、微服务、容器化等关键领域。.
go-grpc-service-rule
在 Go 中实现 gRPC 服务的具体指南。.
go
Go patterns: error wrapping, goroutines, interfaces.
go-backend
Go Backend Execution Agent.
About-me
Cursor rule "About-me" from lk19940215/claude-coder, covering 核心原则 and 沟通偏好.