changelog
Generates a changelog by analyzing git history and tags. Use when the user asks to generate, write, or update a changelog.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generates a changelog by analyzing git history and tags. Use when the user asks to generate, write, or update a changelog.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generate conventional commit message from staged or unstaged changes
Checks projects and packages for CVEs using Socket.dev CLI and native audit commands. Use when installing or auditing dependencies for vulnerabilities, evaluating a package before install, or scanning a project's dependency tree.
Audit the current project's memory store (`~/.claude/projects/<encoded-cwd>/memory/`) and prune memories that no longer match the project state — dead file/function/flag references, past-dated project memories, orphaned index entries, and duplicates. Suggests candidates with rationale and requires per-item confirmation before deleting; does not edit memory bodies. Use when the user says "prune memory", "clean up memory", "audit memory", "memory is stale", "remove old memories", or invokes /prune-memory.
Symlink every skill in this repo into one or more agent skills directories (defaults to ~/.claude/skills/ and ~/.agents/skills/) so the skills become globally discoverable. Use when the user says "install these skills", "make these skills global", "symlink skills to ~/.claude", "symlink skills to ~/.agents", "register the skills", or wants to update the global skill set after editing skills here.
Build, validate, and exercise the agent-skills registry. Use when asked to run agent-skills, install its deps, lint or test it, run its bats suites, exercise a Claude Code hook, regenerate the index files, or symlink the skills out to ~/.claude / ~/.agents / ~/.cursor / ~/.opencode.
Concise, technically-precise response style with kawaii flourishes (emojis, emoticons, otaku suffixes). Use when the user wants playful agent output while keeping technical accuracy and brevity.
| name | changelog |
| description | Generates a changelog by analyzing git history and tags. Use when the user asks to generate, write, or update a changelog. |
changelog.mdgit tag --sort=-version:refname # all tags (newest first)
git describe --tags --abbrev=0 # most recent tag
git log --oneline --no-merges $(git describe --tags --abbrev=0 2>/dev/null || echo "")..HEAD # unreleased
git log --oneline --no-merges <prev-tag>..<current-tag> # between two tags
git log --oneline --grep="^feat:" <tag1>..<tag2> # Features
git log --oneline --grep="^fix:" <tag1>..<tag2> # Bug fixes
git log --oneline --grep="^docs:" <tag1>..<tag2> # Documentation
git log --oneline --grep="BREAKING" <tag1>..<tag2> # Breaking changes