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 skills add andresquirogadev/skillsense --skill gogit clone --depth 1 https://github.com/andresquirogadev/skillsenseWrote 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/andresquirogadev/skillsense/go)<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/go"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/go/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/skills/andresquirogadev/skillsense/go"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/go.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.00544 |
| Opus 5 | $0.00000 | $0.00272 |
| Sonnet 5 | $0.00000 | $0.00109 |
| Haiku 4.5 | $0.00000 | $0.00054 |
Grade A, and why
go 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 9d 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 — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Go Skill
You are working on a Go project. Apply these conventions.
Project Structure
- Follow the standard layout:
cmd/<appname>/main.go,internal/,pkg/for exported packages. - Keep
main.gothin — instantiate dependencies and call arun()function that returns an error. - Use
internal/to prevent external packages from importing implementation details.
Error Handling
- Always handle errors — never use
_for error values in production code. - Wrap errors with context:
fmt.Errorf("loading config: %w", err). - Use
errors.Is()anderrors.As()— never compare error strings. - Define sentinel errors with
var ErrNotFound = errors.New("not found"). - Return early on error (
if err != nil { return … }) — avoid nestedifpyramids.
Goroutines & Concurrency
- Always clean up goroutines; use
context.Contextfor cancellation propagation. - Use
sync.WaitGroupto wait for goroutines; use channels for communication. - Use
sync.Mutexto protect shared state; prefersync/atomicfor simple counters. - Avoid goroutine leaks — every goroutine must have a clear exit condition.
- Use
errgroup.Group(fromgolang.org/x/sync/errgroup) for parallel work with error handling.
HTTP (net/http)
- Go 1.22+
ServeMuxsupports method-specific routing:mux.HandleFunc("GET /users/{id}", handler). - Use
http.NewRequestWithContextfor all outbound HTTP requests — always pass a context with a timeout. - Define middleware as
func(http.Handler) http.Handler. - Set
ReadTimeout,WriteTimeout, andIdleTimeoutonhttp.Server.
Interfaces
- Define small, focused interfaces at the point of use (consumer side), not at the implementation.
- Accept interfaces, return concrete types.
- The
io.Reader/io.Writer/io.Closerfamily of interfaces should be used for I/O abstraction.
Testing
- Use the standard
testingpackage; prefer table-driven tests. - Use
t.Helper()in helper functions to get accurate line numbers on failures. - Use
httptest.NewServerorhttptest.NewRecorderfor HTTP handler tests. - Use
-raceflag in CI:go test -race ./....
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.
- 9d ago First seen · 51 lines · 0 tokens per session scan A 1ae4345853b5
go is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 544 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-08-31.
Other skills, from other repositories
printing-press-polish
Polish a generated CLI to pass verification and become publish-ready. Runs diagnostics (dogfood, verify, scorecard, go vet, gosec), automatically fixes all issues (verify failures, static-analysis findings, dead code, descriptions, README, MCP tool quality), reports the before/after delta, and offers to publish. Use…
printing-press
Set up a new integration, connector, or CLI binding for any API. Wrap or generate a ship-ready Go CLI from an OpenAPI, HAR, or Postman spec via the lean research -> generate -> build -> shipcheck loop. Use when the user says build a CLI, wrap this API, set up a new integration, add a connector, integrate with a…
gograph
Go repository intelligence for Claude Code. Use when reading, navigating, editing, reviewing, or refactoring a Go codebase. Exposes 64 query, analysis, and workflow capabilities through the local gograph MCP server, including bounded first-call exploration, AST-aware call graphs, blast-radius analysis, impact, and…
swiftui-view-refactor
Refactor a SwiftUI view file for consistent property ordering, MV patterns, view model handling, and Observation usage; split an oversized body via same-file computed view properties or MARK-organized extensions. Use when asked to clean up a SwiftUI view's layout, reorder its properties, or standardize…
watchos-development
Use when building or reviewing a watchOS app or WatchKit extension — app structure and independent-app configuration, Watch Connectivity / companion-app sync, complications and Smart Stack widgets, controls or Live Activities on watch, background refresh and networking limits, watchOS-specific SwiftUI design…
softdev-loop
Go software-development loop — implement, test, vet; repeat until green.