Changelog 维护
- 作者仓库星标 0
- 作者仓库 plugins
Maintain Changelog
When to Activate
End of every session that modified files. Before wrapping up or when the user signals
they're done, append an entry to CHANGELOG.md in the repo root.
Also activate when:
- The user explicitly asks to update the changelog
- Starting a new session — read the changelog first to understand recent history
Changelog Location
CHANGELOG.md in the repository root. Create it if it doesn't exist.
Entry Format
## YYYY-MM-DD — <brief title>
### What changed
- Bullet points describing each meaningful change
- Group related changes together
- Include file paths for significant additions/modifications
### Why
- One or two sentences explaining the motivation or context
### Files touched
- `path/to/new-file.yaml` (new)
- `path/to/modified-file.yaml` (modified)
- `path/to/deleted-file.yaml` (deleted)
Rules
- Be concise. Each entry should be scannable in 10 seconds. No paragraphs.
- Focus on "what" and "why", not "how". Don't describe implementation details — the diff tells that story. The changelog tells the human story.
- Group by logical change, not by file. "Added shared Postgres instance" is one entry even if it touched 3 files.
- Newest entries at the top. Reverse chronological order.
- Don't log trivial changes. Typo fixes, formatting, or changelog-only updates don't need entries.
- Include context that won't be obvious later. Item IDs, IP addresses, design decisions — things that help future sessions understand the state of the world.
- Don't duplicate commit messages. The changelog is higher-level than git log. One changelog entry may span multiple commits.
Example
# Changelog
## 2026-02-09 — Add shared PostgreSQL instance
### What changed
- Created CNPG Cluster `home-1` in `postgres` namespace (single instance, 10Gi on zfs-nfs)
- Added managed roles for `kutt` and `linkding` with ESO-managed passwords (auto-rotation via CNPG)
- Created 4 Vaultwarden login items for postgres credentials (superuser, app, kutt, linkding)
- Added ArgoCD Application for postgres
### Why
Shared Postgres instance for apps migrating off SQLite. Per-app user isolation with
automated password rotation through the ESO → CNPG pipeline.
### Files touched
- `apps/postgres/postgres.yaml` (new)
- `apps/external-secrets/externalsecrets.yaml` (modified — 4 new ExternalSecrets)
- `apps/argocd/apps.yaml` (modified — postgres Application added)
### Next steps
- Create `kutt_db` and `linkding_db` databases manually after cluster is healthy
- Rotate change-me passwords in Vaultwarden
- Migrate Kutt from SQLite to Postgres
Starting a New Session
When beginning work, read CHANGELOG.md to understand:
- What was done recently
- What "next steps" were left by the previous session
- The current state of the project
This provides continuity across sessions without relying on memory files alone.
Notes
- The changelog complements (not replaces) git history. Git shows what code changed; the changelog shows what decisions were made and why.
- If the repo doesn't have a CHANGELOG.md yet, create one with a header:
# Changelog - Don't commit the changelog separately — include it in the same commit as the changes it documents.
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @0-xcf · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 End of every session that modified files. Before wrapping up or when the user signals they're done, append an entry to CHANGELOG.md in the repo root. Also activate when:
CHANGELOG.md in the repository root. Create it if it doesn't exist.
Entry Format
YYYY-MM-DD — <brief title>
Bullet points describing each meaningful change Group related changes together Include file paths for significant additions/modifications
One or two sentences explaining the motivation or context
# Maintain Changelog
## When to Activate
**End of every session that modified files.** Before wrapping up or when the user signals
they're done, append an entry to `CHANGELOG.md` in the repo root.
Also activate when:
- The user explicitly asks to update the changelog
- Starting a new session — read the changelog first to understand recent history
## Changelog Location
`CHANGELOG.md` in the repository root. Create it if it doesn't exist.
## Entry Format
```markdown
## YYYY-MM-DD — <brief title>
### What changed
- Bullet points describing each meaningful change
- Group related changes together
- Include file paths for significant additions/modifications
### Why
- One or two sentences explaining the motivation or context
### Files touched
- `path/to/new-file.yaml` (new)
- `path/to/modified-file.yaml` (modified)
- `path/to/deleted-file.yaml` (deleted)
```
## Rules
1. **Be concise.** Each entry should be scannable in 10 seconds. No paragraphs.
2. **Focus on "what" and "why", not "how".** Don't describe implementation details —
the diff tells that story. The changelog tells the *human* story.
3. **Group by logical change, not by file.** "Added shared Postgres instance" is one
entry even if it touched 3 files.
4. **Newest entries at the top.** Reverse chronological order.
5. **Don't log trivial changes.** Typo fixes, formatting, or changelog-only updates
don't need entries.
6. **Include context that won't be obvious later.** Item IDs, IP addresses, design
decisions — things that help future sessions understand the state of the world.
7. **Don't duplicate commit messages.** The changelog is higher-level than git log.
One changelog entry may span multiple commits.
## Example
```markdown
# Changelog
## 2026-02-09 — Add shared PostgreSQL instance
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> When to Activate → Changelog Location → Entry Format → YYYY-MM-DD — <brief title> → What changed → Why
要点 -> End of every session that modified files. · Be concise. · Focus on "what" and "why", not "how". · Group by logical change, not by file. · Newest entries at the top. · Don't log trivial changes. · Include context that won't be obvious later. · Don't duplicate commit messages.
文件/命令 -> CHANGELOG.md · path/to/new-file.yaml · path/to/modified-file.yaml · path/to/deleted-file.yaml · home-1 · postgres · kutt · linkding
内容 SHA-256 -> c6aecf8a1aa6
方法与流程
适用与边界
原文中的明确线索
CHANGELOG.md、path/to/new-file.yaml、path/to/modified-file.yaml、path/to/deleted-file.yaml、home-1、postgres、kutt、linkding