Skill323 estrellas del repoactualizado yesterday
changelog-scan
The changelog-scan skill analyzes git repositories to extract user-facing changes between specified time periods or release tags, generating structured markdown summaries of merged pull requests and commits with metadata including type, breaking changes, security implications, and affected file areas. Use this skill when preparing release notes, tracking project changes for documentation, or feeding changelog data into downstream release or notification workflows.
Instalar en Claude Code
Copiargit clone --depth 1 https://github.com/cobusgreyling/loop-engineering /tmp/changelog-scan && cp -r /tmp/changelog-scan/starters/changelog-drafter/.grok/skills/changelog-scan ~/.claude/skills/changelog-scanDespués abre una sesión nueva de Claude Code; el skill carga automáticamente.
Definición
SKILL.md
# Changelog Scan Skill ## Inputs the loop will provide - Last release tag or previous run timestamp (from state or git) - Current date / "now" - Any explicit "since" override ## Output Format (one block per significant item) ```markdown ### PR #1234 — feat(auth): add magic link login (merged 2026-06-08) - Type: feature - Labels: enhancement - Breaking: no - Security: no - Linked: #1220 - Summary (one sentence from PR or commit): Users can now log in via emailed magic links. - Files touched (high level): auth/, emails/ ``` Rules for what to include: - All merged PRs to main in the window. - Direct commits on main that look user-facing (conventional commit feat/fix/perf/security or have linked issues). - Ignore pure dependency bumps, internal chores, and bot PRs unless they are security-related (those are handled by dependency-sweeper). ## Additional Signals to Surface - Any PR or commit message containing "BREAKING", "breaking change", or `!` conventional commit. - Security-related keywords or labels (CVE, vuln, security). - Items with "deprecate" or "remove" language. ## Output Summary Section (always at end) ```markdown ## Scan Summary - Total items: N - Features: N - Fixes: N - Breaking: N (list them) - Security: N (list them) - Recommended next action for loop: draft-release-notes | human review needed first | too many items — split window ``` Be precise and cite sources (PR numbers / shas). Do not invent details.
Del mismo repositorio
loop-budgetSkill
Check token budget and run-log spend before and after a loop run. Enforces early exit when over budget or when there is no actionable work.
loop-triageSkill
>
loop-verifierSubagent
Independent checker for loop-produced changes. Rejects unless tests pass and scope is minimal. Never implement fixes.
minimal-fixSkill
>
draft-release-notesSkill
>
ci-triageSkill
>
dependency-triageSkill
>
post-merge-scanSkill
>