From grc-engineer
Converts unstructured risk assessments into structured Jira tickets. Extracts Likelihood, Impact, Mitigation from natural language and generates JSON formatted for Jira API with clear Definition of Done criteria.
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 fianulabs/claude-grc-engineering --plugin grc-engineerGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
2plugins reuse this skill
First indexed Jul 10, 2026