jira-ticket-git — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited jira-ticket-git (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Turn the current git changes into a well-formed Jira/Linear-style ticket with acceptance criteria.
Determine the base branch using the first method that succeeds:
gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name' 2>/dev/null to get the default branch.git remote show origin 2>/dev/null | grep 'HEAD branch' to detect it from the remote config.main, master, or develop exist on the remote with git branch -r.Run git log --oneline <base>..HEAD to list commits on this branch. Run git diff <base>...HEAD to see all changes introduced by the branch. If there are no commits ahead of the base branch, tell the user there is nothing to generate a ticket from and stop.
Using the diff and commit context, output the ticket in this format:
Title A short, imperative-tense summary of what the change does (under 72 characters). Suitable for a ticket title or story card.
Type Infer one of: Story, Bug, Task, Spike. Use Story for user-facing features, Bug for defects, Task for internal/non-feature work, Spike for research or investigation.
Description 2-4 sentences explaining what needs to be done and why, written as if the work has not yet been done. Describe the intent and value, not the implementation. If the diff reveals implementation details, use them only to infer the purpose.
Acceptance Criteria A checklist of specific, testable conditions that must be true for the ticket to be considered done. Derive these from what the diff actually changes — each criterion should correspond to observable behaviour.
Out of Scope (optional) List anything that might seem related but is explicitly not included. Omit this section if nothing needs clarifying.
Rules:
$ARGUMENTS
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.