원클릭으로
risk-assessment
Analyze risk factors for a specific entity or group of entities from the risk register
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze risk factors for a specific entity or group of entities from the risk register
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Map the gift-flow network around a charity to find connected organizations and clusters
Side-by-side comparison of multiple charities on financial and circular gifting metrics
Run the circular gifting detection pipeline and interpret the top results
Profile a charity's finances, gift network, circular flows, and accountability metrics
Analyze timing of circular gift flows - same-year symmetric and adjacent-year round-trips
Audit a federal department's grant spending - recipients, concentration, amendments, and risks
| name | risk-assessment |
| description | Analyze risk factors for a specific entity or group of entities from the risk register |
| argument-hint | [entity name, province code, or 'top N'] |
| disable-model-invocation | true |
Perform a risk assessment for $ARGUMENTS.
node -e "const r=require('./data/reports/risk-register.json'); console.log('Summary:', JSON.stringify(r.summary)); console.log('Methodology:', JSON.stringify(r.methodology.dimensions, null, 2));"
# By name:
node -e "const r=require('./data/reports/risk-register.json'); const matches=r.critical_and_high.filter(e=>e.name.toLowerCase().includes('SEARCH')); matches.slice(0,20).forEach((e,i)=>console.log((i+1)+'. ['+e.total_score+'/35 '+e.risk_level+'] '+e.recipient_type+' | '+e.province+' | $'+(e.total_value/1e6).toFixed(1)+'M | '+e.name.slice(0,50)));"
# By province:
node -e "const r=require('./data/reports/risk-register.json'); const matches=r.critical_and_high.filter(e=>e.province==='AB').sort((a,b)=>b.total_score-a.total_score); console.log('Found:',matches.length); matches.slice(0,20).forEach((e,i)=>console.log((i+1)+'. ['+e.total_score+'] '+e.recipient_type+' | $'+(e.total_value/1e6).toFixed(1)+'M | '+e.name.slice(0,50)+' | '+e.factors.join(', ')));"
# Top N:
node -e "const r=require('./data/reports/risk-register.json'); r.top_risks.slice(0,20).forEach((e,i)=>console.log((i+1)+'. ['+e.total_score+'/35] '+e.recipient_type+' | '+e.province+' | $'+(e.total_value/1e6).toFixed(1)+'M | '+e.name.slice(0,50)));"
node -e "const r=require('./data/reports/risk-register.json'); const e=r.top_risks.find(x=>x.name.includes('NAME')); if(e){console.log(JSON.stringify({name:e.name,type:e.recipient_type,province:e.province,score:e.total_score,level:e.risk_level,scores:e.scores,factors:e.factors,total_value:e.total_value,grants:e.original_count,last_year:e.last_year},null,2))}"
Cross-reference with other reports for deeper context:
data/reports/zombie-and-ghost.json for cessation/ghost signalsdata/reports/amendment-creep.json for amendment patternsdata/reports/recipient-concentration.json for dominance patternsPresent the assessment with: