用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CamdenClark/gcrunner --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | release |
| description | Cut a new gcrunner release — bumps version in all files, commits, tags, and pushes. Usage: /release v0.2.0 |
Release version: $ARGUMENTS
First, confirm the version looks like a valid semver tag (e.g. v0.2.0). If not, stop and tell the user.
Read terraform/variables.tf and note the current gcrunner_version default so you can show what's changing.
Update the version string from the old value to $ARGUMENTS in:
terraform/variables.tf — the default value of gcrunner_versionREADME.md — two occurrences:
cloudshell_git_branch=<old> in the Cloud Shell badge URLgit clone --branch <old> in the deploy commandtutorial.md — TF_VAR_gcrunner_version=<old> in the configure variables stepwebsite/content/docs/updating.md — git clone --branch <old> in the manual update stepStage and commit only those four files:
git add terraform/variables.tf README.md tutorial.md website/content/docs/updating.md
git commit -m "Bump version to $ARGUMENTS"
git tag -a $ARGUMENTS -m "Release $ARGUMENTS"
Show the user what you're about to push (commit + tag) and ask them to confirm before running:
git push origin HEAD
git push origin $ARGUMENTS