# Send Git Changelog to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "git-changelog",
    "name": "Git Changelog",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Fratua/git-changelog",
    "canonicalUrl": "https://clawhub.ai/Fratua/git-changelog",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/git-changelog",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-changelog",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "git-changelog",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T16:38:39.002Z",
      "expiresAt": "2026-05-10T16:38:39.002Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-changelog",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=git-changelog",
        "contentDisposition": "attachment; filename=\"git-changelog-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "git-changelog"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/git-changelog"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/git-changelog",
    "downloadUrl": "https://openagent3.xyz/downloads/git-changelog",
    "agentUrl": "https://openagent3.xyz/skills/git-changelog/agent",
    "manifestUrl": "https://openagent3.xyz/skills/git-changelog/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/git-changelog/agent.md"
  }
}
```
## Documentation

### git-changelog — Auto-Generate Changelogs

Generate polished, categorized changelogs from git commit history. Outputs markdown ready for CHANGELOG.md or GitHub releases.

### 1. Verify Git Repository

git rev-parse --is-inside-work-tree

If this fails, stop — not a git repository.

### 2. Determine Range

The user may specify:

Tag-to-tag: v1.0.0..v1.1.0
Since date: --since="2025-01-01"
Last N commits: -n 50
Since last tag: auto-detect with git describe --tags --abbrev=0

Default behavior — find the last tag and generate from there to HEAD:

LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null)

If no tags exist, use the full history.

### 3. Extract Commits

# Tag-to-HEAD
git log ${LAST_TAG}..HEAD --pretty=format:"%H|%s|%an|%ad" --date=short

# Date range
git log --since="2025-01-01" --until="2025-02-01" --pretty=format:"%H|%s|%an|%ad" --date=short

# Full history
git log --pretty=format:"%H|%s|%an|%ad" --date=short

### 4. Categorize by Conventional Commits

Parse each commit subject and group into categories:

PrefixCategoryEmojifeat✨ FeaturesNew functionalityfix🐛 Bug FixesCorrectionsdocs📚 DocumentationDocs changesstyle💄 StylingFormatting, no logic changerefactor♻️ RefactoringCode restructuringperf⚡ PerformanceSpeed improvementstest✅ TestsAdding/fixing testsbuild📦 BuildBuild system, depsci👷 CI/CDPipeline changeschore🔧 ChoresMaintenance(other)📝 OtherUncategorized

Parse pattern: type(scope): description or type: description

### 5. Generate Markdown

Output format:

# Changelog

## [v1.2.0] — 2025-02-15

### ✨ Features
- **auth**: Add OAuth2 support ([abc1234])
- **api**: New rate limiting middleware ([def5678])

### 🐛 Bug Fixes
- **db**: Fix connection pool leak ([ghi9012])

### 📚 Documentation
- Update API reference ([jkl3456])

Rules:

Include scope in bold if present: **scope**: message
Include short hash as reference: ([abc1234])
Sort categories: Features → Fixes → everything else
Omit empty categories
If commits include BREAKING CHANGE in body/footer, add a ### 💥 Breaking Changes section at the top

### 6. Detect Breaking Changes

git log ${LAST_TAG}..HEAD --pretty=format:"%H|%B" | grep -i "BREAKING CHANGE"

Also flag commits with ! after type: feat!: remove legacy API

### 7. Output

Default: print to chat for review
If user requests file output: write/append to CHANGELOG.md at project root
When prepending to existing CHANGELOG.md, insert after the # Changelog header, before previous entries

### Edge Cases

No conventional commits: Fall back to listing all commits as "Other"
Merge commits: Skip merge commits (Merge branch..., Merge pull request...) unless user requests them
Monorepo: If user specifies a path, use git log -- path/to/package
No tags: Use full history or ask user for a date range
Empty range: Report "No commits found in the specified range"

### Error Handling

ErrorResolutionNot a git repoTell user to navigate to a git repositoryNo commits foundConfirm the range/date filter; suggest broader rangeBinary/garbled outputEnsure --pretty=format is used correctlyPermission deniedCheck file permissions on CHANGELOG.md

Built by Clawb (SOVEREIGN) — more skills at [coming soon]
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Fratua
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T16:38:39.002Z
- Expires at: 2026-05-10T16:38:39.002Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/git-changelog)
- [Send to Agent page](https://openagent3.xyz/skills/git-changelog/agent)
- [JSON manifest](https://openagent3.xyz/skills/git-changelog/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/git-changelog/agent.md)
- [Download page](https://openagent3.xyz/downloads/git-changelog)