一键导入
changelog
This agent generates a CHANGELOG.md for the cbn-guide application by analyzing git history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
This agent generates a CHANGELOG.md for the cbn-guide application by analyzing git history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add or revise lookup indexes in `src/data.ts` for upstream data. Use when need to expose a new reverse lookup such as 'what objects yield item X', decide between lazy `ReverseIndex` and constructor-built maps, add a public accessor near similar helpers, or update tests/components that consume the new index.
Prepare and open a pull request from the current local branch by analyzing the diff against a target branch, extracting architectural intent from local docs like ADRs or tech specs, drafting a reviewer-facing PR body, pushing the branch, checking for an existing PR, and creating a draft PR by default.
Diagnose JavaScript/TypeScript heap growth, Vitest OOMs, hanging test processes, async lifetime leaks, and worker-pressure failures in Node/Svelte repos. Use when requests mention memory leaks, runaway heap, `JavaScript heap out of memory`, `--logHeapUsage`, tests that pass but never exit, heavy happy-dom rendering, stale module caches or stores, missing teardown or reset logic, or CI failures that disappear with fewer workers.
Create comprehensive, developer-focused architectural documentation.
Investigate and fix manual or CI schema test failures in `src/schema.test.ts` and `src/mod-schema.test.ts`, especially after upstream Cataclysm-BN data changes.
Create issue
| name | changelog |
| description | This agent generates a CHANGELOG.md for the cbn-guide application by analyzing git history. |
window: (String) Time window for git log (default: "1 month ago").output_file: (String) Target file to update (default: "CHANGELOG.md").Map conventional commit types (extracted from git log) to these prefixes:
feat -> [FEATURE]fix -> [FIX]style, ui -> [UI]perf -> [PERF][SEARCH]#123 or closes #123), use the remote-github MCP server (issue_read) to fetch the issue title and body.## <Month YYYY>### Highlights### ChangesHighlights must contain 1-3 bullets max and only the most important end-user outcomes for that month.Changes contains the fuller grouped list of user-facing bullets.- [PREFIX] Description.Input Commits:
fix: correct fill_ter tile countfix: handle ammo in mapgenfix: resolve parameterized mapgen valuesOutput:
[FIX] Corrected loot calculations and mapgen logicInput Commit:
perf(search): optimize search index initialization by avoiding eager flatteningOutput:
[SEARCH] Faster search with less stuttering when you are typingInput Commits:
feat(i18n): add Transifex API scriptsfeat(i18n): simplify stringschore(i18n): own instanceOutput:
[FEATURE] Translations moved to Transifex projectOutput:
## February 2026
### Highlights
- Full mod support landed with dependency-aware selection and shareable URLs.
- Data and mapgen parsing became more accurate for real BN content.
### Changes
- [FEATURE] Mod loading now respects order and provenance.
- [FEATURE] Mod selector UX was improved with better defaults and sorting.
- [FIX] Data normalization fixes improved correctness for BN edge cases.
git log --since="{window}" --pretty=format:"%h %ad %s" --date=short.Highlights (most important to end users).### Changes bullets using the specific prefixes.{output_file} using the required structure.