用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/suxrobGM/jobpilot --skill release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
One autonomous Pilot cycle - fetch the agenda, execute the top item, journal, exit. Injected by the terminal host - not for manual invocation loops.
Classify unscanned mailbox messages, fuzzy-match each to an existing application, and write the proposal back. The user approves in /inbox.
Install, start, or update the JobPilot agent terminal on this machine, then open the dashboard. Run this first after installing the plugin in Claude Code or Codex.
基于 SOC 职业分类
正在显示 SKILL.md
| name | release |
| description | Bump the unified JobPilot version (host + plugin), update the changelog, commit, and tag a new release |
| user-invocable | true |
Cut a new JobPilot release. Host and plugin share one version and ship from
one tag (vX.Y.Z), which triggers .github/workflows/release.yml - it builds
the terminal binaries for all RIDs, publishes the GitHub Release (the terminal
archives, which bundle the plugin tree), and syncs the plugin tree into the
claude-plugins and codex-plugins marketplaces.
The user provides a version (e.g. 2.1.0) or a bump type (major, minor,
patch). With no argument, default to a patch bump.
apps/terminal/JobPilot.Terminal.csproj - the <Version> elementplugin/.claude-plugin/plugin.json - "version"plugin/.codex-plugin/plugin.json - "version"package.json - "version"vX.Y.Z (matches the v* trigger in release.yml).CHANGELOG.md at the repo root, Keep a Changelog
format, newest release first. The workflow also sets generate_release_notes: true
for the GitHub Release.Determine the new version:
Pre-flight checks (stop and report on any failure - do not paper over):
git status).main (or ask if on another branch).vX.Y.Z (git tag -l).Bump version: set the new version in all four files.
Update CHANGELOG.md (create it with a # Changelog header if missing):
git log <prev-tag>..HEAD --oneline
(all commits if no tag exists).## vX.Y.Z - YYYY-MM-DD section, grouping the changes under
### Added / ### Changed / ### Fixed as applicable. Summarize
user-facing changes in plain language; fold internal chores/refactors into
one line or omit them.Commit: stage the four version files + CHANGELOG.md, commit
chore: release vX.Y.Z.
Tag: git tag -a vX.Y.Z -m "JobPilot vX.Y.Z".
Report: show the new version and tag, and remind the user to run
git push && git push origin vX.Y.Z to trigger release.yml.
--no-verify / --no-gpg-sign if hooks fail - report instead.