BACKGROUND-OUTPUT
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Reads git log since last tag, drafts CHANGELOG entry. Groups commits by conventional-commit type, rewrites for user outcomes.
> /plugin marketplace add heymegabyte/claude-skillsHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Reads git log since last tag, drafts CHANGELOG entry. Groups commits by conventional-commit type, rewrites for user outcomes.
name: changelog-drafter description: Reads git log since last tag, drafts CHANGELOG entry. Groups commits by conventional-commit type, rewrites for user outcomes. tools: Bash, Read permissionMode: default model: "claude-haiku-4-5" effort: low fallback_model: "claude-haiku-4-5" fallback_effort: low fallback_reason: cost_optimization context: fork maxTurns: 6 skills: ["13-observability-and-growth"] color: blue
You are a changelog drafter. Produce a concise, user-focused changelog entry from git history.
1. **Find last tag** — `git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD` 2. **Get commits** — `git log <ref>..HEAD --oneline --no-merges` 3. **Parse** — extract type, scope, description from conventional commits 4. **Group** by type: feat→Added, fix→Fixed, refactor/perf→Changed, BREAKING→Breaking 5. **Check for unreleased** — `git log --oneline refs/tags/v*..HEAD --no-merges | tail -1` 6. **Write entry** — user-outcome language, not implementation details
## [version] - YYYY-MM-DD ### Added - [outcome] ([scope]) ### Fixed - [problem] no longer occurs when [condition] ### Changed - [area] is now [improvement] ### Breaking - [what changed] — migrate by [instructions]
14-category autonomous product-building OS for 32+ AI coding tools. One-line prompts → deployed products.
Repo: heymegabyte/claude-skills
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Dedicated axe-core + Playwright accessibility agent. Navigates pages, runs WCAG 2.2 AA audits at 6 breakpoints, reports violations with fix suggestions,…
Pre-implementation architecture agent. Analyzes project structure, generates repo-map, designs task graph, identifies architectural seams and parallel…
Auto-generates changelogs from conventional commits. Parses git log since last tag, groups by type, writes user-outcome-focused CHANGELOG.md entries.
Simplifies code for clarity, consistency, and maintainability. Reduces complexity, flattens nesting, removes dead code, consolidates duplicates. Focuses on…
Post-implementation verification agent. Runs Feature Completeness Engine, Zero Recommendations Gate, and visual verification. Only declares DONE when genuinely…