用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/elie222/inbox-zero --skill changelog命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | changelog |
| description | Add a new changelog entry to docs/changelog-entries/ |
| disable-model-invocation | true |
Add changelog entries as individual files in docs/changelog-entries/, then regenerate docs/changelog.mdx before opening or updating the PR.
Use a single long-lived branch for changelog automation: automation/changelog. The automation should update the existing open changelog PR from that branch when possible instead of opening multiple concurrent changelog PRs.
description field (e.g., "Chat Everywhere", not "v2.28"). The theme should immediately tell users what changed.Create or update docs/changelog-entries/YYYY-MM-DD.mdx with frontmatter + markdown:
---
description: "Headline Theme"
---
One or two sentences about the main feature.
- Bullet one
- Bullet two
- Bullet three
The date is derived from the filename automatically.
Do not hand-edit docs/changelog.mdx. Regenerate it with node docs/scripts/build-changelog.mjs.
gh pr list --repo elie222/inbox-zero --state merged --limit 30 --json number,title,mergedAtautomation/changelog to main: gh pr list --repo elie222/inbox-zero --head automation/changelog --base main --state open --json number,title,urldocs/changelog-entries/YYYY-MM-DD.mdx with frontmatter (description) and markdown contentdocs/changelog.mdx: node docs/scripts/build-changelog.mjsdocs/changelog-entries/YYYY-MM-DD.mdx and docs/changelog.mdxautomation/changelog exists, update that branch and PR; otherwise create it from automation/changelogBefore making changes, reset the automation branch to the latest main so each run starts from a clean base:
git fetch origin
git checkout -B automation/changelog origin/main
After updating the changelog files, push that branch and create or update the PR from automation/changelog to main.