Analyze upstream documentation diffs and generate a CHANGELOG.md entry summarizing new features, changes, and removals.
Analyze changed reference documentation and add an entry to CHANGELOG.md.
git diff --name-only -- '*/references/*'
If no files changed, stop — there's nothing to log.
Extract skill names from paths (skills/<skill-name>/references/...). Collect the unique set.
For each changed skill, read its reference diffs:
git diff -- 'skills/<skill-name>/references/*'
Categorize each change:
Read CHANGELOG.md and insert a new entry after the header block (the # Changelog line and description paragraph). Use this format:
## YY.M.D
**N references updated across M skills:** skill-a, skill-b, ...
### New
- **Feature name** — description (skill-name)
### Changed
- **What changed** — description (skill-name)
### Removed
- **What was removed** — description (skill-name)
YY.M.D format (e.g., 26.2.20) for the version header- Minor wording/formatting updates across skill-a, skill-b docsMinor formatting updates only instead of sectionsCHANGELOG.md.Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer