一键导入
go
Use for Go changes in Neva: authoring, refactoring, debugging, or review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use for Go changes in Neva: authoring, refactoring, debugging, or review.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use for Neva source or snippets: authoring, refactoring, debugging, or review.
Use for focused review of a Neva pull request, branch, diff, or patch.
Prepare a Neva GitHub release draft from merged PRs, previous release style, and local multi-platform artifacts. Use this for monthly release preparation in nevalang/neva.
A systematic approach to refactoring complex codebases.
Convert Neva programs to valid Mermaid flowchart diagrams. Use when asked to visualize Neva code as Mermaid.
Create a Discord-ready Neva release announcement from a GitHub release payload. Use for official Neva Discord release posts.
| name | go |
| description | Use for Go changes in Neva: authoring, refactoring, debugging, or review. |
Use this skill for changes touching *.go. Read the matching developer
documentation named by AGENTS.md before editing.
.golangci.yml, go.mod, and existing
code patterns.go.mod as the version ceiling for Go features and stdlib APIs.gofmt on changed Go files.nolint directives. If suppression is
unavoidable, keep it narrowly scoped to the exact line/rule and add a short
justification.Makefile targets for standard checks when applicable._. Either return an error
(wrapping when useful) or handle it locally; do not report an error and then
continue as though it were handled.internal/runtime/funcs/**, follow
docs/developer/runtime-functions.md.