B
SCORE 75 / 100
$skillox install go-concurrencySoon
Sign in to followFollowing emails you when a re-scan drops the grade. Opt-out is per-creator on /account/billing.
Why grade B?
score · 75 / 100The current grade reflects 5 medium findings (3+ MEDs → B).
0 CRIT0 HIGH5 MED0 LOW
To reach a higher grade
- AReach Atarget score 95
Resolve 3 of 5 MED (cap is 2).
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Latest scan findings
Scan crawl-ls7a201yd82kaj5u4t4n7h08 · Thu, 28 May 2026 17:25:40 GMT · 4ms
medNo capability manifest declaredThe skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.rule: no-manifest▾
No capability manifest declared
The skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.
rule:
no-manifestmedLink text shows "go.uber.org" but points at pkg.go.devThe visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.▾
Link text shows "go.uber.org" but points at pkg.go.dev
The visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.
45```
46
47**Test for leaks** with [go.uber.org/goleak](https://pkg.go.dev/go.uber.org/goleak).← text→go.uber.org · href→pkg.go.dev
48
49> **Principle**: Never start a goroutine without knowing how it will stop.
medLink text shows "go.uber.org" but points at pkg.go.devThe visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.▾
Link text shows "go.uber.org" but points at pkg.go.dev
The visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.
144
145Use `atomic.Bool`, `atomic.Int64`, etc. (stdlib `sync/atomic` since Go 1.19, or
146[go.uber.org/atomic](https://pkg.go.dev/go.uber.org/atomic)) for type-safe← text→go.uber.org · href→pkg.go.dev
147atomic operations. Raw `int32`/`int64` fields make it easy to forget atomic
148access on some code paths.
medLink text shows "go.uber.org" but points at pkg.go.devThe visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.▾
Link text shows "go.uber.org" but points at pkg.go.dev
The visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.
218 (GopherCon 2018)
219- [When Go programs end](https://changelog.com/gotime/165) — Go Time podcast
220- [go.uber.org/goleak](https://pkg.go.dev/go.uber.org/goleak) — Goroutine leak← text→go.uber.org · href→pkg.go.dev
221 detector for testing
222- [go.uber.org/atomic](https://pkg.go.dev/go.uber.org/atomic) — Type-safe
medLink text shows "go.uber.org" but points at pkg.go.devThe visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.▾
Link text shows "go.uber.org" but points at pkg.go.dev
The visible link text contains the domain `go.uber.org`, but the URL actually targets `pkg.go.dev`. This is a phishing/smuggling pattern — the reader sees one host, the agent fetches another. Either update the text or the URL so they match.
220- [go.uber.org/goleak](https://pkg.go.dev/go.uber.org/goleak) — Goroutine leak
221 detector for testing
222- [go.uber.org/atomic](https://pkg.go.dev/go.uber.org/atomic) — Type-safe← text→go.uber.org · href→pkg.go.dev
223 atomic operations
224
skillox.io/c/go-concurrency