一键导入
changelog-writer
Draft changelog entries from merged pull requests since the last release tag
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Draft changelog entries from merged pull requests since the last release tag
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a Pull Request for the current branch
Review an open PR before approving it
Analyze upstream specs (agentskills.io, Claude Code plugin/marketplace format, OpenClaw, MCP, CodeRabbit, APM) for changes, identify gaps in skillsaw's rule coverage, and create or update PRs to close those gaps. Use when performing periodic maintenance on the skillsaw linter.
Create a skillsaw rule plugin — a pip-installable Python package that adds custom lint rules to skillsaw. Walks through scaffolding the package, writing rules against the lint tree, testing, and publishing to PyPI. Use when a user wants to share skillsaw rules across repositories or publish them for others.
Survey the AI coding assistant and agentic tool ecosystem, assess skillsaw's competitive position, identify emerging patterns and missing capabilities, and produce a prioritized strategic report as a GitHub issue.
Fix skillsaw lint violations — apply deterministic autofixes, then resolve the remaining violations with targeted edits guided by `skillsaw explain`. Use when skillsaw reports violations, when asked to clean up lint findings, or after `skillsaw fix` leaves violations behind.
| name | changelog-writer |
| description | Draft changelog entries from merged pull requests since the last release tag |
| compatibility | Requires git and gh CLI |
| metadata | {"author":"dx-team","version":"1.0"} |
Draft changelog entries by summarizing merged pull requests since the last release tag.
Use when the user asks to prepare release notes, update CHANGELOG.md, or summarize what shipped since the last release.
git describe --tags --abbrev=0
gh pr list --state merged --search "merged:>$(git log -1 --format=%cI $(git describe --tags --abbrev=0))"
Group PRs into sections:
Write one line per PR: a user-facing summary followed by the PR number
in parentheses. Skip PRs labeled internal or ci.