AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Go Turbo Review

skill-hendriknielaender-go-turbo-go-turbo-review · by hendriknielaender

>

No reviews yet
0 installs
26 views
0.0% view→install

Install

$ agentstack add skill-hendriknielaender-go-turbo-go-turbo-review

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-hendriknielaender-go-turbo-go-turbo-review)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Go Turbo Review? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

go-turbo-review

Review the diff for performance. One line per finding: location, what's wrong, what replaces it. The best outcome is no actionable performance regression and no speculative complexity.

Two directions matter equally here. Reviewers reliably catch the added allocation; they reliably miss the sync.Pool added to a cold path, which costs a lifetime bug and buys nothing. Flag both.

Format

L: . . — or :L: for multi-file diffs.

Tags:

  • alloc: avoidable allocation on a path that looks hot. Name the fix.
  • escape: value pushed to the heap by code shape. Name the restructure.
  • algo: complexity that will not hold at scale — nested scan, repeated

sort, linear lookup in a loop.

  • sync: unbounded goroutines, contention, over-wide critical section,

serialization through a channel.

  • io: per-item syscall, query, or round trip that should be batched or

buffered.

  • net: undrained response body, missing timeout, transport misconfiguration,

per-request client construction.

  • leak: goroutine or memory retention — no exit path, unbounded queue,

retained sub-slice of a large buffer.

  • premature: optimization with no evidence, costing readability or safety

for an unmeasured win. Replacement: the simpler code.

  • layout: struct padding or false sharing worth fixing at this volume.

Examples

Not this:

> "Have you considered whether this slice could be preallocated? It might > improve performance under certain conditions."

This:

  • L34: alloc: append into nil slice, len(rows) known. make([]Result, 0, len(rows)).
  • L12: escape: measured constructor allocation comes from returning *Point; identity and nil are unused. Return Point by value and remeasure.
  • L88: algo: linear scan of routes inside the request loop, O(n·m). Build the map once at startup.
  • L51: sync: goroutine per message, unbounded. Use errgroup.SetLimit with a bound derived from the CPU or dependency budget.
  • L23: io: db.Exec per row inside the loop. Batch with CopyIn or a multi-value insert.
  • L67: net: this bounded HTTP/1 body is not consumed to EOF before Close, so reuse may be lost. Consume it or deliberately forgo reuse.
  • `L102: leak: queue allocs/op on the hot path, - round trips per request.

Quantify only what measured evidence can defend. If the diff is clean:
`No actionable performance finding.`

## Boundaries

Performance only. Correctness bugs, security issues, and style go to a normal
review pass — mention them in one line if severe and move on, but don't take
them over. Lists findings, applies nothing. One-shot.

For a whole repository rather than a diff, use `$go-turbo-audit`. To apply
the fixes, `$go-turbo-improve`.
Task-scoped.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [hendriknielaender](https://github.com/hendriknielaender)
- **Source:** [hendriknielaender/go-turbo](https://github.com/hendriknielaender/go-turbo)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.