new-api

new-api is a skill for Claude Code from iceymoss/go-hichat-api. It costs 30 tokens per session (631 once invoked), scanned A, original, Apache-2.0.

A workflow for adding a new HTTP endpoint to an existing Go service built with go-zero, a Go web framework. It updates the service definition, generates code, and guides the business logic and tests.

In plain words
What is it for?
Use it when adding an API route, request or response fields, authentication requirements, or logic that calls another service through RPC.
Why use it?
It provides the project-specific steps needed to keep routes, generated code, logic, errors, documentation, and tests in sync.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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 skills/iceymoss/go-hichat-api/new-api
Any agent
npx skills add iceymoss/go-hichat-api --skill new-api
Clone the repo
git clone --depth 1 https://github.com/iceymoss/go-hichat-api

Made for: Claude Code.

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 new-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/iceymoss/go-hichat-api/new-api.svg)](https://agentmods.dev/skills/iceymoss/go-hichat-api/new-api)
Your own site
<a href="https://agentmods.dev/skills/iceymoss/go-hichat-api/new-api"><img src="https://agentmods.dev/badge/skills/iceymoss/go-hichat-api/new-api.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 631 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00030 $0.00631
Opus 5 $0.00015 $0.00316
Sonnet 5 $0.00006 $0.00126
Haiku 4.5 $0.00003 $0.00063

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

Security

Grade A, and why

new-api scanned grade A with 1 finding 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 6d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- 手工:`go run apps/<svc>/api/<svc>.go -f apps/<svc>/api/etc/<svc>-sample.yaml`,再 curl
.claude/skills/new-api/SKILL.md · 56 lines

What it actually says

apps/<svc>/api 里新增一个 HTTP 接口,使用 goctl 重新生成。

步骤

1. 确认输入

  • 哪个服务(apps/ 下选一个)
  • 路径与方法(如 POST /v1/im/conversation/mute
  • 是否需要 JWT
  • 请求 / 响应字段
  • 业务逻辑要不要调用某个 RPC(如果要,确认对应 xxxclient 已经注入到 svc.ServiceContext

2. 修改 .api

编辑 apps/<svc>/api/<svc>.api

  • type (...) 块里加 XxxReq / XxxResp —— 可选字段加 optional,可选标量在 Go 端用指针 + omitempty
  • 在对应 @server 块下加路由:
@doc "中文描述"
@handler xxxHandler
post /v1/<svc>/path (XxxReq) returns (XxxResp)

3. 重新生成代码

goctl api go -api apps/<svc>/api/<svc>.api -dir apps/<svc>/api -style gozero

goctl 只会生成缺失的 handler/logic 骨架,不会覆盖你已有的实现。生成完检查 internal/handler/routes.go 已加路由。

4. 写 logic

apps/<svc>/api/internal/logic/<xxx>logic.go 写业务:

  • 调用 RPC:l.svcCtx.UserRpc.GetUser(l.ctx, &user.GetUserReq{...})
  • 错误用 pkg/xerr 封装,不要返回原始 error 给客户端
  • JSON 序列化用 common.Marshal/Unmarshalgo-backend.md

5. 测试

  • 单元测试:在 internal/logic/<xxx>logic_test.go 写 table-driven 测试
  • 手工:go run apps/<svc>/api/<svc>.go -f apps/<svc>/api/etc/<svc>-sample.yaml,再 curl

6. 同步文档

/sync-api-docs 更新 docs/api.md

严格约束

  • .api必须重跑 goctl,不要手写 handler
  • 业务在 logic 层;handler 只做参数绑定 + 调 logic
  • 跨服务调用走 RPC,不要直接读对方数据库(microservice.md
  • 可选请求字段:DTO 用指针 + omitempty
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. 6d ago First seen · 56 lines · 30 tokens per session scan A 7fa706a84430

Subscribe to this mod's changes

new-api is a skill published in the GitHub repository iceymoss/go-hichat-api (41 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 30 tokens to every session and 631 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

golang-testing

Go testing best practices including table-driven tests, test helpers, benchmarking, race detection, coverage analysis, and integration testing patterns. Use when writing or improving Go tests.

affaan-m/ECC · 37 tokens

golang-patterns

Go-specific design patterns and best practices including functional options, small interfaces, dependency injection, concurrency patterns, error handling, and package organization. Use when working with Go code to apply idiomatic Go patterns.

affaan-m/ECC · 45 tokens

ast-grep

Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…

JanDeDobbeleer/oh-my-posh · 80 tokens

gen-test

Generate idiomatic tests for Go packages and handlers in the Meshery project.

meshery/meshery · 18 tokens

golang-testing

Production-ready Golang tests — table-driven tests, testify suites and mocks, parallel tests, fuzzing, fixtures, goroutine leak detection with goleak, snapshot testing, code coverage, integration tests, idiomatic test naming. Use when writing or reviewing Go tests, choosing a testing approach, setting up Go test CI…

samber/cc-skills-golang · 115 tokens

golang-uber-fx

Golang application framework using uber-go/fx — fx.New, fx.Provide, fx.Invoke, fx.Module, fx.Lifecycle hooks, fx.Annotate (name/group/As), fx.Decorate, fx.Supply, fx.Replace, fx.WithLogger, and signal-aware Run(). Apply when using or adopting uber-go/fx, when the codebase imports go.uber.org/fx, or when wiring…

samber/cc-skills-golang · 122 tokens