account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Build credit scoring models to predict default probability from borrower characteristics. Use this skill when the user needs to assess creditworthiness, build a credit scorecard, or evaluate lending risk — even if they say 'predict default risk', 'credit scoring', or 'loan
$ npx -y skills add charlieviettq/awesome-agent-skill --skill algo-risk-credit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/algo-risk-creditContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Build credit scoring models to predict default probability from borrower characteristics. Use this skill when the user needs to assess creditworthiness, build a credit scorecard, or evaluate lending risk — even if they say 'predict default risk', 'credit scoring', or 'loan
name: "\"algo-risk-credit\"" description: "\"Build credit scoring models to predict default probability from borrower characteristics. Use this skill when the user needs to assess creditworthiness, build a credit scorecard, or evaluate lending risk — even if they say 'predict default risk', 'credit scoring', or 'loan approval model'.\"." allowed-tools: Read, Glob, Grep
Credit scoring models predict the probability of default (PD) from borrower characteristics using logistic regression or gradient boosting. Output: a score (300-850 range) or PD (0-1). Used for loan approval, pricing, and portfolio risk management.
**Trigger conditions:**
**When NOT to use:**
IRON LAW: A Credit Model Must Discriminate AND Be Calibrated Discrimination (AUC): correctly ranking good vs bad borrowers. Calibration: predicted PD matches actual default rates. A model with AUC=0.85 but predicted PD 2x actual default rate will cause systematic over/under-pricing. Need BOTH properties.
Collect: borrower features (income, debt ratio, credit history length, delinquency count, utilization), outcome variable (default within 12-24 months). Handle: missing values, class imbalance (typically 2-5% default rate). **Gate:** Sufficient defaults (300+ events), features available at decision time.
1. Feature engineering: WOE (Weight of Evidence) binning for logistic regression, or direct encoding for GBDT 2. Train model: logistic regression (interpretable, regulatory-preferred) or GBDT (higher accuracy) 3. Calibrate: Platt scaling on holdout, ensure predicted PD matches actual default rate by decile 4. Convert to score: Score = offset + factor × log(odds), scaled to 300-850 range
Evaluate: AUC (>0.70 acceptable, >0.80 good), KS statistic, Gini coefficient. Population stability index (PSI) for monitoring drift. **Gate:** AUC > 0.70, calibration acceptable, no discriminatory bias in protected attributes.
Return score, PD, and key risk drivers.
{
"score": 680,
"pd": 0.035,
"risk_grade": "B",
"top_risk_factors": [{"factor": "high_utilization", "impact": -45}, {"factor": "short_history", "impact": -30}],
"metadata": {"model": "logistic_regression", "auc": 0.78, "vintage": "2024-Q3"}
}**Input:** Borrower: income=$60K, DTI=35%, 5yr credit history, 0 delinquencies, 60% utilization **Expected:** Score ~680, PD ~3.5%, Grade B (some risk from high utilization)
| Input | Expected | Why | |-------|----------|-----| | No credit history (thin file) | High uncertainty, default to conservative | Insufficient data for scoring | | All features identical | Same score regardless of outcome | Model can't differentiate — need more features | | Major economy shift | PSI > 0.25, model needs recalibration | Population has shifted from training distribution |
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…