Install payload
Install payload is broadly covered in current results.
100% (12/12)
2 trusted · 26 review · 1 limited in this set — compare to see which signals differ.
29 results in this view
3 trust signals differ in this sample: Package trust, Source provenance, Submitter
Signals differ on Package trust, Source provenance, Submitter — add entries to compare before you install.
Rollout signal scan
Biggest gaps: metadata review, package integrity. 0 entries have 2+ required gaps.
Install payload
Install payload is broadly covered in current results.
100% (12/12)
Most at-risk entries in this view
Release Changelog Generation Capability Pack Skill
No required rollout gaps
PR Title Conventional Commit Reminder - Claude Code Hook
No required rollout gaps
/draft-release-notes - Release Notes Drafting Command for Claude Code
No required rollout gaps
API Schema Drift Detector - Claude Code Hook
No required rollout gaps
Large Generated Diff Detector - Claude Code Hook
No required rollout gaps
Adoption queue
1/29 visible results are in hold tier and need mitigation before adoption.
1 blockers: Metadata review
70/100
Request metadata review from maintainers or internal owners.
skills/git-cliff-release-changelog-capability-pack · trust trusted · confidence 83%
1 blockers: Metadata review
70/100
Request metadata review from maintainers or internal owners.
skills/husky-commit-governance-capability-pack · trust trusted · confidence 83%
1 blockers: Metadata review
50/100
Request metadata review from maintainers or internal owners.
Collect package checksum or signed artifact information.
commands/release-notes-drafting · trust review · confidence 67%
1 blockers: Metadata review
50/100
Request metadata review from maintainers or internal owners.
Collect package checksum or signed artifact information.
rules/ai-assistant-secret-handling-rules · trust review · confidence 67%
1 blockers: Metadata review
50/100
Request metadata review from maintainers or internal owners.
Collect package checksum or signed artifact information.
rules/ai-generated-idor-review-rules · trust review · confidence 67%
1 blockers: Metadata review
50/100
Request metadata review from maintainers or internal owners.
Collect package checksum or signed artifact information.
rules/ai-generated-insecure-deserialization-review-rules · trust review · confidence 67%
1 blockers: Metadata review
50/100
Request metadata review from maintainers or internal owners.
Collect package checksum or signed artifact information.
rules/ai-generated-mass-assignment-review-rules · trust review · confidence 67%
1 blockers: Metadata review
50/100
Request metadata review from maintainers or internal owners.
Collect package checksum or signed artifact information.
rules/ai-generated-open-redirect-review-rules · trust review · confidence 67%
Decision confidence
2/29 results are high-confidence for the selected preset.
Confident candidate for staged adoption.
74/100
skills/git-cliff-release-changelog-capability-pack · trust trusted
Confident candidate for staged adoption.
74/100
skills/husky-commit-governance-capability-pack · trust trusted
Address Metadata review, Package integrity before broader rollout.
54/100
commands/release-notes-drafting · trust review
Address Metadata review, Package integrity before broader rollout.
54/100
rules/ai-assistant-secret-handling-rules · trust review
Address Metadata review, Package integrity before broader rollout.
54/100
rules/ai-generated-idor-review-rules · trust review
Address Metadata review, Package integrity before broader rollout.
54/100
rules/ai-generated-insecure-deserialization-review-rules · trust review
Address Metadata review, Package integrity before broader rollout.
54/100
rules/ai-generated-mass-assignment-review-rules · trust review
Address Metadata review, Package integrity before broader rollout.
54/100
rules/ai-generated-open-redirect-review-rules · trust review
Freshness distribution
Median age 54 days; 10 fresh, 2 aging or stale of 12 scanned.
Oldest entries in this view
Theme distribution
83 distinct themes with no dominant one. Most common: code-review, ai-generated-code, changelog.
83 distinct themes across 24 scanned
Expert release-changelog capability pack for git-cliff with conventional commits, deterministic release notes, and low-maintenance versioning.
Expert husky capability pack for lightweight local quality gates, commit message enforcement, and low-friction contributor workflows.
Expert release changelog generation capability pack for drafting, validating, and publishing user-facing release notes from conventional commits, tags, and GitHub Releases with source-backed review matrices and privacy-safe output.
Read-only Claude Code Stop hook that checks the current GitHub pull request title against a Conventional Commits style pattern before the session ends, then falls back to the latest commit subject when no PR title is available.
Slash command that drafts release notes from the Conventional Commits made since the last release tag.
PostToolUse hook that compares a just-edited OpenAPI or JSON Schema document against the version committed in git and warns about backward-incompatible drift — removed OpenAPI paths and removed required properties — so breaking API changes are surfaced before they ship. Advisory only; it never blocks the edit.
PostToolUse hook that flags two review hazards as Claude writes files: edits to generated or vendored artifacts (lockfiles, minified bundles, source maps, dist/build output, snapshots, protobuf output) and oversized diffs that change more lines than a configurable threshold versus the committed version.
PreToolUse hook that scans the exact text Claude Code is about to write or edit for high-confidence secret formats (AWS access keys, GitHub tokens, OpenAI keys, Slack tokens, Google API keys, Stripe keys, and private key blocks) and blocks the write with a non-zero exit before the secret ever reaches disk.
A release-manager workflow collection for shipping versions safely: draft release notes from Conventional Commits, govern commits, triage red CI, checkpoint risky changes, and generate changelog artifacts before tagging.
Source-backed rules for AI coding assistants that must avoid exposing, copying, logging, committing, or normalizing secrets while editing code, configs, tests, prompts, documentation, and CI workflows.
Source-backed rules for contributor pull requests that need clear commit messages, release-note-ready changelog entries, issue links, breaking-change markers, and privacy-safe history.
An operations bundle for maintainers running a busy GitHub repository: triage failing CI, review pull requests, keep commits and changelogs disciplined, validate workflows and links, and draft release notes.
Automatically commits all changes with a summary when Claude Code session ends.
Comprehensive pre-commit hook that validates code quality, runs tests, and enforces standards.
Intelligently analyzes changes and creates well-formatted git commits with conventional commit messages
Source-backed rules for reviewing AI-generated endpoints and data-access code before merge for insecure direct object reference risk, covering per-request object-level authorization checks, scoped database lookups, identifier exposure, and consistent enforcement across read, write, and admin operations.
Source-backed rules for reviewing AI-generated code that deserializes data before merge for insecure deserialization risk, covering native serialization formats (pickle, PyYAML, Java Serializable) that can execute arbitrary code on untrusted input, safe data-interchange alternatives, and class allowlisting/integrity checks when native formats can't be avoided.
Source-backed rules for reviewing AI-generated code that binds request parameters to model/entity objects before merge for mass assignment risk, covering allowlist field binding, DTOs that exclude sensitive fields, and the framework-specific autobinding features that make this easy to introduce by default.
Source-backed rules for reviewing AI-generated redirect and forward logic before merge for open redirect risk, covering allowlist-based destination validation, relative-path/indexed-mapping alternatives to raw URLs, and the privilege-escalation and phishing impact of an unvalidated redirect target.
Source-backed rules for reviewing AI-generated code that builds or runs operating-system commands, shell invocations, or subprocesses before merge for command injection and argument injection risk, covering library alternatives to shelling out, array-form process APIs, allowlist input validation, and least-privilege execution.
Source-backed rules for reviewing AI-generated JavaScript/TypeScript code before merge for prototype pollution risk, covering unsafe recursive merge/clone/assign helpers on untrusted input, proto and constructor-prototype key handling, and safer alternatives like Map, Set, and Object.create(null).
Source-backed rules for reviewing AI-generated code that renders untrusted data into HTML, JavaScript, URLs, or CSS before merge for cross-site scripting risk, covering context-correct output encoding, dangerous DOM sinks, HTML sanitization, and Content-Security-Policy as defense in depth.
Manage your Knock notification infrastructure from Claude — create and edit workflows, channels, templates, and email layouts, manage users and tenants, commit changes across environments, and debug message logs — with the official Knock remote MCP server.
Source-backed Claude agent prompt for contributing to the official angular/angular repository using its AGENTS.md guidance for pnpm, Bazel test targets, coding standards, commit guidelines, zoneless tests, async stability, and PR handling.
Claude Code statusline that reads GitHub REST check runs for the active pull request head commit and summarizes failed, pending, and passing checks.
Source-backed Claude agent prompt for contributing to the official kubernetes/kubernetes repository using its AGENTS.md guidance for generated files, go.mod/go.work handling, staging source of truth, boilerplate, focused changes, tests, commit-message restrictions, make test, make verify, and make update workflows.
Set up Claude Code GitHub Actions for pull request review: install the Claude GitHub app, store ANTHROPIC_API_KEY in secrets, pin anthropics/claude-code-action to an audited commit SHA with least-privilege permissions, and follow documented security practices.
Install and use the official Claude Code security-guidance plugin before merge: per-edit pattern warnings, end-of-turn and commit git-diff review, and team rollout for command injection, XSS, eval, and dangerous file edits.
Claude Code statusline that surfaces sensitive environment-file risk and can optionally run git-secrets as a local pre-commit-style scanner.