Agent skill · Workflow & Productivity

lime-release-workflow

准备并执行 Lime 发版;覆盖版本号、发布说明、产物清理、验证门禁、commit、tag 和推送。

limecloudgithub.com/limecloudGitHub ↗
codex
Install
npx skills add limecloud/lime --skill lime-release-workflow --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Path: .codex/skills/lime-release-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,464
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Lime 发版流程 ## 核心原则 - 先读 `AGENTS.md`、`internal/aiprompts/quality-workflow.md` 和当前 `git status --short`,再修改版本或发版文件。 - 发版属于高风险流程。删除文件、`git commit`、`git tag`、`git push`、覆盖已有 tag、终止用户进程前,必须按仓库危险操作格式向用户确认。 - 如果工作区已有未提交改动,先把 release candidate 范围判清楚;版本号和 release notes 只是发布 metadata,不能默认代表本次发布全部内容。 - 只有用户明确要求“只更新版本 / 只写 release note / 不提交其它改动”时,才允许只修改和提交发版事实源;否则发版提交必须纳入本次 release candidate 的全部产品 / 文档 / 测试改动,或先停止并让用户确认排除清单。 - 版本号事实源以 `package.json`、`forge.config.mjs`、App Server manifest 与 `lime-rs/Cargo.toml` 的 workspace version 为准,完成后必须跑 `npm run verify:app-version`。 - Electron 发布 / 签名 / 公证 / updater metadata 的 current 打包事实源是 `forge.config.mjs`、`electron-forge package`、`electron-forge make` 与 Forge 官方 maker;旧 builder 配置 / CLI、自定义 Windows installer maker 与旧 YAML / blockmap updater metadata 按 `dead` 处理,不得写回 release workflow、docs、quality guard 或 i18n evidence。运行时更新以 `electron/updateHost.ts` + Electron 内置 `autoUpdater` 为 current;Windows installer 必须走 Forge Squirrel。 - 发版前默认必须跑通 `npm run typecheck`。这是发布硬门禁,必须在收尾和任何 commit / tag / push 确认前明确执行并记录结果;不能用 `npm run typecheck:electron`、`npm run lint`、局部单测、Rust 测试或 `verify:app-version` 替代。若用户明确要求“马上递交”或“立即递交”,可以把 `typecheck` 降级为非阻断项,直接进入发布收口,但最终汇报必须明确

What's inside
Steps it walks through
  1. 核心原则
  2. 入口判断
  3. Release Candidate 范围确认
  4. 更新版本事实源
  5. 更新 Release Notes
  6. 删除旧内容
  7. 验证矩阵
  8. Commit / Tag / Push
  9. 收尾输出
Commands it runs
npm run verify:app-version
npm run typecheck
npm run test:contracts      # 协议 / Bridge / command catalog / mock / governance 变更
npm run verify:gui-smoke    # GUI 壳、Workspace、主路径或正式发布尽量执行;跑不了要说明环境限制
npx eslint "<changed-path>" --max-warnings 0
npm run test:related -- <files>
npm run test:changed -- <ref>
npm run test:resume
npm run test:rust:changed
npm run test:rust:related -- <paths...>
More from lime
All skills →
About this skill
What does the lime-release-workflow skill do?

准备并执行 Lime 发版;覆盖版本号、发布说明、产物清理、验证门禁、commit、tag 和推送。

How do I install it?

Run `npx skills add limecloud/lime --skill lime-release-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From limecloud/lime, a repository with 1,464 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going