agentscope-core/src/test/resources/e2e-skills/git-changelog/SKILL.md
Use this skill when the task involves generating a changelog, release notes, or commit summary from a Git repository's history. Suitable for tasks like "generate a changelog for v2.0", "summarize what changed since last release", or "create release notes from git commits". Requires access to a Git repository.
npx skillsauth add guanxuc/agentscope-java git-changelogInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generates formatted changelogs and release notes from Git commit history.
scripts/generate_changelog.py — Read git log between two refs and produce a grouped Markdown changelog (features, fixes, chores)python3 scripts/generate_changelog.py --from v1.0.0 --to HEAD --output CHANGELOG.md
python3 scripts/generate_changelog.py --from v1.0.0 --to v2.0.0
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
data-ai
Lists tables, describes columns and data types, identifies foreign key relationships, and maps entity relationships in the database. Use when the user asks about database structure, table layout, column types, what tables exist, foreign keys, or how entities relate to each other.
documentation
Writes and executes SQL queries ranging from simple single-table SELECTs to complex multi-table JOINs, aggregations, window functions, and subqueries. Use when the user asks to query the database, retrieve data, filter records, rank results, or generate reports.
documentation
Discover schema, write SELECT-only SQLite queries, execute, and explain results (aligned with harness-example).