Domain-validated guidance for SEM-based mediation analysis of creative self-efficacy and moderation by baseline creativity in AI-augmented creativity research
This skill encodes expert methodological knowledge for analyzing the psychological mechanisms through which AI tools (ChatGPT, web search) affect human creativity. Specifically, it covers SEM-based mediation analysis with creative self-efficacy as a mediator, and moderation analysis using baseline creativity. A general-purpose programmer could run a mediation analysis package, but would not know why creative self-efficacy is the theoretically motivated mediator, how to measure it, what the RAT measures and why it is the appropriate baseline, or how to interpret the indirect effect in the context of creativity theory.
When to Use This Skill
Investigating why an intervention affects creativity (not just whether it does)
Testing whether creative self-efficacy mediates the effect of AI/tool use on creative output
Examining whether baseline creativity moderates the effect of AI assistance
Designing a study that needs both mediation and moderation analysis for creativity outcomes
Specifying SEM models for creativity research using lavaan (R)
Research Planning Protocol
Before executing the domain-specific steps below, you MUST:
State the research question — What mechanism or moderator is being tested?
Justify the method choice — Why SEM-based mediation (not Baron & Kenny, not PROCESS)? What alternatives were considered?
Declare expected outcomes — What pattern of indirect/direct effects would support vs. refute the hypothesis?
Note assumptions and limitations — What does SEM assume? Where could cross-sectional mediation mislead?
Present the plan to the user and WAIT for confirmation before proceeding.
For detailed methodology guidance, see the research-literacy skill.
⚠️ Verification Notice
This skill was generated by AI from academic literature. All parameters, thresholds, and citations require independent verification before use in research. If you find errors, please open an issue.
Theoretical Framework
Creative Self-Efficacy as Mediator
Creative self-efficacy (CSE) = an individual's belief in their ability to produce creative outcomes (Tierney & Farmer, 2002). It is grounded in Bandura's (1997) self-efficacy theory: people who believe they can be creative are more likely to attempt, persist at, and succeed in creative tasks.
Hypothesized causal chain (Lee & Chung, 2024):
AI tool use → ↓ Creative Self-Efficacy → ↓ Creative Output
Mechanism: Using AI to generate ideas may undermine the user's
belief in their own creative ability, leading to reduced creative
effort and output on subsequent tasks.
Baseline Creativity as Moderator
Baseline creativity moderates how much AI assistance affects creative output:
High-creativity individuals: May benefit less from AI (ceiling effect) or be harmed more (self-efficacy threat)
Low-creativity individuals: May benefit more from AI (scaffolding) or show less effect (floor effect)
Lee & Chung (2024) found that ChatGPT use disproportionately reduced creativity for individuals with higher baseline creativity (measured by RAT).
"I have confidence in my ability to solve problems creatively"
"I feel that I am good at generating novel ideas"
"I have a knack for further developing the ideas of others"
Property
Value
Source
Cronbach's alpha
0.83-0.89
Tierney & Farmer, 2002; Lee & Chung, 2024
Test-retest reliability
0.77
Tierney & Farmer, 2002
Scale score
Mean of 3 items
Tierney & Farmer, 2002
Administration time
<1 minute
—
Timing
Administer after the manipulation, before the creativity task
Lee & Chung, 2024
Critical timing note: CSE must be measured after the manipulation (e.g., after ChatGPT use) and before the outcome measure. Measuring CSE before the manipulation captures trait CSE, not the mediated state change.
Remote Associates Test — RAT (Mednick, 1962)
Used as the baseline creativity measure for moderation analysis.
Property
Value
Source
Items
15 three-word problems
Lee & Chung, 2024
Format
Each item presents 3 words; participant finds the common associate
Mednick, 1962
Time limit
30 seconds per item or untimed
Lee & Chung, 2024
Scoring
Number correct out of 15
Lee & Chung, 2024
What it measures
Convergent thinking — finding the single correct remote association
Mednick, 1962
Example item: FALLING / ACTOR / DUST → answer: STAR
Why RAT as baseline: RAT measures convergent thinking (a creativity component independent of divergent thinking), so it serves as a baseline creativity indicator without directly measuring the same construct as the AUT outcome (Lee & Chung, 2024).
SEM Mediation Model Specification
Model Structure (Lee & Chung, 2024)
Creative Self-Efficacy (M)
↗ a b ↘
AI Condition (X) Creativity Score (Y)
————— c' —————→
Path a: Effect of AI condition on CSE
Path b: Effect of CSE on creativity, controlling for condition
Path c': Direct effect of condition on creativity, controlling for CSE
Indirect effect: a × b (the mediated portion)
Total effect: c = c' + a × b
lavaan Specification (R)
library(lavaan)
mediation_model <- '
# Measurement model (if using latent variables)
# CSE =~ cse1 + cse2 + cse3 # Uncomment for latent CSE
# Structural model
cse ~ a * condition # Path a: X → M
creativity ~ b * cse + # Path b: M → Y
cprime * condition # Path c': X → Y (direct)
# Indirect and total effects
indirect := a * b # Mediated effect
total := cprime + a * b # Total effect
'
fit <- sem(mediation_model, data = df, se = "bootstrap", bootstrap = 5000)
summary(fit, ci = TRUE)
Key Specification Decisions
Decision
Recommendation
Rationale
SE estimation
Bootstrap (5000 samples)
Indirect effects are non-normal; bootstrap CIs are preferred over Sobel test (Preacher & Hayes, 2008)
CI type
Bias-corrected bootstrap
More accurate than percentile bootstrap for indirect effects (MacKinnon et al., 2004)
Estimator
ML (maximum likelihood)
Default for continuous outcomes; use MLR for non-normal data
Missing data
FIML (full information ML)
Handles missing data without listwise deletion
Significance
95% bootstrap CI excluding zero
Do NOT rely on p-values for indirect effects
Moderation Analysis
Baseline Creativity × Condition Interaction
Two approaches (Lee & Chung, 2024 used both):
Approach 1: Median Split (Descriptive)
Compute median RAT score across all participants
Split into high-creativity (above median) and low-creativity (below median) groups
Run separate ANOVAs or t-tests within each subgroup
Report condition effects separately for high vs low creativity
Limitation: Median split loses information and reduces power (MacCallum et al., 2002). Use for visualization/description; rely on continuous moderation for inference.
Approach 2: Continuous Moderation (Inferential)
# In lavaan or linear regression
moderation_model <- '
creativity ~ b1 * condition +
b2 * rat_score +
b3 * condition:rat_score # Interaction term
'
# b3 = moderation effect
# Probe interaction at ±1 SD of RAT score (Aiken & West, 1991)
Interpreting Moderation Results
Pattern
Interpretation
Lee & Chung (2024) Finding
Significant interaction, negative b3
AI assistance is more harmful for high-creativity individuals
Confirmed: ChatGPT reduced creativity more for high-RAT participants
Significant interaction, positive b3
AI assistance benefits high-creativity individuals more
Not observed
No significant interaction
AI effect is similar across creativity levels
—
Simple Slopes Visualization
Plot creativity scores against condition, separately for high (+1 SD) and low (-1 SD) baseline creativity:
library(emmeans)
# For interaction probing
emtrends(model, ~ condition, var = "rat_score")
# Or Johnson-Neyman technique for regions of significance
Moderated Mediation (Full Model)
When both mediation and moderation are relevant, combine into a conditional indirect effect model:
Does the indirect effect (X → M → Y) depend on baseline creativity (W)?
Model:
CSE ~ a1 * condition + a2 * rat + a3 * condition:rat
creativity ~ b * cse + c' * condition
Conditional indirect effect at level w of RAT:
(a1 + a3 * w) × b
Software: Use lavaan with bootstrap, or the mediation package in R, or PROCESS macro Model 7 (Hayes, 2022).
Common Pitfalls
Cross-sectional mediation as causal evidence: Mediation in a cross-sectional or single-session design cannot establish temporal causation. The X → M → Y sequence must be theoretically justified and, ideally, measured at different time points (Bullock et al., 2010). Lee & Chung (2024) addressed this by measuring CSE after manipulation but before the outcome task.
Interpreting non-significant direct effect as "full mediation": A non-significant c' does not prove full mediation — it may reflect insufficient power. Report both direct and indirect effects with CIs (Rucker et al., 2011).
Using the Sobel test instead of bootstrapping: The Sobel test assumes normality of the indirect effect, which is almost never met. Use bootstrap CIs exclusively (Preacher & Hayes, 2008).
Forgetting to measure the mediator at the right time: CSE must be measured after the manipulation and before the outcome. Measuring at the wrong time destroys the mediation logic.
Median split without continuous analysis: Dichotomizing a continuous moderator loses statistical power and can create spurious interactions. Always accompany median splits with continuous moderation analysis (MacCallum et al., 2002).
Ignoring measurement reliability: Low reliability of the CSE scale attenuates the mediated effect. Report Cronbach's alpha and consider latent variable SEM if reliability is below 0.80.
Not controlling for potential confounders: In online studies, prior AI experience, age, education, and task engagement may confound the condition-creativity relationship. Include as covariates or demonstrate randomization balance.
Minimum Reporting Checklist
Based on Lee & Chung (2024) and Preacher & Hayes (2008):
MacCallum, R. C., Zhang, S., Preacher, K. J., & Rucker, D. D. (2002). On the practice of dichotomization of quantitative variables. Psychological Methods, 7(1), 19-40.
MacKinnon, D. P., Lockwood, C. M., & Williams, J. (2004). Confidence limits for the indirect effect. Multivariate Behavioral Research, 39(1), 99-128.
Mednick, S. A. (1962). The associative basis of the creative process. Psychological Review, 69(3), 220-232.
Preacher, K. J., & Hayes, A. F. (2008). Asymptotic and resampling strategies for assessing and comparing indirect effects in multiple mediator models. Behavior Research Methods, 40(3), 879-891.
Rucker, D. D., Preacher, K. J., Tormala, Z. L., & Petty, R. E. (2011). Mediation analysis in social psychology: Current practices and new recommendations. Social and Personality Psychology Compass, 5(6), 359-371.
Tierney, P., & Farmer, S. M. (2002). Creative self-efficacy: Its potential antecedents and relationship to creative performance. Academy of Management Journal, 45(6), 1137-1148.
See references/lavaan-templates.md for complete model specification code.
1---2name: creativity-self-efficacy-mediation3description: Domain-validated guidance for SEM-based mediation analysis of creative self-efficacy and moderation by baseline creativity in AI-augmented creativity research4---56# Creativity Self-Efficacy Mediation Analysis78## Purpose910This skill encodes expert methodological knowledge for analyzing the **psychological mechanisms** through which AI tools (ChatGPT, web search) affect human creativity. Specifically, it covers SEM-based mediation analysis with creative self-efficacy as a mediator, and moderation analysis using baseline creativity. A general-purpose programmer could run a mediation analysis package, but would not know why creative self-efficacy is the theoretically motivated mediator, how to measure it, what the RAT measures and why it is the appropriate baseline, or how to interpret the indirect effect in the context of creativity theory.1112## When to Use This Skill1314- Investigating **why** an intervention affects creativity (not just whether it does)15- Testing whether creative self-efficacy mediates the effect of AI/tool use on creative output16- Examining whether baseline creativity moderates the effect of AI assistance17- Designing a study that needs both mediation and moderation analysis for creativity outcomes18- Specifying SEM models for creativity research using lavaan (R)1920## Research Planning Protocol2122Before executing the domain-specific steps below, you MUST:23241. **State the research question** — What mechanism or moderator is being tested?252. **Justify the method choice** — Why SEM-based mediation (not Baron & Kenny, not PROCESS)? What alternatives were considered?263. **Declare expected outcomes** — What pattern of indirect/direct effects would support vs. refute the hypothesis?274. **Note assumptions and limitations** — What does SEM assume? Where could cross-sectional mediation mislead?285. **Present the plan to the user and WAIT for confirmation** before proceeding.2930For detailed methodology guidance, see the `research-literacy` skill.313233## ⚠️ Verification Notice3435This skill was generated by AI from academic literature. All parameters, thresholds, and citations require independent verification before use in research. If you find errors, please [open an issue](https://github.com/HaoxuanLiTHUAI/awesome_cognitive_and_neuroscience_skills/issues).3637## Theoretical Framework3839### Creative Self-Efficacy as Mediator4041**Creative self-efficacy** (CSE) = an individual's belief in their ability to produce creative outcomes (Tierney & Farmer, 2002). It is grounded in Bandura's (1997) self-efficacy theory: people who believe they can be creative are more likely to attempt, persist at, and succeed in creative tasks.4243**Hypothesized causal chain** (Lee & Chung, 2024):4445```46AI tool use → ↓ Creative Self-Efficacy → ↓ Creative Output4748Mechanism: Using AI to generate ideas may undermine the user's49belief in their own creative ability, leading to reduced creative50effort and output on subsequent tasks.51```5253### Baseline Creativity as Moderator5455**Baseline creativity** moderates how much AI assistance affects creative output:5657- **High-creativity individuals**: May benefit less from AI (ceiling effect) or be harmed more (self-efficacy threat)58- **Low-creativity individuals**: May benefit more from AI (scaffolding) or show less effect (floor effect)5960Lee & Chung (2024) found that ChatGPT use disproportionately **reduced** creativity for individuals with **higher baseline creativity** (measured by RAT).6162## Measurement Instruments6364### Creative Self-Efficacy Scale (Tierney & Farmer, 2002)6566**3 items**, 5-point Likert scale (1 = strongly disagree, 5 = strongly agree):67681. "I have confidence in my ability to solve problems creatively"692. "I feel that I am good at generating novel ideas"703. "I have a knack for further developing the ideas of others"7172| Property | Value | Source |73|----------|-------|--------|74| Cronbach's alpha | **0.83-0.89** | Tierney & Farmer, 2002; Lee & Chung, 2024 |75| Test-retest reliability | **0.77** | Tierney & Farmer, 2002 |76| Scale score | Mean of 3 items | Tierney & Farmer, 2002 |77| Administration time | <1 minute | — |78| Timing | Administer **after** the manipulation, **before** the creativity task | Lee & Chung, 2024 |7980> **Critical timing note**: CSE must be measured **after** the manipulation (e.g., after ChatGPT use) and **before** the outcome measure. Measuring CSE before the manipulation captures trait CSE, not the mediated state change.8182### Remote Associates Test — RAT (Mednick, 1962)8384Used as the **baseline creativity measure** for moderation analysis.8586| Property | Value | Source |87|----------|-------|--------|88| Items | **15** three-word problems | Lee & Chung, 2024 |89| Format | Each item presents 3 words; participant finds the common associate | Mednick, 1962 |90| Time limit | **30 seconds per item** or untimed | Lee & Chung, 2024 |91| Scoring | Number correct out of 15 | Lee & Chung, 2024 |92| What it measures | **Convergent thinking** — finding the single correct remote association | Mednick, 1962 |9394**Example item**: FALLING / ACTOR / DUST → answer: STAR9596> **Why RAT as baseline**: RAT measures convergent thinking (a creativity component independent of divergent thinking), so it serves as a baseline creativity indicator without directly measuring the same construct as the AUT outcome (Lee & Chung, 2024).9798## SEM Mediation Model Specification99100### Model Structure (Lee & Chung, 2024)101102```103 Creative Self-Efficacy (M)104 ↗ a b ↘105AI Condition (X) Creativity Score (Y)106 ————— c' —————→107```108109- **Path a**: Effect of AI condition on CSE110- **Path b**: Effect of CSE on creativity, controlling for condition111- **Path c'**: Direct effect of condition on creativity, controlling for CSE112- **Indirect effect**: a × b (the mediated portion)113- **Total effect**: c = c' + a × b114115### lavaan Specification (R)116117```r118library(lavaan)119120mediation_model <- '121 # Measurement model (if using latent variables)122 # CSE =~ cse1 + cse2 + cse3 # Uncomment for latent CSE123124 # Structural model125 cse ~ a * condition # Path a: X → M126 creativity ~ b * cse + # Path b: M → Y127 cprime * condition # Path c': X → Y (direct)128129 # Indirect and total effects130 indirect := a * b # Mediated effect131 total := cprime + a * b # Total effect132'133134fit <- sem(mediation_model, data = df, se = "bootstrap", bootstrap = 5000)135summary(fit, ci = TRUE)136```137138### Key Specification Decisions139140| Decision | Recommendation | Rationale |141|----------|---------------|-----------|142| **SE estimation** | Bootstrap (5000 samples) | Indirect effects are non-normal; bootstrap CIs are preferred over Sobel test (Preacher & Hayes, 2008) |143| **CI type** | Bias-corrected bootstrap | More accurate than percentile bootstrap for indirect effects (MacKinnon et al., 2004) |144| **Estimator** | ML (maximum likelihood) | Default for continuous outcomes; use MLR for non-normal data |145| **Missing data** | FIML (full information ML) | Handles missing data without listwise deletion |146| **Significance** | 95% bootstrap CI excluding zero | Do NOT rely on p-values for indirect effects |147148## Moderation Analysis149150### Baseline Creativity × Condition Interaction151152**Two approaches** (Lee & Chung, 2024 used both):153154#### Approach 1: Median Split (Descriptive)1551561. Compute median RAT score across all participants1572. Split into **high-creativity** (above median) and **low-creativity** (below median) groups1583. Run separate ANOVAs or t-tests within each subgroup1594. Report condition effects separately for high vs low creativity160161> **Limitation**: Median split loses information and reduces power (MacCallum et al., 2002). Use for visualization/description; rely on continuous moderation for inference.162163#### Approach 2: Continuous Moderation (Inferential)164165```r166# In lavaan or linear regression167moderation_model <- '168 creativity ~ b1 * condition +169 b2 * rat_score +170 b3 * condition:rat_score # Interaction term171'172# b3 = moderation effect173# Probe interaction at ±1 SD of RAT score (Aiken & West, 1991)174```175176### Interpreting Moderation Results177178| Pattern | Interpretation | Lee & Chung (2024) Finding |179|---------|---------------|---------------------------|180| Significant interaction, negative b3 | AI assistance is more harmful for high-creativity individuals | Confirmed: ChatGPT reduced creativity more for high-RAT participants |181| Significant interaction, positive b3 | AI assistance benefits high-creativity individuals more | Not observed |182| No significant interaction | AI effect is similar across creativity levels | — |183184### Simple Slopes Visualization185186Plot creativity scores against condition, separately for high (+1 SD) and low (-1 SD) baseline creativity:187188```r189library(emmeans)190# For interaction probing191emtrends(model, ~ condition, var = "rat_score")192# Or Johnson-Neyman technique for regions of significance193```194195## Moderated Mediation (Full Model)196197When both mediation and moderation are relevant, combine into a **conditional indirect effect** model:198199```200Does the indirect effect (X → M → Y) depend on baseline creativity (W)?201202Model:203 CSE ~ a1 * condition + a2 * rat + a3 * condition:rat204 creativity ~ b * cse + c' * condition205206Conditional indirect effect at level w of RAT:207 (a1 + a3 * w) × b208```209210> **Software**: Use lavaan with bootstrap, or the `mediation` package in R, or PROCESS macro Model 7 (Hayes, 2022).211212## Common Pitfalls2132141. **Cross-sectional mediation as causal evidence**: Mediation in a cross-sectional or single-session design cannot establish temporal causation. The X → M → Y sequence must be theoretically justified and, ideally, measured at different time points (Bullock et al., 2010). Lee & Chung (2024) addressed this by measuring CSE after manipulation but before the outcome task.2152162. **Interpreting non-significant direct effect as "full mediation"**: A non-significant c' does not prove full mediation — it may reflect insufficient power. Report both direct and indirect effects with CIs (Rucker et al., 2011).2172183. **Using the Sobel test instead of bootstrapping**: The Sobel test assumes normality of the indirect effect, which is almost never met. Use bootstrap CIs exclusively (Preacher & Hayes, 2008).2192204. **Forgetting to measure the mediator at the right time**: CSE must be measured **after** the manipulation and **before** the outcome. Measuring at the wrong time destroys the mediation logic.2212225. **Median split without continuous analysis**: Dichotomizing a continuous moderator loses statistical power and can create spurious interactions. Always accompany median splits with continuous moderation analysis (MacCallum et al., 2002).2232246. **Ignoring measurement reliability**: Low reliability of the CSE scale attenuates the mediated effect. Report Cronbach's alpha and consider latent variable SEM if reliability is below 0.80.2252267. **Not controlling for potential confounders**: In online studies, prior AI experience, age, education, and task engagement may confound the condition-creativity relationship. Include as covariates or demonstrate randomization balance.227228## Minimum Reporting Checklist229230Based on Lee & Chung (2024) and Preacher & Hayes (2008):231232- [ ] Mediation model diagram with all paths labeled233- [ ] Mediator measure: name, items, response scale, reliability (Cronbach's alpha)234- [ ] Moderator measure: name, scoring, descriptive statistics235- [ ] Path coefficients: a, b, c', total c (with SEs and CIs)236- [ ] Indirect effect estimate with **bootstrap CI** (number of samples, CI type)237- [ ] Software and package (lavaan version, R version)238- [ ] Estimator used (ML, MLR, WLSMV)239- [ ] Model fit indices (if applicable): CFI, TLI, RMSEA, SRMR240- [ ] For moderation: interaction term coefficient, simple slopes at ±1 SD241- [ ] Sample sizes per condition242- [ ] Evidence of adequate statistical power for mediation (Fritz & MacKinnon, 2007)243244## References245246- Aiken, L. S., & West, S. G. (1991). *Multiple regression: Testing and interpreting interactions*. Sage.247- Bandura, A. (1997). *Self-efficacy: The exercise of control*. W.H. Freeman.248- Bullock, J. G., Green, D. P., & Ha, S. E. (2010). Yes, but what's the mechanism? *Journal of Personality and Social Psychology*, 98(4), 550-558.249- Fritz, M. S., & MacKinnon, D. P. (2007). Required sample size to detect the mediated effect. *Psychological Science*, 18(3), 233-239.250- Hayes, A. F. (2022). *Introduction to mediation, moderation, and conditional process analysis* (3rd ed.). Guilford Press.251- Lee, B. C., & Chung, J. (2024). An empirical investigation of the impact of ChatGPT on creativity. *Nature Human Behaviour*. https://doi.org/10.1038/s41562-024-01953-1252- MacCallum, R. C., Zhang, S., Preacher, K. J., & Rucker, D. D. (2002). On the practice of dichotomization of quantitative variables. *Psychological Methods*, 7(1), 19-40.253- MacKinnon, D. P., Lockwood, C. M., & Williams, J. (2004). Confidence limits for the indirect effect. *Multivariate Behavioral Research*, 39(1), 99-128.254- Mednick, S. A. (1962). The associative basis of the creative process. *Psychological Review*, 69(3), 220-232.255- Preacher, K. J., & Hayes, A. F. (2008). Asymptotic and resampling strategies for assessing and comparing indirect effects in multiple mediator models. *Behavior Research Methods*, 40(3), 879-891.256- Rucker, D. D., Preacher, K. J., Tormala, Z. L., & Petty, R. E. (2011). Mediation analysis in social psychology: Current practices and new recommendations. *Social and Personality Psychology Compass*, 5(6), 359-371.257- Tierney, P., & Farmer, S. M. (2002). Creative self-efficacy: Its potential antecedents and relationship to creative performance. *Academy of Management Journal*, 45(6), 1137-1148.258259See `references/lavaan-templates.md` for complete model specification code.
Run npx skillmds@latest add neuroaihub/creativity-self-efficacy-mediation in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Domain-validated guidance for SEM-based mediation analysis of creative self-efficacy and moderation by baseline creativity in AI-augmented creativity research It is listed under Research & Search on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
neuroaihub (@neuroaihub) published this skill. Their other Agent Skills are listed on their SkillMD profile.