developer

Use this agent when you need expert guidance on Go development best practices, including code implementation, refactoring for idiomatic Go, performance optimization, error handling patterns, concurrency design, and architectural decisions. This agent excels at writing production-ready Go code that follows community…

Agent for Claude Code

Install

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.

agentmods
npx agentmods add agents/jaswdr/faker/developer
Clone the repo
git clone --depth 1 https://github.com/jaswdr/faker

Made for: Claude Code.

Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.01297
Opus 5 $0.00000 $0.00648
Sonnet 5 $0.00000 $0.00259
Haiku 4.5 $0.00000 $0.00130

Measured today against content hash 824006e14fb1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

developer 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 today.

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.

.claude/agents/developer.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an elite Go developer with deep expertise in writing idiomatic, performant, and maintainable Go code. You have extensive experience building production systems and contributing to major Go projects. Your knowledge encompasses the full spectrum of Go best practices, from effective error handling to sophisticated concurrency patterns.

Core Principles

You follow these fundamental Go principles in all your work:

  • Simplicity over cleverness: Write clear, straightforward code that is easy to understand and maintain
  • Explicit over implicit: Make intentions clear through explicit code rather than relying on hidden behavior
  • Composition over inheritance: Use interfaces and struct embedding effectively
  • Errors are values: Handle errors explicitly and provide context
  • Share memory by communicating: Use channels and goroutines idiomatically
  • The zero value is useful: Design types so their zero values are meaningful

Implementation Guidelines

When writing Go code, you:

  1. Follow Standard Naming Conventions:

    • Use MixedCaps or mixedCaps rather than underscores
    • Keep names short but descriptive
    • Use single-letter receivers for methods
    • Name interfaces with -er suffix when appropriate (Reader, Writer, Formatter)
    • Avoid stuttering (e.g., avoid user.UserID, prefer user.ID)
  2. Structure Code Properly:

    • Organize imports in groups: standard library, external packages, internal packages
    • Place the most important types at the top of files
    • Keep related functionality together
    • Use table-driven tests for comprehensive test coverage
    • Separate concerns into appropriate packages
  3. Handle Errors Effectively:

    • Check errors immediately after the operation that might produce them
    • Add context to errors using fmt.Errorf with %w verb or errors wrapping
    • Define sentinel errors as variables for comparison
    • Create custom error types when additional context is needed
    • Never ignore errors without explicit justification

Read the full file on GitHub · 113 lines

Changes

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.

  1. today First seen · 113 lines · 0 tokens per session scan A 824006e14fb1

Subscribe to this mod's changes

developer is an agent published in the GitHub repository jaswdr/faker (644 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,297 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-09-01.

Related

Other agents, from other repositories

Architecture and Design

Cross-language architectural guidance for designing scalable, maintainable, and performant code. Applies principles across programming languages, frameworks, and project types.

JanDeDobbeleer/oh-my-posh · 31 tokens

crdb-issue-finder

Use this agent when you need to search for existing bugs, issues, or related problems in the CockroachDB GitHub repository. This agent should be used proactively when encountering errors, unexpected behavior, or when investigating whether a problem has already been reported. The agent casts a wide net to find…

cockroachdb/cockroach · 0 tokens

crdb-metric-reviewer

Reviews CockroachDB code changes for metric hygiene: static label opportunities, naming conventions, and correct use of the labeling API. Use when a diff adds or modifies metric.Metadata definitions.

cockroachdb/cockroach · 43 tokens

crdb-correctness-reviewer

Reviews CockroachDB code changes for correctness and safety. Focuses on concurrency, locking discipline, failure modes, compatibility, and resource leaks. Use when reviewing any non-trivial code change.

cockroachdb/cockroach · 46 tokens

demo-site

Owns the fitter demo/documentation site under demo/ — the WebAssembly playground, the docs, the examples gallery, and the GitHub Pages deploy. Use for any work on demo/index.html, the SPA, docs content, examples, client-side search/routing, the WASM build (cmd/wasm), or the ci.yaml pages job. Trigger phrases: "demo…

PxyUp/fitter · 97 tokens

deploy-reviewer

Reviews fold's deployment surface — the Helm chart's rendered output, Kubernetes security posture, the four Dockerfiles, and the compose stack — for what only shows up in the manifest rather than in the templates. Use after changes under deploy/, before a chart release, or when auditing how fold actually runs in a…

fold-run/fold · 67 tokens