skills/18-jusi-aalto-stata-accounting-research/SKILL.md
STATA code pattern library for empirical archival accounting research. Provides tested syntax from 126 peer-reviewed JAR (Journal of Accounting Research) replication files (2017-2025). Use when the user asks procedural questions like "How do I implement [method]?" or "Show me code for [technique]" — including: entropy balancing, propensity score matching (PSM), difference-in-differences (DiD), regression discontinuity (RDD), instrumental variables (IV), event studies (CAR/BHAR), survival analysis, Fama-MacBeth regressions, bootstrap, quantile regression, reghdfe/xtreg/areg, clustering standard errors, fixed effects, esttab/outreg2 table formatting, winsorization, leads/lags. Users can specify their variables (e.g., treatment, outcomes, controls) and receive adapted syntax. NOTE: This skill provides code patterns from published papers, not research design advice.
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research stata-accounting-researchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill is a code pattern library, not a methodological advisor.
| Can Do | Cannot Do | |--------|-----------| | Show how published papers implemented methods | Explain when to use one method over another | | Provide tested STATA syntax | Advise on identification strategy | | Indicate which robustness tests accompany analyses | Discuss research design trade-offs | | Cite source papers for code patterns | Recommend optimal research design |
When users ask methodology questions (e.g., "Should I use entropy balancing or PSM?", "How do I address endogeneity?", "Is my identification strategy valid?"):
Use references/REFERENCES.md as the primary index, then read targeted .do files.
Search references/REFERENCES.md to identify relevant papers. The index contains structured metadata:
Example queries on REFERENCES.md:
Read only the identified .do files to extract actual syntax. This reduces context usage and improves accuracy.
For very specific syntax queries (e.g., "how does absorb() handle singletons?"), grep .do files directly:
| Task | Grep Pattern |
|------|--------------|
| Panel regressions | reghdfe\|xtreg\|areg |
| Fixed effects | absorb\(\|i\.year\|i\.firm |
| Clustering | cluster\(\|vce\(cluster |
| Matching/PSM | psmatch2\|teffects\|cem\|ebalance\|pscore |
| IV regression | xtivreg\|ivregress\|ivreg2 |
| DiD | post.*treat\|treat.*post\|parallel.*trend |
| RDD | rdrobust\|rddensity |
| Event studies | CAR\|BHAR\|abnormal.*return |
| Survival | stcox\|streg\|stset |
| Fama-MacBeth | fama.?macbeth\|newey.*west |
| Bootstrap | bootstrap\|bsample |
| Quantile regression | qreg\|sqreg\|bsqreg |
| Table output | esttab\|outreg2\|eststo |
| Winsorization | winsor\|winsor2 |
126 STATA .do files from JAR Volumes 55-63 (2017-2025). See references/REFERENCES.md for complete catalog with paper titles and authors.
JAR_{volume}_{shortcode}.doJAR_{volume}_{issue}_{shortcode}_{authors}.do| Volume | Year | Papers | |--------|------|--------| | 55 | 2017 | 9 | | 56 | 2018 | 12 | | 57 | 2019 | 9 | | 58 | 2020 | 13 | | 59 | 2021 | 4 | | 60 | 2022 | 22 | | 61 | 2023 | 22 | | 62 | 2024 | 25 | | 63 | 2025 | 10 |
* Firm and year FE with firm-clustered SEs (most common)
reghdfe depvar indepvar controls, absorb(firm year) cluster(firm)
* Industry-year FE
reghdfe depvar indepvar controls, absorb(ind_year) cluster(firm)
eststo clear
eststo: reghdfe depvar indepvar controls, absorb(firm year) cluster(firm)
esttab using "table.tex", replace star(* 0.10 ** 0.05 *** 0.01) se
winsor2 varlist, cuts(1 99) replace
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.