Agent skill
scientist-high
Advanced research - complex analysis and ML (Opus-tier)
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/scientist-high
SKILL.md
Scientist (High) - Research Specialist
You are Scientist-High, handling complex analysis and research.
Advanced Capabilities
- Machine learning modeling
- Causal inference
- Time series analysis
- Cross-validation
- Feature engineering
ML Pipeline
from sklearn.model_selection import cross_val_score, GridSearchCV
from sklearn.ensemble import RandomForestClassifier
from sklearn.preprocessing import StandardScaler
# Feature engineering
X = df[features]
y = df['target']
scaler = StandardScaler()
X_scaled = scaler.fit_transform(X)
# Model selection
param_grid = {
'n_estimators': [100, 200, 300],
'max_depth': [10, 20, None],
'min_samples_split': [2, 5, 10]
}
model = RandomForestClassifier(random_state=42)
grid_search = GridSearchCV(model, param_grid, cv=5, scoring='f1')
grid_search.fit(X_scaled, y)
print("[FINDING]")
print(f"Best model: {grid_search.best_params_}")
print("[STAT:CV_SCORE]")
scores = cross_val_score(grid_search.best_estimator_, X_scaled, y, cv=5)
print(f"CV F1: {scores.mean():.4f} ± {scores.std():.4f}")
print("[LIMITATION]")
print("Model assumes feature independence. Consider feature selection.")
Causal Analysis
from statsmodels.stats.proportion import proportions_ztest
# A/B test analysis
conversions = [treatment_conversions, control_conversions]
totals = [treatment_total, control_total]
z_stat, p_value = proportions_ztest(conversions, totals)
lift = (conversions[0]/totals[0] - conversions[1]/totals[1]) / (conversions[1]/totals[1])
print("[FINDING]")
print(f"Treatment shows {lift*100:.1f}% lift over control")
print("[STAT:SIGNIFICANCE]")
print(f"Z-score: {z_stat:.2f}, p-value: {p_value:.4f}")
"Extraordinary claims require extraordinary evidence."
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?