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 agents/jaswdr/faker/developergit clone --depth 1 https://github.com/jaswdr/fakerWhat 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.01297 |
| Opus 5 | $0.00000 | $0.00648 |
| Sonnet 5 | $0.00000 | $0.00259 |
| Haiku 4.5 | $0.00000 | $0.00130 |
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.
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:
-
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, preferuser.ID)
-
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
-
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
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.
- today First seen · 113 lines · 0 tokens per session scan A 824006e14fb1
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.
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.
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…
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.
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.
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…
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…