用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LangSensei/emploke-marketplace --skill go-dev命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | go-dev |
| scope | langsensei |
| description | Go development workflow — build, test, module management |
| version | 1.1.0 |
| prereqs | Requires: Go Runtime, PATH Configuration. See `references/SETUP.md` for step-by-step setup instructions. |
# Build (verify compilation)
go build -o /dev/null .
# Build with output
go build -o <binary> .
# Run tests
go test ./...
# Run specific test
go test -run TestName ./package/
# Vet (static analysis)
go vet ./...
# Tidy dependencies
go mod tidy
# Add dependency
go get github.com/example/package@latest
# Check module
go mod verify
commander, mcp, llm)my_file.go)fmt.Errorf("context: %w", err)project/
├── main.go # Entry point
├── go.mod
├── go.sum
├── package1/ # Feature packages
│ ├── types.go # Types and interfaces
│ ├── logic.go # Core logic
│ └── helpers.go # Utilities
└── package2/
# Build with debug symbols
go build -gcflags="all=-N -l" .
# Print to stderr for debugging
fmt.Fprintf(os.Stderr, "debug: %v\n", value)
if err != nil {
return fmt.Errorf("operation failed: %w", err)
}
data, err := os.ReadFile(path)
if err != nil {
return err
}
err = os.WriteFile(path, data, 0644)
cmd := exec.Command("program", "arg1", "arg2")
cmd.Dir = workDir
out, err := cmd.CombinedOutput()
go build before committing to verify compilationreferences/SETUP.md for installation and PATH setupinit() functions unless absolutely necessary