Score breakdown0 Version history1 Source
Category Weight Category score Contribution
Security prompt, exec, net, exfil, eval
35%
100
35.0 pts
Supply chain hash, typosquat, maintainer, lockfile
20%
100
20.0 pts
Maintenance staleness, pinning, CI
15%
100
15.0 pts
Transparency SKILL.md, perms, README
15%
100
15.0 pts
Community installs, verify, response
15%
100
15.0 pts
Findings & checks · 0 flagged
Security score 100 · 0 findings
✓ — All security checks passedNo findings in this category for the latest scan. pass
Supply chain score 100 · 0 findings
✓ — All supply chain checks passedNo findings in this category for the latest scan. pass
Maintenance score 100 · 0 findings
✓ — All maintenance checks passedNo findings in this category for the latest scan. pass
Transparency score 100 · 0 findings
✓ — All transparency checks passedNo findings in this category for the latest scan. pass
Community score 100 · 0 findings
✓ — All community checks passedNo findings in this category for the latest scan. pass
Every scanned point with the score it earned and what moved between them.
1 scans · 90 days fd9391e latest
Jun 28, 2026 100 fd9391e
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
skills/commit-and-push/SKILL.md · 1 file skills/commit-and-push/SKILL.md 1.8 KB · Markdown Rendered Raw ⧉ Copy
name : commit-and-push
description : Commit
Analyze current changes and create well-organized commits.
Instructions Review recent commit history Check the last 10 git commits to understand the project's commit message style and conventions Follow the same format, tone, and structure for consistency Analyze current changes Run git status and git diff to understand all staged and unstaged changes Group related changes by their purpose (e.g., feature work, bug fixes, documentation, refactoring) Split commits by purpose Do NOT create a single commit for unrelated changes Create separate commits for each logical unit of work Each commit should be atomic and represent a single purpose Commit message format Use a conventional commit prefix: feat: - new featuresfix: - bug fixesdocs: - documentation changeschore: - maintenance tasks, dependency updatesrefactor: - code refactoring without behavior changestyle: - formatting, whitespace changestest: - adding or updating testsi18n: - internationalization changesWrite concise, descriptive messages focusing on "why" rather than "what" Keep the subject line under 72 characters Push to remote After all commits are created, push to the remote repository Use English All commit messages MUST be written in English Use clear, professional technical English Follow standard English grammar and sentence structure Use imperative mood (e.g., "Add feature" not "Added feature") Examples: feat: add user profile pagefix: resolve timeout error during logindocs: add installation guide to READMErefactor: extract authentication logic into separate module