API生成
- 作者仓库星标 0
- 作者更新于 实时读取
- 作者仓库 skills-registry
- 领域
- AI 智能
- 兼容 Agent
-
- Claude Code
- Cursor
- Cline
- Codex
- Windsurf
- Gemini CLI
- +20
- 信任分
- 88 / 100 · 社区维护
- 作者 / 版本 / 许可
- @tomevault-io · 未声明 license
- Token 消耗评级
- 低消耗
- 接入复杂程度
- 需简单配置
- 是否需要外部 API Key
- 不需要
- 兼容的系统
- 未声明(默认跨平台)
- 底层运行要求
- 无特殊要求
- 文件与系统权限
-
- 只读
- 允许写入 / 修改
- 网络行为
- 仅限本地
- 安装命令数
- 26 条
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
---
name: scaffold-go-cli
description: >- Use when this capability is needed. Generate the full boilerplate for a new Go CLI project. I…
category: AI 智能
runtime: 无特殊运行时
---
# scaffold-go-cli 输出预览
## PART A: 任务判断
- 适用问题:提示词、Agent 工作流、模型评估或自动化推理。
- 输入要求:目标材料、限制条件、期望输出和验收方式。
- 证据边界:围绕“Workflow / 1. Gather Project Information / 2. Detect User Identity”读取原文规则,不把推断写成作者承诺。
## PART B: 执行结果
- **01** 任务判断:确认你的需求是否属于提示词、Agent 工作流、模型评估或自动化推理,并标出输入、限制和预期结果。
- **02** 执行计划:优先按“Workflow / 1. Gather Project Information / 2. Detect User Identity”拆成步骤,说明每一步会读取什么、修改什么、产出什么。
- **03** 交付结果:给出可复制的命令、文件改动、检查清单或内容草稿,并说明如何继续迭代。
- **04** 风险边界:结合 读取文件、写入/修改文件、主要在本地完成、通常不需要额外 API Key 给出执行前确认项。
## Running Rules
- 读取文件、写入/修改文件;主要在本地完成;通常不需要额外 API Key。
- 先小样例验证,再放大到真实任务。
- 交付时同时给结果、检查口径和下一步迭代建议。 原文没有稳定的斜杠命令要求。安装验证后通常全局生效,直接在对话里点名这个 Skill 并描述任务即可。
告诉 Agent 目标文件或材料、期望结果、不可改范围、是否允许联网或执行命令。本 Skill 的权限画像是:读取文件、写入/修改文件。
先用一个小任务确认它会围绕“Workflow / 1. Gather Project Information / 2. Detect User Identity”工作;涉及文件或命令时,先看 diff、日志、预览或测试结果。
检查最终产物是否包含明确结果、必要证据和下一步动作;如果输出泛泛而谈,就补充输入、边界和验收标准后重跑。
---
name: scaffold-go-cli
description: >- Use when this capability is needed. Generate the full boilerplate for a new Go CLI project. I…
category: AI 智能
source: tomevault-io/skills-registry
---
# scaffold-go-cli
## 什么时候使用
- 把 AI / Agent方向的常用动作沉淀成 Agent 可调用的技能 适合处理AI Agent、提示词、模型评估与自动化推理,核心价值是把输入、判断、执行、验证和交付边界固定下来,避免 Agent 泛泛回答。 把任务拆成可执行、可检查…
- 面向提示词、Agent 工作流、模型评估或自动化推理,优先处理能明确输入、步骤和验收标准的工作。
## 需要提供什么
- 目标材料、目录范围、期望结果和不可改动内容。
- 是否允许联网、执行命令、读写文件或调用外部服务。
## 执行规则
- 围绕「Workflow / 1. Gather Project Information / 2. Detect User Identity」组织步骤,不把推断写成作者事实。
- 读取文件、写入/修改文件;主要在本地完成;通常不需要额外 API Key。
- 先跑小样例,确认结果可检查后再扩大任务范围。
## 输出要求
- 给出最终产物、关键证据、验证方式和下一步动作。
- 信息不足时标记 unknown,不编造命令、平台或依赖。 作者原文负责流程事实;仓库文件负责来源和命令;流狐只补充适用场景、限制和质量判断。
skill "scaffold-go-cli" {
输入层 -> 用户目标 + 目标文件 + 禁止范围 + 验收标准
上下文层 -> Workflow / 1. Gather Project Information / 2. Detect User Identity
规则层 -> SKILL.md 触发条件 / 执行顺序 / 输出格式
运行层 -> 无特殊运行时 | 读取文件、写入/修改文件 | 主要在本地完成
安全层 -> 通常不需要额外 API Key + 小任务验证 + diff / 日志复核
输出层 -> 可复制结果 + 检查清单 + 下一步迭代
} Scaffold Go CLI
Generate the full boilerplate for a new Go CLI project.
Workflow
1. Gather Project Information
If the user provided a project name in their request, use it as the project name and skip asking for it. Still ask for the remaining parameters (description, Viper, Charmbracelet TUI) unless already provided in the user's initial request.
Ask the user for these parameters:
- Project name -- kebab-case, used as the binary name, module path, and directory name (e.g.,
my-tool) - Short description -- one sentence, used in README, GoReleaser Homebrew cask, and the Cobra root command
Shortfield - Include Viper? -- whether to add Viper for config file management (adds
--configflag and~/.config/<name>/config.yamlsupport) - Include Charmbracelet TUI? -- whether to add bubbletea, lipgloss, and bubbles dependencies
If the user already provided some or all of these in their initial request, do not re-ask. Derive what you can from context.
2. Detect User Identity
Detect the user's GitHub username and full name for use in templates:
# GitHub username (for module paths, URLs, Homebrew tap)
gh api user -q .login
# Full name (for LICENSE copyright)
git config user.name
If either command fails or produces no output, ask the user to provide the value. Use the GitHub username wherever templates reference GITHUB-USERNAME and the full name wherever they reference COPYRIGHT-HOLDER.
3. Verify the Target Directory
The project should be scaffolded in a directory named after the project. If the current directory is already named after the project and is empty (or nearly empty), use it. Otherwise, create a subdirectory.
If the directory already contains Go files, warn the user before proceeding.
4. Initialize Git
Skip if already inside a git repository.
git init
5. Generate main.go
Read ./references/main-go.md for the main.go template and create the file from it.
- Replace
PROJECT-NAMEwith the project name - Replace
GITHUB-USERNAMEwith the detected GitHub username
6. Generate cmd/root.go
Choose the template based on the Viper parameter:
- Without Viper: read
./references/root-go-without-viper.md - With Viper: read
./references/root-go-with-viper.md
Replace in the chosen template:
PROJECT-NAMEwith the project namePROJECT-DESCRIPTIONwith the short description
7. Initialize go.mod and Install Dependencies
Read ./references/go-mod.md for the canonical setup commands. The base sequence:
go mod init github.com/GITHUB-USERNAME/PROJECT-NAME
go get github.com/spf13/cobra@latest
If Viper was selected:
go get github.com/spf13/viper@latest
If Charmbracelet TUI was selected:
go get charm.land/bubbletea/v2@latest
go get charm.land/lipgloss/v2@latest
go get charm.land/bubbles/v2@latest
Then tidy:
go mod tidy
8. Generate Makefile
Read ./references/makefile.md for the Makefile template and create Makefile from it.
- Replace
PROJECT-NAMEwith the project name
9. Generate .gitignore
Read ./references/gitignore.md for the .gitignore template and create .gitignore from it.
- Replace
PROJECT-NAMEwith the project name
If a .gitignore already exists, merge the template entries into it rather than overwriting.
10. Generate .goreleaser.yml
Read ./references/goreleaser.md for the GoReleaser template and create .goreleaser.yml from it.
- Replace
PROJECT-NAMEwith the project name - Replace
PROJECT-DESCRIPTIONwith the short description - Replace
GITHUB-USERNAMEwith the detected GitHub username
11. Generate CI Workflow
Read ./references/ci-workflow.md for the CI workflow template and create .github/workflows/ci.yml from it.
No replacements needed (the workflow is project-name-independent).
12. Generate Release Workflow
Read ./references/release-workflow.md for the release workflow template and create .github/workflows/release.yml from it.
No replacements needed.
13. Generate LICENSE
Read ./references/license.md for the LICENSE template and create LICENSE from it.
- Replace
YEARwith the current year (rundate +%Yto get it) - Replace
COPYRIGHT-HOLDERwith the detected full name
14. Generate README.md
Read ./references/readme.md for the README template and create README.md from it.
- Replace
PROJECT-NAMEwith the project name (kebab-case) - Replace
PROJECT-DESCRIPTIONwith the short description - Replace
GITHUB-USERNAMEwith the detected GitHub username
15. Generate CHANGELOG.md
Create CHANGELOG.md with the initial changelog template:
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
No replacements needed. The release skill will populate version sections and comparison links on the first release.
16. Create Directory Stubs
Create stub directories for the standard project layout:
# internal package stub
mkdir -p internal
touch internal/.gitkeep
# plans directory
mkdir -p docs/plans/todo docs/plans/done
touch docs/plans/todo/.gitkeep docs/plans/done/.gitkeep
# tests directory
mkdir -p tests
touch tests/.gitkeep
17. Verify the Build
Run a quick build to confirm everything compiles:
go build ./...
If the build fails, diagnose and fix the issue before continuing.
18. Create Initial Commit
Stage all generated files and create the initial commit:
git add -A
git commit -S -m "feat: scaffold Go CLI project"
19. Update Copilot Instructions
If .github/copilot-instructions.md exists (created by scaffold-new-repo when running in the bootstrap flow, or already present in an existing repo), append the following entries to the PR review section. Before appending each entry, check whether the bold key text already exists in the file; skip entries that are already present.
To locate the PR review section: look for an existing heading whose text includes "PR Review" or "Code Review" (e.g., ## PR Review, ## Code Review, ## PR Review Checklist (CRITICAL)). If no matching heading exists, append a new ## PR Review section at the end of the file and place the entries there.
cboone/gh-actionsreusable workflows manage tool versions internally: The CI and release workflows usecboone/gh-actionsreusable workflows that handle tool installation, version pinning, caching, and SHA-256 verification internally. Do not suggest replacing reusable workflow calls with inlined third-party actions.
If .github/copilot-instructions.md does not exist, skip this step.
20. Set Up HOMEBREW_TAP_TOKEN
The release workflow requires a HOMEBREW_TAP_TOKEN repository secret to publish Homebrew casks. Read ./references/homebrew-tap-token.md for the full setup steps.
Ask the user whether they want to set up the token now or defer it to later. If they defer, note in the summary that the token must be configured before the first release.
Note: for brand-new projects that have not been pushed to GitHub yet, gh secret commands (including gh secret set and gh secret list) will not work until a GitHub remote exists. See the "No remote yet?" note in the reference.
21. Summary
Print a summary of what was created:
List every file and directory generated
Note which optional features were included (Viper, Charmbracelet TUI)
Remind the user to:
- Add subcommands under
cmd/as the CLI grows - Run
make helpto see available Makefile targets - Run the add-community-files skill to add CONTRIBUTING.md, CODE_OF_CONDUCT.md, .github/SECURITY.md, and .github/PULL_REQUEST_TEMPLATE.md
- Add subcommands under
If
HOMEBREW_TAP_TOKENsetup was deferred in step 20: check whether a GitHub remote exists and is accessible before creating a follow-up issue:if git remote get-url origin >/dev/null 2>&1 && gh repo view >/dev/null 2>&1; then gh issue create \ --title "Set up HOMEBREW_TAP_TOKEN repository secret" \ --body "The release workflow needs a HOMEBREW_TAP_TOKEN secret so GoReleaser can push Homebrew cask updates to the tap repository. See the HOMEBREW_TAP_TOKEN Setup reference in the scaffold-go-cli skill documentation for step-by-step instructions." fiIf the issue was created successfully, report its URL in the summary.
If no remote exists or the repo is not accessible via
gh, print a reminder instead: the user should create the issue manually (or re-run the token setup) after pushing to GitHub for the first time.
Error Handling
- If
go mod initfails, check that Go is installed and on the PATH - If
go getfails for any dependency, check network connectivity and retry once - If the target directory already contains Go files, ask the user before overwriting
- If
git initfails, continue generating files but warn the user - If the build verification fails, show the error and attempt to fix it before continuing
Reference Templates
./references/main-go.md--main.gotemplate./references/root-go-without-viper.md--cmd/root.gowithout Viper./references/root-go-with-viper.md--cmd/root.gowith Viper./references/go-mod.md--go mod initand dependency setup./references/makefile.md-- Makefile template./references/gitignore.md--.gitignoretemplate./references/goreleaser.md--.goreleaser.ymltemplate./references/ci-workflow.md--.github/workflows/ci.yml./references/release-workflow.md--.github/workflows/release.yml./references/license.md-- MIT license template./references/readme.md-- README template./references/homebrew-tap-token.md--HOMEBREW_TAP_TOKENrepository-secret setup
Refresh cboone/gh-actions SHAs before scaffolding
The cboone/gh-actions reusable-workflow refs in this skill's templates are SHA-pinned with a # vX.Y.Z comment that was current when the template was authored. New releases of cboone/gh-actions rot those SHAs. Before emitting a workflow into a user's repo, refresh both the SHA and the comment to current latest:
TAG="$(gh release view --repo cboone/gh-actions --json tagName --jq '.tagName')"
SHA="$(gh api "repos/cboone/gh-actions/commits/${TAG}" --jq '.sha')"
echo "${SHA} # ${TAG}"
Replace each cboone/gh-actions/.../<workflow>.yml@<old-sha> # <old-tag> in the emitted workflow with the new SHA and tag. Dependabot in the user's repo keeps them in sync afterwards.
Source: cboone/agent-harness-plugins — distributed by TomeVault.
先判断是否适合
作者设计意图
作者的方法与取舍
边界和复核