development-economics-guide
Apply development economics research methods and data sources
Best use case
development-economics-guide is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Apply development economics research methods and data sources
Teams using development-economics-guide should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/development-economics-guide/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How development-economics-guide Compares
| Feature / Agent | development-economics-guide | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Apply development economics research methods and data sources
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Development Economics Guide
A skill for conducting development economics research, covering impact evaluation methods, field experiment design, household survey analysis, key data sources, and the methodological toolkit used to study poverty, education, health, and institutions in developing countries.
## Impact Evaluation Methods
### The Identification Problem
```
Fundamental question: What is the causal effect of a program/policy?
Challenge: We observe outcomes for treated individuals, but we cannot
observe what would have happened to them without treatment
(the counterfactual).
Solutions (from strongest to weakest causal identification):
1. Randomized Controlled Trials (RCTs / field experiments)
2. Regression Discontinuity Design (RDD)
3. Instrumental Variables (IV)
4. Difference-in-Differences (DiD)
5. Matching / Propensity Score Methods
6. Cross-sectional regression with controls (weakest)
```
### Randomized Controlled Trials in Development
```python
def design_field_experiment(intervention: str,
unit: str,
clusters: int,
expected_effect: float) -> dict:
"""
Design a cluster-randomized field experiment.
Args:
intervention: Description of the program/policy
unit: Unit of randomization (individual, household, village, school)
clusters: Number of clusters available
expected_effect: Expected effect size (standard deviations)
"""
return {
"intervention": intervention,
"randomization_unit": unit,
"design_considerations": {
"cluster_vs_individual": (
"Cluster randomization when intervention operates at group level "
"or to avoid spillovers between treated and control within clusters."
),
"stratification": (
"Stratify randomization by baseline covariates (e.g., region, "
"baseline outcome) to improve balance and statistical power."
),
"sample_size": {
"clusters": clusters,
"note": (
"With cluster randomization, power depends more on number "
"of clusters than individuals per cluster. Aim for 20+ "
"clusters per arm. Account for ICC (intracluster correlation)."
)
},
"expected_effect": expected_effect,
"pre_registration": "Register at AEA RCT Registry (socialscienceregistry.org)"
},
"threats": [
"Attrition (differential dropout between arms)",
"Non-compliance (some treated do not take up, some controls do)",
"Spillovers (treatment affects control units)",
"Hawthorne effects (behavior changes from being observed)",
"Ethical concerns (withholding a beneficial intervention)"
]
}
```
## Difference-in-Differences
### Standard DiD Framework
```
Setup:
Treatment group and control group
Observed before and after the intervention
Estimator:
DiD = (Y_treat_after - Y_treat_before) - (Y_control_after - Y_control_before)
Key assumption: Parallel trends
In the absence of treatment, treatment and control groups would have
followed the same trajectory over time.
Validation:
- Plot pre-treatment trends for both groups
- Test for pre-treatment differences in trends
- Consider event-study specification with leads and lags
```
```python
import pandas as pd
def estimate_did(df: pd.DataFrame, outcome: str,
treatment_col: str, post_col: str) -> dict:
"""
Estimate a Difference-in-Differences model.
Args:
df: Panel DataFrame
outcome: Outcome variable name
treatment_col: Binary treatment indicator
post_col: Binary post-period indicator
"""
from statsmodels.formula.api import ols
df["treat_post"] = df[treatment_col] * df[post_col]
model = ols(
f"{outcome} ~ {treatment_col} + {post_col} + treat_post",
data=df
).fit(cov_type="cluster", cov_kwds={"groups": df["cluster_id"]})
return {
"did_estimate": model.params["treat_post"],
"std_error": model.bse["treat_post"],
"p_value": model.pvalues["treat_post"],
"ci_95": model.conf_int().loc["treat_post"].tolist(),
"note": "Standard errors clustered at the cluster level"
}
```
## Key Data Sources
### Major Datasets for Development Research
| Dataset | Coverage | Content |
|---------|----------|---------|
| World Bank LSMS | Multi-country | Household consumption, income, agriculture |
| DHS (Demographic and Health Surveys) | 90+ countries | Health, fertility, education, household |
| MICS (UNICEF) | 100+ countries | Child welfare indicators |
| World Development Indicators | Global | Macro indicators (GDP, poverty, health) |
| Penn World Tables | Global | PPP-adjusted GDP, capital, productivity |
| IPUMS International | Global | Census microdata harmonized across countries |
| Afrobarometer / Latinobarometro | Regional | Attitudes, governance, democracy |
## Measurement Challenges
### Common Issues in Development Data
```
Poverty measurement:
- Consumption vs. income (consumption preferred in developing countries)
- Purchasing power parity (PPP) adjustments
- Poverty line selection ($2.15/day international line)
Survey design:
- Sampling frame may miss mobile/nomadic populations
- Recall period affects consumption estimates
- Sensitive questions (income, violence) require careful design
- Translation and cultural adaptation of instruments
Administrative data:
- Often incomplete or of variable quality
- Can complement survey data for larger populations
- Satellite imagery increasingly used as proxy (nighttime lights, rooftop material)
```
## Publishing in Development Economics
### Where to Publish
Top general journals that publish development economics: AER, QJE, Econometrica, ReStud, JPE. Field journals: Journal of Development Economics, World Development, Economic Development and Cultural Change, World Bank Economic Review. Pre-register field experiments at the AEA RCT Registry. Make data and code available in a replication package (AEA Data and Code Repository). Follow the J-PAL research transparency guidelines for field experiments.Related Skills
thuthesis-guide
Write Tsinghua University theses using the ThuThesis LaTeX template
thesis-writing-guide
Templates, formatting rules, and strategies for thesis and dissertation writing
thesis-template-guide
Set up LaTeX templates for PhD and Master's thesis documents
sjtuthesis-guide
Write SJTU theses using the SJTUThesis LaTeX template with full compliance
novathesis-guide
LaTeX thesis template supporting multiple universities and formats
graphical-abstract-guide
Create SVG graphical abstracts for journal paper submissions
beamer-presentation-guide
Guide to creating academic presentations with LaTeX Beamer
plagiarism-detection-guide
Use plagiarism detection tools and ensure manuscript originality
paper-polish-guide
Review and polish LaTeX research papers for clarity and style
grammar-checker-guide
Use grammar and style checking tools to polish academic manuscripts
conciseness-editing-guide
Eliminate wordiness and redundancy in academic prose for clarity
academic-translation-guide
Academic translation, post-editing, and Chinglish correction guide