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.
git clone --depth 1 https://github.com/hiromaily/go-crypto-walletWrote 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/rules/hiromaily/go-crypto-wallet/di)<a href="https://agentmods.dev/rules/hiromaily/go-crypto-wallet/di"><img src="https://agentmods.dev/badge/rules/hiromaily/go-crypto-wallet/di/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/rules/hiromaily/go-crypto-wallet/di"><img src="https://agentmods.dev/badge/rules/hiromaily/go-crypto-wallet/di.svg" alt="Reviewed on agentmods" width="80" 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.01472 |
| Opus 5 | $0.00000 | $0.00736 |
| Sonnet 5 | $0.00000 | $0.00294 |
| Haiku 4.5 | $0.00000 | $0.00147 |
Grade A, and why
di 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 — 231 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Dependency Injection
Overview
Rules for the Dependency Injection (DI) layer in go-crypto-wallet. The DI layer is responsible for wiring all dependencies and should follow Clean Architecture principles.
Applicable Files
internal/di/container.go- Application DI containerpkg/di/container.go- Infrastructure/pkg DI container
Core Principles
1. Pure Constructor Pattern (Mandatory)
Constructors must be pure assembly functions. They only:
- Receive dependencies as parameters
- Assign parameters to struct fields
- Return the constructed instance
DO NOT create internal objects within constructors:
// ✅ GOOD: Pure constructor - just assembles the struct
func NewCreateTransactionUseCase(
btcClient apibtc.Bitcoiner,
dbConn *sql.DB,
addrRepo repowatch.AddressRepositorier,
txRepo repowatch.BTCTxRepositorier,
) watchusecase.CreateTransactionUseCase {
return &createTransactionUseCase{
btcClient: btcClient,
dbConn: dbConn,
addrRepo: addrRepo,
txRepo: txRepo,
}
}
// ❌ BAD: Constructor creates internal dependencies
func NewCreateTransactionUseCase(
conf *config.Config,
) watchusecase.CreateTransactionUseCase {
// DON'T create dependencies inside constructor
btcClient := bitcoin.NewBitcoin(conf)
dbConn := mysql.NewConnection(conf.Database)
return &createTransactionUseCase{
btcClient: btcClient,
dbConn: dbConn,
}
}
2. No Factory Pattern for Domain/Application Objects
Factory patterns add unnecessary indirection. Use direct constructor calls instead:
// ✅ GOOD: Direct constructor call
useCase := keygenusecasebtc.NewImportPrivateKeyUseCase(
btcClient,
accountKeyRepo,
)
// ❌ BAD: Factory pattern
factory := usecaseFactory.New()
useCase := factory.CreateImportPrivateKeyUseCase()
Exception: Factory pattern is acceptable only for infrastructure components that require runtime type selection (e.g., key generators based on address type).
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 · 231 lines · 0 tokens per session scan A 4f35162de105
di is a cursor rule published in the GitHub repository hiromaily/go-crypto-wallet (127 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,472 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-03.