agentsclimarketplace

Case 03426

Skill knownasnaffy/prompthound/dataset/case_03426

A fast, offline static risk analysis CLI for AI agent skill files. Detects malicious instructions, steganographic payloads, and dangerous capability chains.

Install
npx -y skills add knownasnaffy/prompthound --skill case_03426

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Generate polished release notes and changelogs from git history. Analyzes commits between tags/refs, categorizes changes (features, fixes, breaking changes, etc.), and produces formatted release notes in multiple styles. Use when asked to generate release notes, create a changelog, summarize changes between versions, write release documentation, or prepare a GitHub release. Triggers on "release notes", "changelog", "what changed since", "summarize commits", "version bump notes", "prepare release".

SKILL.md

3.8 KB, as published. Nobody here has run it

Git Release Notes

Generate formatted release notes from git commit history. Analyzes commits between any two refs (tags, branches, SHAs) and produces categorized, human-readable release notes.

Quick Usage

Generate Notes Between Tags

scripts/gather_commits.sh v1.2.0 v1.3.0

Then format the JSON output into release notes using the formatting rules below.

Generate Notes Since Last Tag

scripts/gather_commits.sh $(git describe --tags --abbrev=0) HEAD

Generate Notes Between Branches

scripts/gather_commits.sh main release/2.0

Workflow

1. Gather Commits

Run scripts/gather_commits.sh <from_ref> <to_ref> to get structured commit data (JSON array).

If no refs provided, ask user for:

  • The starting point (tag, branch, or SHA)
  • The ending point (default: HEAD)

2. Categorize Commits

Group commits by type using conventional commit prefixes and content analysis:

CategoryPrefixes / SignalsEmoji
Breaking ChangesBREAKING CHANGE:, !: in subjectπŸ’₯
Featuresfeat:, feature:, add:✨
Bug Fixesfix:, bugfix:, hotfix:πŸ›
Performanceperf:⚑
Documentationdocs:, doc:πŸ“š
Refactoringrefactor:♻️
Testingtest:, tests:πŸ§ͺ
CI/Buildci:, build:, chore:πŸ”§
Dependenciesdeps:, dep:, "bump", "upgrade" in subjectπŸ“¦
OtherAnything elseπŸ“

If commits don't follow conventional commits, analyze the commit message content to infer categories.

3. Format Release Notes

Default format (GitHub Release style):

# v1.3.0

> Released on 2026-03-26 | 47 commits | 5 contributors

## πŸ’₯ Breaking Changes
- Remove deprecated `legacy_auth` endpoint (#234)

## ✨ Features
- Add dark mode support (#220)
- Implement batch export for CSV/JSON (#215)

## πŸ› Bug Fixes
- Fix race condition in queue processor (#228)
- Correct timezone handling for UTC offset (#225)

## ⚑ Performance
- Optimize database queries for dashboard load (#222)

## πŸ“¦ Dependencies
- Bump express from 4.18 to 4.21

## πŸ”§ Other
- Update CI pipeline for Node 22

**Full Changelog:** v1.2.0...v1.3.0

4. Alternative Formats

Compact (for small releases):

v1.3.0 β€” Dark mode, batch export, 5 bug fixes. Breaking: removed legacy_auth.

Keep a Changelog (keepachangelog.com):

## [1.3.0] - 2026-03-26
### Added
- Dark mode support
### Changed
- Optimized dashboard queries
### Removed
- Deprecated legacy_auth endpoint
### Fixed
- Race condition in queue processor

Slack/Discord announcement:

πŸš€ **v1.3.0 is out!**

Highlights:
β†’ Dark mode support
β†’ Batch CSV/JSON export
β†’ 5 bug fixes

⚠️ Breaking: `legacy_auth` endpoint removed β€” migrate to `/v2/auth`

Customization

Users can specify:

  • Format β€” github (default), compact, keepachangelog, slack
  • Include/exclude categories β€” "skip docs and chore commits"
  • Group by β€” category (default), author, scope
  • PR links β€” auto-detect GitHub PR numbers (#NNN)
  • Contributors β€” list contributors at the bottom
  • Scope filter β€” only include commits touching certain paths

Scripts

  • scripts/gather_commits.sh <from> <to> β€” Outputs JSON array of commits with hash, author, date, subject, body

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.