swag2mcp: Skill for Claude Code

.agents/skills/godeveloper/SKILL.md

godeveloper is a skill for Claude Code, Codex from mmadfox/swag2mcp. It costs 63 tokens per session (9,208 once invoked), scanned A, original, Apache-2.0.

A set of Go development guidelines for the swag2mcp project. Go is a programming language, and the guide covers how to name, organize, test, and structure Go code.

In plain words
What is it for?
Use it when creating or reviewing Go packages, services, tests, interfaces, concurrent code, configuration, or project layouts for swag2mcp.
Why use it?
It gives consistent rules for writing or reviewing the project's code, including error handling, interfaces, concurrency, configuration, and package structure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is mmadfox/swag2mcp's own configuration. It tells Claude Code and Codex how to work on swag2mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything swag2mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to mmadfox/swag2mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/mmadfox/swag2mcp/main/.agents/skills/godeveloper/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mmadfox/swag2mcp

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for godeveloper

README.md
[![agentmods](https://agentmods.dev/badge/skills/mmadfox/swag2mcp/godeveloper.svg)](https://agentmods.dev/skills/mmadfox/swag2mcp/godeveloper)
Your own site
<a href="https://agentmods.dev/skills/mmadfox/swag2mcp/godeveloper"><img src="https://agentmods.dev/badge/skills/mmadfox/swag2mcp/godeveloper.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,208 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00063 $0.09208
Opus 5 $0.00032 $0.04604
Sonnet 5 $0.00013 $0.01842
Haiku 4.5 $0.00006 $0.00921

Measured 5d ago against content hash 4c90f9c12e16, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

godeveloper 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 5d 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.

.agents/skills/godeveloper/SKILL.md · 1,042 lines

How it starts

The opening of the file, as written. The whole thing — 1,042 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Go Code Generation Skill — swag2mcp

This document defines how to write Go code for the swag2mcp project. It synthesizes the Uber Go Style Guide, Go Code Review Comments, Go Names, and Effective Go, adapted to this project's conventions.


1. Naming Conventions

1.1 General Rules

  • MixedCase — never use underscores in names (ServeHTTP, not Serve_HTTP; maxLength, not max_length).
  • Acronyms/Initialisms — keep consistent case: ServeHTTP, IDProcessor, urlPony, appID. Never ServeHttp, UrlPony, AppId. Exception: generated protobuf code.
  • Distance rule — the further a name is from its declaration, the more descriptive it must be. Local variables with small scope get short names; exported package-level names get descriptive names.

1.2 Packages

  • Short, lowercase, single-word names: auth, cache, config, index, spec, types.
  • No underscores or mixed caps.
  • Avoid meaningless names: util, common, misc, api, types, interfaces.
  • Package name must match the last component of its import path.
  • Package name should lend meaning to the names it exports. auth.Basic not auth.BasicAuth.

1.3 Files

  • Lowercase with underscores for compound names: oauth2_cc.go, api_key.go, parse_v3.go.
  • Test files: *_test.go suffix.
  • Generated files: mock_*_test.go prefix (e.g., mock_svc_test.go).
  • doc.go for package documentation.
  • When a file contains helpers or sub-types used exclusively by one other file, prefix the filename with the owner's name: invoke_param_validator.go, invoke_response_writer.go, bootstrap_config_loader.go. This makes ownership obvious without needing package-level comments.

1.4 Types and Structs

  • PascalCase for exported types: LLMError, InvokeRequest, EndpointSearchItem.
  • camelCase for unexported types.
  • Error types: PascalCase with Error suffix: LLMError, ValidationError.

Read the full file on GitHub · 1,042 lines

Changes

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.

  1. 5d ago First seen · 1,042 lines · 63 tokens per session scan A 4c90f9c12e16

Subscribe to this mod's changes

godeveloper is a skill published in the GitHub repository mmadfox/swag2mcp (0 stars, last pushed 25d ago), licensed Apache-2.0. It adds 63 tokens to every session and 9,208 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

goai

GoAI is a Go SDK for AI applications. One unified API across 25+ LLM providers. Inspired by the Vercel AI SDK, adapted to Go idioms (generics, interfaces, channels).

zendev-sh/goai · 0 tokens

wasm

WebAssembly (WASM) integration, WASI, component model, Rust/Go to WASM compilation. Use when implementing WASM modules, browser/edge compute, or polyglot runtime.

TheBeardedBearSAS/claude-craft · 43 tokens

go-ops

Go development patterns, concurrency, error handling, testing, and project structure. Use for: golang, go, goroutine, channel, context, errgroup, go test, go mod, go build, interface, generics, table-driven tests, worker pool, sync.Mutex, sync.WaitGroup, pprof, go vet, golangci-lint, go workspace, functional options…

0xDarkMatter/claude-mods · 89 tokens

building-glamorous-tuis

Build terminal UIs with Charmbracelet (Bubble Tea, Lip Gloss, Gum). Use when: Go TUI, shell prompts/spinners, "make CLI prettier", adaptive layouts, async rendering, focus state machines, sparklines, heatmaps, kanban boards, SSH apps.

nikships/skills-registry · 65 tokens

code-review-go

Deep Go-specific code review covering goroutine lifecycle, data races, error wrapping, domain modeling, and interface design. Applied in addition to the generic code-review skill when Go code is detected. Invoked when reviewing Go PRs, Go code changes, or performing Go-specific quality checks.

soulcodex/agentic · 61 tokens

go-code-review

Use when reviewing Go code for performance, concurrency safety, security vulnerabilities, or readability issues.

unix2dos/skills · 21 tokens