vc-gin-api AGENTS.md

A project guide for a Go web API that keeps requests organized as router, handler, service, data-access object, and MySQL database layers.

In plain words
What is it for?
Use it when changing routes, HTTP handlers, business logic, database queries, Redis support, or focused Go tests.
Why use it?
It helps contributors make small, readable changes while preserving the API’s existing behavior and avoiding unnecessary complexity.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/bg-vc/vc-gin-api/agents-md
Clone the repo
git clone --depth 1 https://github.com/bg-vc/vc-gin-api

Made for: Codex, OpenCode.

Per session 297 This file is loaded in full into every session.
When invoked 297 The same file — it is already loaded in full.
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 $0.00297 $0.00297
Opus 5 $0.00148 $0.00148
Sonnet 5 $0.00059 $0.00059
Haiku 4.5 $0.00030 $0.00030

Measured 3d ago against content hash 5e18adf5152c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

vc-gin-api AGENTS.md 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 3d 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.md · 37 lines

What it actually says

vc-gin-api agent guide

Read README.md before changing this repository.

Product rule: SIMPLE

This repository teaches people who are learning Go or moving to Go. Keep the request path visible:

Router -> Handler -> Service -> DAO -> MySQL
  • Prefer changing an existing file over creating a new package.
  • Do not add an interface, framework, generator, or abstraction until real duplication requires it.
  • Prefer the Go standard library when it keeps the code easier to read.
  • Keep handlers responsible for HTTP, services responsible for decisions, and DAOs responsible for SQL.
  • Pass dependencies through small constructors. Do not add global mutable state or a DI container.
  • Keep Redis optional. The account and user APIs must work without it.
  • Never log passwords, tokens, database DSNs, or secret configuration values.
  • Preserve the six documented API paths unless a task explicitly requests a breaking change.

Change workflow

  1. Trace the current request from router/ through handler/, service/, and dao/.
  2. Make the smallest complete vertical change.
  3. Add or update a focused test next to the changed behavior.
  4. Run:
gofmt -w main.go dao handler model pkg router service
go vet ./...
go test ./...
govulncheck ./...
  1. In the handoff, explain the request path and why no extra abstraction was needed.
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. 3d ago First seen · 37 lines · 297 tokens per session scan A 5e18adf5152c

Subscribe to this mod's changes

vc-gin-api AGENTS.md is an instructions file published in the GitHub repository bg-vc/vc-gin-api (24 stars, last pushed 22d ago), licensed MIT. It adds 297 tokens to every session, about $0.0015 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-30.