用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AnySoftKeyboard/janus --skill write-app-change-log命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | write-app-change-log |
| description | Generates and updates the latest app changelog based on git history since the last version tag. |
This skill automates the process of creating a concise and meaningful changelog for the app.
Fetch Latest Tags:
git fetch --tags originIdentify the Base Tag:
v*.git tag -l "v*" --sort=-v:refname | head -n 1Collect Commits:
HEAD.git log <base-tag>..HEAD --pretty=format:"%s%n%b%n---"Filter App-Related Commits:
.github/, scripts/, fastlane/ except changelogs).README.md, AGENTS.md, task.md, implementation_plan.md).app/, database/, network/).strings.xml, UI layouts).Identify Meaningful Changes:
Match Style and Tone:
fastlane/metadata/android/en-US/changelogs/.9.txt).Welcome to Janus <version-name> (<version-code>) followed by bullet points if multiple changes are listed, or a single descriptive sentence.Update the Latest Changelog:
fastlane/metadata/android/en-US/changelogs/ with the new content.app/build.gradle.kts or similar).