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 skills/lerianstudio/ring/detecting-goroutine-leaksnpx skills add LerianStudio/ring --skill detecting-goroutine-leaksgit clone --depth 1 https://github.com/LerianStudio/ringWrote 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/lerianstudio/ring/detecting-goroutine-leaks)<a href="https://agentmods.dev/skills/lerianstudio/ring/detecting-goroutine-leaks"><img src="https://agentmods.dev/badge/skills/lerianstudio/ring/detecting-goroutine-leaks.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.00109 | $0.01145 |
| Opus 5 | $0.00055 | $0.00573 |
| Sonnet 5 | $0.00022 | $0.00229 |
| Haiku 4.5 | $0.00011 | $0.00114 |
Grade A, and why
ring:detecting-goroutine-leaks 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.
How it starts
The opening of the file, as written. The whole thing — 153 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Goroutine Leak Testing
When to use
- Code contains goroutine patterns (go func(), go methodCall())
- After implementation or during code review
- Suspected memory leak in production
- Need to verify goroutine-heavy code doesn't leak
Skip when
- Codebase contains no goroutine usage
- Not a Go project
- Task is documentation-only, configuration-only, or non-code
- Changes do not touch any concurrent code paths
Sequence
Runs before: ring:reviewing-code Runs after: ring:implementing-tasks
Related
Complementary: ring:backend-go
Standards: WebFetch https://raw.githubusercontent.com/LerianStudio/ring/main/dev-team/docs/standards/golang/architecture.md → "Goroutine Leak Detection" section.
Step 1: Detect Goroutine Patterns
# Find goroutine patterns (excluding tests, go.mod, go.sum)
grep -rn "go func()\|go [a-zA-Z_][a-zA-Z0-9_]*\.\|go [a-zA-Z_][a-zA-Z0-9_]*(" \
--include="*.go" \
{target_path} \
| grep -v "_test.go" \
| grep -v "go.mod\|go.sum\|golang.org"
Goroutine patterns:
go func()— anonymous goroutinego methodCall(— direct callgo obj.Method(— method callfor ... := range ch— channel consumer
Exclude: go.mod/go.sum, golang.org imports, comments, string literals.
Step 2: Verify goleak Coverage
# Package-level
grep -rn "goleak.VerifyTestMain" --include="*_test.go" {target_path}
# Per-test
grep -rn "goleak.VerifyNone" --include="*_test.go" {target_path}
Requirements:
- Every package with goroutines →
goleak.VerifyTestMain(m)in TestMain - Critical goroutines →
defer goleak.VerifyNone(t)per-test
Step 3: Run goleak
go test -v ./... -run TestMain 2>&1 | grep -E "goleak|leak|goroutine|PASS|FAIL"
Leak output looks like:
goleak.go:89: found unexpected goroutines:
[Goroutine 7 in state chan receive, with myapp/internal/worker.(*Worker).run on top of the stack:]
Step 4: Dispatch Fix (if leaks found)
Task:
subagent_type: "ring:backend-go"
description: "Fix goroutine leak in {package_path}"
prompt: |
Fix goroutine leak and add goleak regression test.
Package: {package_path}
File: {file}:{line}
Leak output:
{goleak_output}
Standards: Load architecture.md via WebFetch → Goroutine Leak Detection section.
Requirements:
1. Fix leak — ensure proper shutdown (context cancellation, close channels, cancel goroutines)
2. Add goleak.VerifyTestMain(m) to TestMain in package
3. Add specific test proving no leak occurs
Pattern templates:
```go
// Worker with proper shutdown
type Worker struct { done chan struct{} }
func (w *Worker) Start(ctx context.Context) {
go func() {
for {
select {
case <-ctx.Done(): return // MUST honor context
case <-w.done: return
case item := <-w.queue: w.process(item)
}
}
}()
}
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 · 153 lines · 109 tokens per session scan A df9cb081ac3f
ring:detecting-goroutine-leaks is a skill published in the GitHub repository LerianStudio/ring (211 stars, last pushed 16d ago), licensed Apache-2.0. It adds 109 tokens to every session and 1,145 once invoked, about $0.0005 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-09-03.
Other skills, from other repositories
analytics
/analytics - Agent Usage Analytics.
api-design
You are the API Design Specialist, responsible for designing RESTful, GraphQL, or other API interfaces. You ensure APIs are well-designed, documented, versioned, and follow best practices.
clean
Use this agent to strip all AI/LLM framework artifacts before production deployment.
seo
Use this agent for SEO audits, Google Search Console analysis, technical SEO optimization, and search visibility improvement.
fixer
Auto-remediation router and retry coordinator.
orchestrate
Use this agent when you need rigorous project management following the NASAB framework principles.