pipeline
Classical end-to-end empirical analysis workflow in the traditional Python econometric stack — pandas + numpy + scipy + statsmodels + linearmodels + pyfixest +…
This skill covers game-theoretic methods in structural econometrics and industrial organization. Use when the user is working with strategic interactions, equilibrium analysis, or game-theoretic structural models — including entry games, conduct testing, auction models with
$ npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill game-theory --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/game-theoryContext preview
The summary Claude sees to decide when to auto-load this skill.
This skill covers game-theoretic methods in structural econometrics and industrial organization. Use when the user is working with strategic interactions, equilibrium analysis, or game-theoretic structural models — including entry games, conduct testing, auction models with
name: game-theory argument-hint: "<equilibrium concept or game type>" description: >- This skill covers game-theoretic methods in structural econometrics and industrial organization. Use when the user is working with strategic interactions, equilibrium analysis, or game-theoretic structural models — including entry games, conduct testing, auction models with strategic bidding, bargaining, or matching markets. Triggers on "Nash equilibrium", "subgame perfect", "best response", "strategic interaction", "entry game", "conduct testing", "auction", "mechanism design", "matching market", "bargaining", "BNE", "Bayesian Nash", "static game", "dynamic game", "repeated game", "multiple equilibria", "equilibrium selection", "discrete game", "oligopoly", "game-theoretic", "player", "payoff", "strategy", "dominant strategy", "Bresnahan-Reiss", "Ciliberto-Tamer", "partial identification", "set identification", or markup test.
Reference for game-theoretic methods in applied structural econometrics and industrial organization. Covers equilibrium concepts, computational methods, structural IO applications, and the identification challenges unique to game-theoretic models.
Use when the user is:
Skip when:
**Quick reference only** — for full implementation code, see `references/` subdirectory.
---
import nashpy as nash
import numpy as np
# Define a 2-player game: row player payoffs A, column player payoffs B
A = np.array([[3, 0], [5, 1]]) # e.g., Prisoner's Dilemma
B = A.T # Symmetric game
game = nash.Game(A, B)
# Find ALL Nash equilibria via support enumeration
for i, (sr, sc) in enumerate(game.support_enumeration()):
print(f"NE {i+1}: row={sr.round(3)}, col={sc.round(3)}")For larger games, extensive-form games, or QRE computation, see `references/equilibrium-computation.md`.
| Information Structure | Timing | Concept | Refinement | Key Reference | |----------------------|--------|---------|------------|--------------| | Complete | Simultaneous | Nash equilibrium | Dominant strategy, trembling-hand perfect | — | | Complete | Sequential | Subgame perfect equilibrium (SPE) | Backward induction | — | | Complete | Repeated | SPE with trigger strategies | Folk theorem, Nash reversion | Green-Porter (1984) | | Complete | Dynamic (states) | Markov perfect equilibrium (MPE) | Strategies depend only on payoff-relevant state | Ericson-Pakes (1995) | | Incomplete (private types) | Simultaneous | Bayesian Nash equilibrium (BNE) | Monotone strategies, threshold equilibria | — | | Incomplete | Sequential | Perfect Bayesian equilibrium (PBE) | Sequential rationality + Bayesian updating | Kreps-Wilson |
**Decision tree:** 1. Do players have private information? → Yes: BNE framework. No: Nash/SPE. 2. Is the game sequential? → Yes: SPE (backward induction) or MPE (dynamic states). No: simultaneous Nash. 3. Is the game repeated? → Yes: folk theorem applies; collusion may be sustainable. 4. Are there multiple equilibria? → See [Multiple Equilibria Summary](#multiple-equilibria-summary).
For detailed definitions, formulas, and the complete-vs-incomplete information comparison table, see `references/equilibrium-concepts.md`.
---
The central identification challenge in empirical games. Three resolution strategies:
| Strategy | Approach | Trade-off | Key Reference | |----------|----------|-----------|--------------| | **Impose selection rule** | Order firms by profitability; pick unique NE | Point identification, but selection rule is an assumption | Berry (1992) | | **Set identification** | Accept all NE-consistent parameters | No selection assumption, but wider confidence regions | Ciliberto-Tamer (2009) | | **Exploit multiplicity** | Use correlates of equilibrium selection as instruments | Point identification with weaker assumptions | Sweeting (2009) | | **QRE** | Bounded rationality generates unique equilibrium | Testable, but imposes logistic choice structure | McKelvey-Palfrey |
For the full selection rule comparison table, QRE implementation code, and Ciliberto-Tamer bounds procedure, see `references/multiple-equilibria.md`.
---
Two sources of endogeneity distinguish games from single-agent models: (1) strategic complementarities/subst
📌 文档结构(2026-07-22 起): 本文件是中文默认入口 —— banner + badges + 信任面 + 9 阶段流水线速览 + 76 行合集总表。 每个合集的完整描述、按用途分组、精确数字、验证方法在 docs/CONTENT_ZH.md(扩展正文,总表行内的 → 直接跳转到对应锚点)。 English version: README-en.md · 中文扩展正文:docs/CONTENT_ZH.md · README-zh-CN.md 已弃用(重定向占位) 🌐 语言: English |
Classical end-to-end empirical analysis workflow in the traditional Python econometric stack — pandas + numpy + scipy + statsmodels + linearmodels + pyfixest +…
Use when the user asks to run a full empirical / causal analysis in Python — by default in the style of an applied economics paper (AER / QJE / JPE / ReStud /…
Classical end-to-end empirical analysis workflow in the traditional Python econometric stack — pandas + numpy + scipy + statsmodels + linearmodels + pyfixest +…
Classical end-to-end empirical analysis workflow in the traditional Stata ecosystem — native Stata + reghdfe + ivreg2 + csdid + did_imputation +…
Classical end-to-end empirical analysis workflow in the modern tidyverse + econometrics R ecosystem — dplyr + tidyr + haven + fixest + sandwich + lmtest +…
Systematic writing framework for philosophy and interdisciplinary academic papers from optimized outline to submission-ready manuscript. Use when users want…