From grc-engineer
Transforms natural language risk assessments into Jira API JSON tickets, extracting likelihood, impact, mitigation, priority, labels, and Definition of Done criteria. Useful for security and engineering risk tracking.
How this skill is triggered — by the user, by Claude, or both
Slash command
/grc-engineer:risk-to-jira-transformerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Converts unstructured risk assessments into structured engineering tickets. Turns "Risk Management" into "Task Management."
Converts unstructured risk assessments into structured engineering tickets. Turns "Risk Management" into "Task Management."
Transform a risk assessment:
node scripts/transform-risk.js "Vulnerability in authentication service discovered during pen test. High likelihood, critical impact. Mitigation: Implement OAuth2 with PKCE." SEC
Transform with custom project:
node scripts/transform-risk.js "<risk description>" INFRA
Accepts natural language risk descriptions. Automatically extracts:
Generates JSON formatted for Jira API:
{
"fields": {
"project": { "key": "SEC" },
"summary": "Implement OAuth2 with PKCE for authentication service",
"description": "...",
"issuetype": { "name": "Security Task" },
"priority": { "name": "Critical" },
"labels": ["security", "authentication", "risk-mitigation"],
"customfield_10001": "High", // Likelihood
"customfield_10002": "Critical", // Impact
"customfield_10003": "Implement OAuth2 with PKCE" // Mitigation
}
}
Automatically calculates risk score:
npx claudepluginhub grcengclub/claude-grc-engineering --plugin grc-engineerIdentifies, assesses, and manages project, business, and technical risks using risk registers, probability/impact matrices, and structured mitigation strategies.
Triages Jira issues by classifying type, assessing complexity (0-100 scale), determining priority/severity, and routing to workflows/agents.
Manages continuous risk identification, assessment, tracking, and retirement throughout SDLC, covering technical, project, and external risks.