Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/DVNghiem/FlowDecknpx agentmods add skills/dvnghiem/flowdeck/golang-patternsWrote 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/skills/dvnghiem/flowdeck/golang-patterns)<a href="https://agentmods.dev/skills/dvnghiem/flowdeck/golang-patterns"><img src="https://agentmods.dev/badge/skills/dvnghiem/flowdeck/golang-patterns.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.00034 | $0.02628 |
| Opus 5 | $0.00017 | $0.01314 |
| Sonnet 5 | $0.00007 | $0.00526 |
| Haiku 4.5 | $0.00003 | $0.00263 |
Grade A, and why
golang-patterns 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 6d 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 — 512 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Go Patterns Skill
Idiomatic Go for production systems. Focuses on simplicity, explicitness, and composition.
When to Activate
Activate when:
- Writing new Go packages or services
- Reviewing Go code for idiom and correctness
- Designing concurrent processing pipelines
- Debugging goroutine leaks or race conditions
- Setting up module structure or build configuration
Error Handling
Go errors are values. Handle them at the point where you have enough context to act.
Wrapping and Unwrapping
import "errors"
import "fmt"
// Wrap with %w to preserve the chain
func loadConfig(path string) (*Config, error) {
data, err := os.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("loadConfig %q: %w", path, err)
}
// ...
}
// Inspect with errors.Is (sentinel) and errors.As (type)
var ErrNotFound = errors.New("not found")
if err := loadConfig("app.yaml"); err != nil {
if errors.Is(err, os.ErrNotExist) {
// file missing
}
var pathErr *os.PathError
if errors.As(err, &pathErr) {
log.Printf("path problem: %s", pathErr.Path)
}
}
Sentinel Errors
// Define at package level, exported when callers need to check
var (
ErrNotFound = errors.New("not found")
ErrPermission = errors.New("permission denied")
)
// Prefer typed errors when you need to attach data
type ValidationError struct {
Field string
Message string
}
func (e *ValidationError) Error() string {
return fmt.Sprintf("validation: %s %s", e.Field, e.Message)
}
Error String Conventions
// ✅ lowercase, no trailing punctuation
errors.New("connection refused")
fmt.Errorf("user %d not found", id)
// ❌ uppercase or punctuation
errors.New("Connection refused.")
Interface Design
Keep interfaces small. A one-method interface is a feature, not a limitation.
The io.Reader / io.Writer Pattern
// Standard library interfaces — use them where they fit
type Reader interface {
Read(p []byte) (n int, err error)
}
type Writer interface {
Write(p []byte) (n int, err error)
}
// Compose for more complex contracts
type ReadWriter interface {
Reader
Writer
}
// Accept interfaces, return concrete types
func Process(r io.Reader) ([]byte, error) {
return io.ReadAll(r)
}
// os.File, bytes.Buffer, http.Response.Body all satisfy io.Reader
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.
- 6d ago First seen · 512 lines · 34 tokens per session scan A b4c097b77739
golang-patterns is a skill published in the GitHub repository DVNghiem/FlowDeck (24 stars, last pushed 17d ago), licensed MIT. It adds 34 tokens to every session and 2,628 once invoked, about $0.0002 per session on Opus 5. 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-30.
Other skills, from other repositories
python-package-management
Guide for managing packages in the Agent Framework Python monorepo, including creating new connector packages, versioning, and the lazy-loading pattern. Use this when adding, modifying, or releasing packages.
build-and-test
How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.
python-feature-lifecycle
Guidance for package and feature lifecycle in the Agent Framework Python codebase, including stage meanings, feature-stage decorators, feature enums, and how to move APIs from one stage to the next.
python-testing
Guidelines for writing and running tests in the Agent Framework Python codebase. Use this when creating, modifying, or running tests.
python-code-quality
Code quality checks, linting, formatting, and type checking commands for the Agent Framework Python codebase. Use this when running checks, fixing lint errors, or troubleshooting CI failures.
python-development
Coding standards, conventions, and patterns for developing Python code in the Agent Framework repository. Use this when writing or modifying Python source files in the python/ directory.