qualitative-research-pro 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +108 -0
- package/CLAUDE.md +171 -0
- package/LICENSE +21 -0
- package/README.md +166 -0
- package/agents/analysis-orchestrator.md +162 -0
- package/agents/audit-trail-builder.md +127 -0
- package/agents/category-developer.md +179 -0
- package/agents/citation-manager.md +83 -0
- package/agents/constant-comparator.md +135 -0
- package/agents/data-manager.md +104 -0
- package/agents/discussion-writer.md +128 -0
- package/agents/document-analyst.md +114 -0
- package/agents/ethics-reviewer.md +119 -0
- package/agents/field-note-analyst.md +124 -0
- package/agents/fit-assessor.md +192 -0
- package/agents/grounded-theorist.md +210 -0
- package/agents/literature-integrator.md +169 -0
- package/agents/literature-reviewer.md +112 -0
- package/agents/memo-writer.md +234 -0
- package/agents/methodology-critic.md +166 -0
- package/agents/methods-writer.md +109 -0
- package/agents/open-coder.md +187 -0
- package/agents/pattern-analyst.md +166 -0
- package/agents/peer-reviewer.md +129 -0
- package/agents/planner.md +122 -0
- package/agents/proposal-writer.md +108 -0
- package/agents/reflexivity-auditor.md +128 -0
- package/agents/research-designer.md +164 -0
- package/agents/research-writer.md +100 -0
- package/agents/saturation-assessor.md +159 -0
- package/agents/selective-coder.md +167 -0
- package/agents/theoretical-coder.md +260 -0
- package/agents/theoretical-sampler.md +165 -0
- package/agents/transcript-analyst.md +123 -0
- package/bin/cli.mjs +236 -0
- package/hooks/dist/agent-memory-loader.mjs +94 -0
- package/hooks/dist/agent-memory-saver.mjs +113 -0
- package/hooks/dist/bash-audit-log.mjs +71 -0
- package/hooks/dist/credential-deny.mjs +165 -0
- package/hooks/dist/forge-compile-check.mjs +92 -0
- package/hooks/dist/gas-snapshot-diff.mjs +71 -0
- package/hooks/dist/memory-awareness.mjs +276 -0
- package/hooks/dist/natspec-enforcer.mjs +67 -0
- package/hooks/dist/passive-learner.mjs +220 -0
- package/hooks/dist/pre-compact-continuity.mjs +467 -0
- package/hooks/dist/sast-on-edit.mjs +230 -0
- package/hooks/dist/session-analytics.mjs +84 -0
- package/hooks/dist/session-end-cleanup.mjs +121 -0
- package/hooks/dist/session-outcome.mjs +84 -0
- package/hooks/dist/session-register.mjs +307 -0
- package/hooks/dist/session-start-continuity.mjs +405 -0
- package/hooks/dist/slither-on-save.mjs +87 -0
- package/hooks/dist/storage-layout-check.mjs +89 -0
- package/hooks/dist/transcript-parser.mjs +214 -0
- package/install.sh +194 -0
- package/package.json +46 -0
- package/plugin.json +19 -0
- package/rules/academic-writing-style.md +42 -0
- package/rules/citation-standards.md +47 -0
- package/rules/current-methodological-state.md +40 -0
- package/rules/data-handling.md +44 -0
- package/rules/finding-output-format.md +47 -0
- package/rules/gt-coding-standards.md +40 -0
- package/rules/methodological-rigor.md +56 -0
- package/rules/quality-criteria.md +41 -0
- package/rules/reflexivity-requirements.md +40 -0
- package/rules/research-ethics-standards.md +44 -0
- package/skills/.gitkeep +2 -0
- package/skills/academic-writing/SKILL.md +73 -0
- package/skills/action-research/SKILL.md +96 -0
- package/skills/apa-formatting/SKILL.md +85 -0
- package/skills/case-study-methods/SKILL.md +96 -0
- package/skills/category-development/SKILL.md +80 -0
- package/skills/chicago-formatting/SKILL.md +81 -0
- package/skills/coding-pipeline/SKILL.md +81 -0
- package/skills/conceptual-frameworks/SKILL.md +70 -0
- package/skills/constant-comparison/SKILL.md +188 -0
- package/skills/constructivist-gt/SKILL.md +91 -0
- package/skills/data-management-protocols/SKILL.md +67 -0
- package/skills/document-analysis/SKILL.md +66 -0
- package/skills/ethnographic-methods/SKILL.md +82 -0
- package/skills/focus-group-methods/SKILL.md +66 -0
- package/skills/formal-theory/SKILL.md +159 -0
- package/skills/glaserian-grounded-theory/SKILL.md +212 -0
- package/skills/interview-design/SKILL.md +67 -0
- package/skills/literature-synthesis/SKILL.md +71 -0
- package/skills/member-checking/SKILL.md +66 -0
- package/skills/memo-writing/SKILL.md +158 -0
- package/skills/mixed-methods-design/SKILL.md +69 -0
- package/skills/narrative-inquiry/SKILL.md +101 -0
- package/skills/observation-methods/SKILL.md +67 -0
- package/skills/open-coding/SKILL.md +176 -0
- package/skills/paradigmatic-positioning/SKILL.md +72 -0
- package/skills/peer-debriefing/SKILL.md +72 -0
- package/skills/phenomenological-methods/SKILL.md +91 -0
- package/skills/qualitative-rigor/SKILL.md +78 -0
- package/skills/reflexive-practice/SKILL.md +64 -0
- package/skills/research-ethics/SKILL.md +64 -0
- package/skills/research-proposal-writing/SKILL.md +81 -0
- package/skills/research-questions/SKILL.md +66 -0
- package/skills/sampling-strategies/SKILL.md +61 -0
- package/skills/selective-coding/SKILL.md +183 -0
- package/skills/situational-analysis/SKILL.md +93 -0
- package/skills/substantive-theory/SKILL.md +169 -0
- package/skills/thematic-analysis/SKILL.md +80 -0
- package/skills/theoretical-coding/SKILL.md +213 -0
- package/skills/theoretical-sampling/SKILL.md +152 -0
- package/skills/theoretical-saturation/SKILL.md +179 -0
- package/skills/theoretical-sensitivity/SKILL.md +175 -0
- package/skills/theory-integration/SKILL.md +85 -0
- package/skills/thick-description/SKILL.md +69 -0
- package/skills/triangulation/SKILL.md +65 -0
- package/skills/visual-modeling/SKILL.md +66 -0
- package/skills/vulnerable-populations/SKILL.md +69 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: literature-synthesis
|
|
3
|
+
description: Use when conducting a literature synthesis — systematic review, narrative review, scoping review, or meta-synthesis of qualitative studies.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Literature Synthesis for Qualitative Researchers
|
|
7
|
+
|
|
8
|
+
Synthesis means more than summarizing articles: you **compare, contrast, integrate, and evaluate** patterns across a body of work to produce new insight—whether that is a gap map, a theory critique, or a higher-order interpretive synthesis.
|
|
9
|
+
|
|
10
|
+
## Types of reviews
|
|
11
|
+
|
|
12
|
+
- **Narrative review:** Expert-led, flexible scope; strong for framing fields; risk of selection bias if unstructured.
|
|
13
|
+
- **Systematic review:** Pre-specified question, explicit search, screening, appraisal, synthesis—minimizes ad hoc cherry-picking.
|
|
14
|
+
- **Scoping review:** Maps breadth of concepts, sources, and gaps when the field is diffuse.
|
|
15
|
+
- **Meta-synthesis / qualitative evidence synthesis:** Integrates findings across qualitative primary studies (e.g., meta-ethnography, thematic synthesis, meta-aggregative approaches in some health traditions).
|
|
16
|
+
|
|
17
|
+
## Search strategy development
|
|
18
|
+
|
|
19
|
+
Translate your question into **PICOS-like** elements adapted for qualitative work (population, phenomenon, context). Use controlled vocabulary + free-text; document databases, date limits, language limits, and grey literature sources. Save reproducible search strings.
|
|
20
|
+
|
|
21
|
+
## PRISMA for systematic reviews
|
|
22
|
+
|
|
23
|
+
PRISMA flow diagrams and checklists target systematic reviews broadly. For qualitative systematic reviews, use extensions/guidance where available (e.g., ENTREQ reporting guidance for qualitative evidence syntheses—verify current preferred reporting standards for your discipline).
|
|
24
|
+
|
|
25
|
+
## Qualitative meta-synthesis approaches
|
|
26
|
+
|
|
27
|
+
**Meta-ethnography (Noblit & Hare):**
|
|
28
|
+
|
|
29
|
+
- Reciprocal translation, refutational synthesis, line-of-argument synthesis.
|
|
30
|
+
- Aims to produce **higher-order interpretations**, not just pooled themes.
|
|
31
|
+
|
|
32
|
+
**Sandelowski & Barroso’s meta-summary (quantitative-leaning facet):**
|
|
33
|
+
|
|
34
|
+
- Extract findings statements and sometimes frequency-qualify them—useful when discipline demands structured outputs; interpretive depth varies.
|
|
35
|
+
|
|
36
|
+
Choose a method that matches your epistemology (interpretive vs aggregative).
|
|
37
|
+
|
|
38
|
+
## Synthesis matrices
|
|
39
|
+
|
|
40
|
+
Build a matrix: rows as studies; columns as constructs, contexts, methods, findings, limitations. Color-code **agreements, tensions, silences**. Matrices reveal **contradictions** worth theorizing.
|
|
41
|
+
|
|
42
|
+
## Writing the synthesis
|
|
43
|
+
|
|
44
|
+
Structure by **themes** or **analytic constructs**, not by “Article A, Article B.” For each theme:
|
|
45
|
+
|
|
46
|
+
- Define it.
|
|
47
|
+
- Show cross-study evidence.
|
|
48
|
+
- Note methodological strengths/weaknesses influencing confidence.
|
|
49
|
+
- State what remains unknown.
|
|
50
|
+
|
|
51
|
+
## Gap identification
|
|
52
|
+
|
|
53
|
+
Distinguish **empirical gaps** (no studies in context X) from **theoretical gaps** (unexplained mechanisms) from **method gaps** (weak designs dominating a topic).
|
|
54
|
+
|
|
55
|
+
## Grounded theory caution
|
|
56
|
+
|
|
57
|
+
Classic GT delays substantive-area literature until later analytic stages. A standalone literature synthesis skill is for **literature-first projects** (reviews, proposals) or **post-emergence integration**—do not use it to smuggle forcing into early GT coding.
|
|
58
|
+
|
|
59
|
+
## Checklist
|
|
60
|
+
|
|
61
|
+
- [ ] Review type matches question and timeline.
|
|
62
|
+
- [ ] Search reproducible; screening documented.
|
|
63
|
+
- [ ] Quality appraisal method chosen and applied consistently.
|
|
64
|
+
- [ ] Synthesis method matches paradigm (interpretive vs aggregative).
|
|
65
|
+
- [ ] Reporting guideline selected (PRISMA/ENTREQ/etc. as appropriate).
|
|
66
|
+
|
|
67
|
+
## References (starting points)
|
|
68
|
+
|
|
69
|
+
- Noblit, G. W., & Hare, R. D. *Meta-ethnography: Synthesizing qualitative studies*.
|
|
70
|
+
- Gough, D., Oliver, S., & Thomas, J. *An introduction to systematic reviews* (2nd ed.).
|
|
71
|
+
- Sandelowski, M., & Barroso, J. *Handbook for synthesizing qualitative research*.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: member-checking
|
|
3
|
+
description: Use when conducting member checking or participant validation to enhance credibility of qualitative findings.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Member Checking in Qualitative Research
|
|
7
|
+
|
|
8
|
+
Member checking invites participants to review or react to researcher representations of their experience. Done well, it can deepen interpretation; done poorly, it can confuse **empirical grounding** with **consensus** or **epistemic authority**.
|
|
9
|
+
|
|
10
|
+
## What member checking is
|
|
11
|
+
|
|
12
|
+
A structured process where participants engage with transcripts, themes, interpretations, or draft findings and provide feedback. It is **not** a statistical validation step; it is a dialogic or confirmatory practice depending on design.
|
|
13
|
+
|
|
14
|
+
## Types of member checking
|
|
15
|
+
|
|
16
|
+
- **Transcript review:** Participants correct factual errors and clarify wording.
|
|
17
|
+
- **Interpretive review:** Participants react to researcher codes/themes (“Does this fit?”).
|
|
18
|
+
- **Synthesized member check:** Participants comment on narrative summaries or models of the findings.
|
|
19
|
+
|
|
20
|
+
Each type serves different goals: accuracy vs meaning vs overall story fidelity.
|
|
21
|
+
|
|
22
|
+
## Glaser’s critique in grounded theory
|
|
23
|
+
|
|
24
|
+
Glaser cautions against letting participants **define theory** or veto concepts that fit data but feel uncomfortable. In classic GT, the analyst earns categories through **constant comparison**, not through participant sign-off as a gold standard. This does not forbid member checks—it warns against **substituting participant agreement for theoretical elaboration**.
|
|
25
|
+
|
|
26
|
+
## When member checking is appropriate
|
|
27
|
+
|
|
28
|
+
Appropriate when: factual accuracy matters; collaborative ethics prioritize shared sense-making; stakeholder feedback improves **practice** or **implementation**; you need to catch misreadings of local language or norms.
|
|
29
|
+
|
|
30
|
+
## When it can be inappropriate or risky
|
|
31
|
+
|
|
32
|
+
Risky when: power dynamics make “agreement” coerced; revising interpretations to please gatekeepers would **misrepresent** data; revisiting traumatic content harms participants without benefit; institutional timelines pressure shallow “checkbox” validation.
|
|
33
|
+
|
|
34
|
+
## Conducting member checking effectively
|
|
35
|
+
|
|
36
|
+
1. **Clarify purpose** (accuracy vs interpretation) so participants know what feedback you seek.
|
|
37
|
+
2. **Use manageable chunks**—short summaries or selected excerpts, not overwhelming packets.
|
|
38
|
+
3. **Separate** factual corrections from theoretical claims; log both in an audit trail.
|
|
39
|
+
4. **Offer flexible formats** (written, call, in-person) to reduce burden.
|
|
40
|
+
5. **Compensate** time fairly when possible.
|
|
41
|
+
|
|
42
|
+
## Handling disagreements
|
|
43
|
+
|
|
44
|
+
Disagreement is data: it may signal **variation**, **identity performance**, **positional difference**, or **analytic error**. Do not automatically overwrite analysis. Instead, compare the disagreement against the full corpus, seek **negative cases**, and document your reasoning.
|
|
45
|
+
|
|
46
|
+
## Ethical considerations
|
|
47
|
+
|
|
48
|
+
Re-contacting may re-trigger harm; obtain **ongoing consent**. Be transparent that you cannot guarantee confidentiality if others helped produce the original account. For group contexts, avoid exposing one participant’s statements to another without consent.
|
|
49
|
+
|
|
50
|
+
## Reporting
|
|
51
|
+
|
|
52
|
+
Describe: who was invited; response rate; what materials they saw; how feedback altered (or did not alter) analysis and why. In GT, explain how member checking **complemented** rather than replaced constant comparison.
|
|
53
|
+
|
|
54
|
+
## Checklist
|
|
55
|
+
|
|
56
|
+
- [ ] Type of member check matches goals (accuracy vs interpretation).
|
|
57
|
+
- [ ] Risks assessed; trauma-informed safeguards in place.
|
|
58
|
+
- [ ] Disagreements analyzed, not hidden or auto-overridden.
|
|
59
|
+
- [ ] GT studies articulate Glaserian cautions where relevant.
|
|
60
|
+
- [ ] Audit trail records feedback and analytic decisions.
|
|
61
|
+
|
|
62
|
+
## References (starting points)
|
|
63
|
+
|
|
64
|
+
- Birt, L., et al. (2016). Member checking: A tool to enhance trustworthiness or merely a nod to validation? *Qualitative Health Research*.
|
|
65
|
+
- Morse, J. M. (2015). Data were saturated…. *Qualitative Health Research* — related debates on verification practices.
|
|
66
|
+
- Glaser, B. G. *Doing Grounded Theory* — on theory ownership and forcing.
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: memo-writing
|
|
3
|
+
description: "Use when writing theoretical memos, code notes, operational notes during grounded theory analysis."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Memo Writing in Grounded Theory
|
|
7
|
+
|
|
8
|
+
In classic grounded theory, **memos are the core intellectual product** of analysis. Coding fractures data and labels incidents; **memoing** captures **ideas about what codes mean**, how categories relate, what conditions might matter, and what must be sampled next.
|
|
9
|
+
|
|
10
|
+
If you cannot point to a **memo trail**, you likely cannot defend **how** your theory emerged.
|
|
11
|
+
|
|
12
|
+
Use this skill throughout **open**, **selective**, and **theoretical** coding—and during **sampling** decisions.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Types of memos (practical taxonomy)
|
|
17
|
+
|
|
18
|
+
### Theoretical memos
|
|
19
|
+
|
|
20
|
+
**Content**: hypotheses about relationships among categories; “if/then” thinking; models-in-words.
|
|
21
|
+
**When**: after comparisons spark insight; when integrating two codes; when revising a core claim.
|
|
22
|
+
|
|
23
|
+
### Code notes
|
|
24
|
+
|
|
25
|
+
**Content**: definitions, inclusion/exclusion boundaries, merge/split rationale, examples.
|
|
26
|
+
**When**: whenever a code changes meaning or competes with a neighbor code.
|
|
27
|
+
|
|
28
|
+
### Operational / methodological memos
|
|
29
|
+
|
|
30
|
+
**Content**: data access issues, interview dynamics, reflexivity notes, ethics dilemmas, tool choices.
|
|
31
|
+
**When**: these factors **shape** what data mean or what you can know—GT treats many such notes as legitimate “data about the study.”
|
|
32
|
+
|
|
33
|
+
### Sorting memos / outline memos
|
|
34
|
+
|
|
35
|
+
**Content**: higher-order integration—chapter-like storylines, outlines for theory write-up.
|
|
36
|
+
**When**: weekly or after major analytic milestones.
|
|
37
|
+
|
|
38
|
+
### Sampling memos
|
|
39
|
+
|
|
40
|
+
**Content**: the analytic rationale for **next** data collection targets.
|
|
41
|
+
**When**: before scheduling interviews/observations.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## Glaser’s memo-writing rules (interpreted for practice)
|
|
46
|
+
|
|
47
|
+
Classic guidance distills to disciplined habits:
|
|
48
|
+
|
|
49
|
+
1. **Stop and memo** when a conceptual idea crystallizes—do not trust memory.
|
|
50
|
+
2. **Write to think**: memos are drafts, not polished prose.
|
|
51
|
+
3. **Stay conceptual**: move beyond summary to **claims** and **conditions**.
|
|
52
|
+
4. **Link to evidence**: cite **source IDs** and locations for traceability.
|
|
53
|
+
5. **Date and title** memos so sorting remains possible months later.
|
|
54
|
+
6. **Allow revision**: later memos can contradict earlier ones—mark **supersedes** notes.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Memo structure (reusable template)
|
|
59
|
+
|
|
60
|
+
```text
|
|
61
|
+
Title:
|
|
62
|
+
Date:
|
|
63
|
+
Linked sources (IDs/locations):
|
|
64
|
+
|
|
65
|
+
Main idea (1–3 sentences):
|
|
66
|
+
|
|
67
|
+
Supporting comparisons (incident IDs + why they matter):
|
|
68
|
+
|
|
69
|
+
Hypotheses / claims:
|
|
70
|
+
H1:
|
|
71
|
+
H2:
|
|
72
|
+
|
|
73
|
+
Boundary conditions / negative cases:
|
|
74
|
+
|
|
75
|
+
Implications for coding (rename/split/merge):
|
|
76
|
+
|
|
77
|
+
Implications for next sampling:
|
|
78
|
+
|
|
79
|
+
Open puzzles:
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Short memos are fine. **Density** beats length.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Memo sorting and the “memo fund”
|
|
87
|
+
|
|
88
|
+
**Memo fund** refers to your accumulated memo corpus—your **laboratory notebook** of theorizing.
|
|
89
|
+
|
|
90
|
+
### Sorting routines
|
|
91
|
+
|
|
92
|
+
- **Weekly sort**: move memos under emerging **outline headings** tied to the core category.
|
|
93
|
+
- **Tag** memos by function: `hypothesis`, `definition`, `sampling`, `reflexivity`.
|
|
94
|
+
- **Highlight** stable claims vs speculative guesses.
|
|
95
|
+
|
|
96
|
+
### From memos to theory outline
|
|
97
|
+
|
|
98
|
+
1. Collect memos that repeatedly assert the **same relationship**.
|
|
99
|
+
2. Merge redundant memos into a **single stronger statement**.
|
|
100
|
+
3. Identify **gaps**—relationships with weak evidence become **sampling priorities**.
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## Worked examples (abbreviated fictions)
|
|
105
|
+
|
|
106
|
+
### Example A — early open-coding memo (code note + hunch)
|
|
107
|
+
|
|
108
|
+
**Title**: *delaying disclosure* vs *hiding incompetence*
|
|
109
|
+
**Idea**: Early incidents tagged “delaying disclosure” include two different logics: (1) **viability probing** and (2) **impression shielding**. These may be separate categories.
|
|
110
|
+
**Next step**: compare across cases for **trigger conditions**—do “shielding” incidents correlate with **evaluation anxiety** language?
|
|
111
|
+
|
|
112
|
+
### Example B — mid-study theoretical memo
|
|
113
|
+
|
|
114
|
+
**Title**: Core candidate — *staging legitimacy*
|
|
115
|
+
**Claim**: Participants convert uncertain projects into “acceptable” organizational objects by **incremental evidence** + **soft risk frames**.
|
|
116
|
+
**Evidence**: interviews 04, 09, 12; field notes meeting B.
|
|
117
|
+
**Negative case**: interview 07 shows **immediate disclosure** when manager already co-owned risk—condition may be **shared accountability**.
|
|
118
|
+
|
|
119
|
+
### Example C — selective-coding integration memo
|
|
120
|
+
|
|
121
|
+
**Title**: Outline v0.4 — core + satellites
|
|
122
|
+
**Core**: *staging legitimacy*
|
|
123
|
+
**Satellites**: *viability thresholds*, *soft framing*, *manager co-ownership*, *peer vetting*
|
|
124
|
+
**Hypothesis sketch**: Soft framing works **unless** performance metrics are **publicly ranked** (boundary).
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Output format recommendations (for teams)
|
|
129
|
+
|
|
130
|
+
- **Single memo repository** (folder or software) with consistent titles.
|
|
131
|
+
- **Cross-links** from codes to memo IDs.
|
|
132
|
+
- **Change log** when core category shifts (audit transparency).
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Common mistakes
|
|
137
|
+
|
|
138
|
+
- Treating memos as **personal journaling** without conceptual claims.
|
|
139
|
+
- Writing memos **only** at the end (reconstructive rationalization).
|
|
140
|
+
- **Orphan memos** with no data pointers—non-auditable.
|
|
141
|
+
- Over-polishing memos instead of **comparing** further.
|
|
142
|
+
- Letting software **replace** thinking (auto-summaries ≠ comparative analysis).
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## Key references
|
|
147
|
+
|
|
148
|
+
- Glaser, B. G. (1978). *Theoretical sensitivity*. Sociology Press.
|
|
149
|
+
- Glaser, B. G. (1992). *Basics of grounded theory analysis*. Sociology Press.
|
|
150
|
+
- Glaser, B. G. (1998). *Doing grounded theory*. Sociology Press.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## Companion skills
|
|
155
|
+
|
|
156
|
+
- `constant-comparison`, `open-coding`, `selective-coding`
|
|
157
|
+
- `theoretical-sampling`, decision audit trails (project workflow / transparency)
|
|
158
|
+
- `glaserian-grounded-theory`
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mixed-methods-design
|
|
3
|
+
description: Use when designing mixed methods research that integrates qualitative and quantitative approaches.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Mixed Methods Design (Creswell & Plano Clark)
|
|
7
|
+
|
|
8
|
+
Mixed methods combines **qualitative and quantitative strands** to answer questions neither can fully address alone. Integration is the hard part: designs specify **sequence, priority, and mixing points**.
|
|
9
|
+
|
|
10
|
+
## Notable design families (overview)
|
|
11
|
+
|
|
12
|
+
- **Convergent parallel:** QUAN + QUAL concurrently; merge at interpretation (joint displays, side-by-side discussion).
|
|
13
|
+
- **Explanatory sequential:** QUAN → QUAL to explain mechanisms, outliers, or surprising scores.
|
|
14
|
+
- **Exploratory sequential:** QUAL → QUAN to develop measures, typologies, or survey items.
|
|
15
|
+
|
|
16
|
+
Advanced variants (embedded, transformative, multiphase) add complexity—match to aims and ethics.
|
|
17
|
+
|
|
18
|
+
## Mixing strategies (integration)
|
|
19
|
+
|
|
20
|
+
Common techniques:
|
|
21
|
+
|
|
22
|
+
- **Connecting:** outputs of one strand feed the other (e.g., interview themes → survey items).
|
|
23
|
+
- **Merging:** compare/contrast results in discussion (watch for contradiction as insight).
|
|
24
|
+
- **Embedding:** one strand secondary within a larger project.
|
|
25
|
+
|
|
26
|
+
Document **where** integration happens and **who** decides how conflicts are resolved.
|
|
27
|
+
|
|
28
|
+
## Philosophical foundations
|
|
29
|
+
|
|
30
|
+
Mixed methods can sit within **pragmatism** (many US textbooks), **critical realism**, or **transformative** frames. Declare how you handle **incommensurability** if paradigms clash—integration is easier when you articulate a coherent stance.
|
|
31
|
+
|
|
32
|
+
## When to use mixed methods
|
|
33
|
+
|
|
34
|
+
Use when you need **both** pattern/generalization-oriented evidence and meaning/process depth—or when one strand reduces waste in the other (e.g., QUAL discovers constructs before QUAN measures them).
|
|
35
|
+
|
|
36
|
+
## Grounded theory in mixed methods
|
|
37
|
+
|
|
38
|
+
GT can occupy the qualitative strand, especially in exploratory sequencing. Risks:
|
|
39
|
+
|
|
40
|
+
- QUAN pressures can **force** premature closure.
|
|
41
|
+
- Integration meetings may privilege “hard numbers.”
|
|
42
|
+
|
|
43
|
+
Mitigate by protecting **iterative coding cycles** and treating integration as **dialogue**, not automatic trump rules.
|
|
44
|
+
|
|
45
|
+
## Quality criteria
|
|
46
|
+
|
|
47
|
+
Beyond mono-method rigor, assess:
|
|
48
|
+
|
|
49
|
+
- **Integration clarity** (not parallel play).
|
|
50
|
+
- **Meta-inferences** justified by both strands.
|
|
51
|
+
- **Discrepancies** analyzed, not hidden.
|
|
52
|
+
|
|
53
|
+
## Reporting
|
|
54
|
+
|
|
55
|
+
Use diagrams of the design; specify priority, sequence, purpose of each strand, and integration points. Follow **MMARS** or journal-specific mixed-methods reporting guidance when required.
|
|
56
|
+
|
|
57
|
+
## Checklist
|
|
58
|
+
|
|
59
|
+
- [ ] Design matches question (explore/explain/converge).
|
|
60
|
+
- [ ] Priority/sequence explicit.
|
|
61
|
+
- [ ] Integration points and products defined (joint display, instrument, typology).
|
|
62
|
+
- [ ] Paradigm stance coherent.
|
|
63
|
+
- [ ] GT strand protected from premature quantification if emergent.
|
|
64
|
+
|
|
65
|
+
## References (starting points)
|
|
66
|
+
|
|
67
|
+
- Creswell, J. W., & Plano Clark, V. L. *Designing and conducting mixed methods research* (3rd ed.).
|
|
68
|
+
- Fetters, M. D., Curry, L. A., & Creswell, J. W. (2013). Achieving integration in mixed methods designs. *Annals of Family Medicine*.
|
|
69
|
+
- Greene, J. C. *Mixed methods in social inquiry*.
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: narrative-inquiry
|
|
3
|
+
description: "Use when conducting narrative research — analyzing stories, life histories, and narrative accounts of experience."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Narrative Inquiry
|
|
7
|
+
|
|
8
|
+
Narrative inquiry treats **stories** as both **method** and **phenomenon**: people make sense of lives through narrative, and researchers study experience as **storied**. Applications span education, health, organizational studies, and oral history.
|
|
9
|
+
|
|
10
|
+
## Major types of narrative inquiry
|
|
11
|
+
|
|
12
|
+
### Biographical / life history
|
|
13
|
+
|
|
14
|
+
Focuses on a life trajectory—turning points, identity, and social-historical context. Often integrates interviews with archival or documentary sources.
|
|
15
|
+
|
|
16
|
+
### Life story research
|
|
17
|
+
|
|
18
|
+
Emphasizes how tellers **construct a coherent self** through selection, emphasis, and omission. Attention to performance and audience.
|
|
19
|
+
|
|
20
|
+
### Oral history
|
|
21
|
+
|
|
22
|
+
Documents lived experience in historical context; balances participant voice with archival verification. Ethical stewardship of recordings and community rights is central.
|
|
23
|
+
|
|
24
|
+
### Narrative analysis (as distinct tradition)
|
|
25
|
+
|
|
26
|
+
May analyze **narratives as texts** (structure, plot, voice) from interviews or naturalistic sources, with varying degrees of emphasis on teller collaboration.
|
|
27
|
+
|
|
28
|
+
## Clandinin & Connelly’s three-dimensional space
|
|
29
|
+
|
|
30
|
+
Narrative inquiry can be mapped along:
|
|
31
|
+
|
|
32
|
+
1. **Temporality** — Past, present, and future in the telling; how time is sequenced and given meaning.
|
|
33
|
+
2. **Sociality** — Relationships, dialogue, institutional settings, and power shaping the story.
|
|
34
|
+
3. **Place** — Physical and imagined locations anchoring experience.
|
|
35
|
+
|
|
36
|
+
Inquiry moves along these dimensions through **field texts** (transcripts, artifacts), **interim texts** (shared summaries with participants), and **final research texts**.
|
|
37
|
+
|
|
38
|
+
## Riessman’s approaches to narrative analysis
|
|
39
|
+
|
|
40
|
+
Catherine Kohler Riessman distinguishes complementary lenses:
|
|
41
|
+
|
|
42
|
+
### Thematic narrative analysis
|
|
43
|
+
|
|
44
|
+
Identifies **what** is told—the **content** of stories—using codes and themes across narratives. Useful when comparing topics across many accounts.
|
|
45
|
+
|
|
46
|
+
### Structural narrative analysis
|
|
47
|
+
|
|
48
|
+
Examines **how** stories are organized—**plot**, **orientation**, **complication**, **evaluation**, **resolution** (Labovian elements), **emplotment**, and **genre** expectations.
|
|
49
|
+
|
|
50
|
+
### Dialogic / performative analysis
|
|
51
|
+
|
|
52
|
+
Focuses on **co-construction** in interview interaction, **audience**, **embodiment**, and **context of telling**. Stories are **situated performances**, not transparent windows into fixed memory.
|
|
53
|
+
|
|
54
|
+
## Narrative analysis techniques (practical)
|
|
55
|
+
|
|
56
|
+
- **Transcript as poem or stanza** — Preserve rhythm and emphasis (with care for representation ethics).
|
|
57
|
+
- **Sequence charts** — Plot events against time claimed vs implied.
|
|
58
|
+
- **Voice analysis** — Who speaks, who is silenced, quoted speech, pronouns.
|
|
59
|
+
- **Member checking with narrative sensitivity** — Invite response without forcing a single “authorized” story.
|
|
60
|
+
|
|
61
|
+
## Storied vs non-storied data
|
|
62
|
+
|
|
63
|
+
Not all qualitative data arrives as a **story**. Researchers may:
|
|
64
|
+
|
|
65
|
+
- Elicit stories through **narrative prompts** (“Tell me about a time when…”).
|
|
66
|
+
- Treat **episodic** accounts as **small stories** embedded in conversation.
|
|
67
|
+
- Analyze **anti-narrative** fragments when participants resist coherent plotting—resistance itself is meaningful.
|
|
68
|
+
|
|
69
|
+
## Temporality and plot
|
|
70
|
+
|
|
71
|
+
- **Chronology vs emplotment** — Events may be reordered for moral or identity work.
|
|
72
|
+
- **Turning points** — Moments that redefine the “before” and “after.”
|
|
73
|
+
- **Counter-narratives** — Stories that resist dominant cultural scripts.
|
|
74
|
+
|
|
75
|
+
## When to use narrative inquiry vs other methods
|
|
76
|
+
|
|
77
|
+
Choose **narrative inquiry** when **identity**, **meaning over time**, **experience as sequence**, or **public/cultural stories** are central.
|
|
78
|
+
|
|
79
|
+
Choose **phenomenology** for **essence of a phenomenon** with less emphasis on plotted time.
|
|
80
|
+
|
|
81
|
+
Choose **grounded theory** for **social process theory** where narrative may be **data** but not the primary organizing framework.
|
|
82
|
+
|
|
83
|
+
Choose **thematic analysis** when **patterns across texts** suffice without narrative structure as the main analytic lens.
|
|
84
|
+
|
|
85
|
+
## Ethics
|
|
86
|
+
|
|
87
|
+
Stories are **personal and relational**; harm can arise from recognizable detail. Use **pseudonyms**, **composite** strategies only with transparent methodology, and **informed consent** for how stories will be used and stored.
|
|
88
|
+
|
|
89
|
+
## Quality considerations
|
|
90
|
+
|
|
91
|
+
- **Resonance** with participants’ sense-making (without collapsing researcher and participant voice).
|
|
92
|
+
- **Contextualization** of tellings (setting, relationship to researcher).
|
|
93
|
+
- **Reflexivity** about how the interview **co-produces** the narrative.
|
|
94
|
+
|
|
95
|
+
## Key references
|
|
96
|
+
|
|
97
|
+
- Clandinin, D. J., & Connelly, F. M. — *Narrative Inquiry*.
|
|
98
|
+
- Riessman, C. K. — *Narrative Analysis*; *Narrative Methods for the Human Sciences*.
|
|
99
|
+
- Polkinghorne, D. E. — Narrative configuration and qualitative studies.
|
|
100
|
+
|
|
101
|
+
Use this skill when users analyze life stories, interview narratives, or choose between narrative and thematic or GT approaches.
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: observation-methods
|
|
3
|
+
description: Use when designing observation protocols, conducting participant observation, or writing field notes.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Observation Methods and Field Notes
|
|
7
|
+
|
|
8
|
+
Observation produces situated data about what people do, how settings are arranged, and how interaction unfolds. Strong observation balances disciplined attention with reflexive awareness of how your presence shapes what you can see.
|
|
9
|
+
|
|
10
|
+
## Observer roles (Gold’s continuum)
|
|
11
|
+
|
|
12
|
+
Roles range from **complete participant** (insider status, high access, high risk of “going native”) to **complete observer** (minimal interaction, clearer distance, limited access to meaning). Most qualitative studies use **participant-as-observer** or **observer-as-participant** blends. Choose a role that matches ethics, access, and your analytical goals—not only convenience.
|
|
13
|
+
|
|
14
|
+
## Structured vs unstructured observation
|
|
15
|
+
|
|
16
|
+
- **Structured observation** uses preset categories, tally sheets, or time sampling. Useful when you need comparable behavioral records; can miss emergent meanings.
|
|
17
|
+
- **Unstructured observation** prioritizes holistic recording of setting, actors, activities, and interactions. Common in ethnography and early GT familiarization.
|
|
18
|
+
- **Hybrid protocols** begin unstructured, then add focused scans for patterns you now understand.
|
|
19
|
+
|
|
20
|
+
## Observation protocols
|
|
21
|
+
|
|
22
|
+
Design a lightweight template you can use in the field:
|
|
23
|
+
|
|
24
|
+
1. **Header:** date, time, site, weather/noise, your role, who was present.
|
|
25
|
+
2. **Spatial sketch:** layout, objects, movement paths (if relevant).
|
|
26
|
+
3. **Sequence log:** what happened first, next, and how episodes ended.
|
|
27
|
+
4. **Talk captures:** verbatim snippets when possible; paraphrase if not.
|
|
28
|
+
5. **Analytic margin:** immediate questions, surprises, and links to prior sessions.
|
|
29
|
+
|
|
30
|
+
Revise the protocol after early visits when you learn what matters in this setting.
|
|
31
|
+
|
|
32
|
+
## Field note writing
|
|
33
|
+
|
|
34
|
+
- **Descriptive notes** record observable actions, dialogue, and setting details. Separate facts you saw/heard from inference; label inferences explicitly.
|
|
35
|
+
- **Reflective notes** capture your reactions, hypotheses, and methodological decisions (e.g., why you stood in a particular spot). Keep reflective content distinct so you can audit what came from data vs researcher stance.
|
|
36
|
+
|
|
37
|
+
Write **as soon as possible** after leaving the site; expand jottings into full notes within 24 hours when feasible.
|
|
38
|
+
|
|
39
|
+
## Managing a dual role
|
|
40
|
+
|
|
41
|
+
If you are both participant and researcher, schedule debrief moments, avoid covert note-taking that breaches trust, and document role conflicts in a reflexive log. Be explicit with gatekeepers about what you will and will not share.
|
|
42
|
+
|
|
43
|
+
## Ethics of covert observation
|
|
44
|
+
|
|
45
|
+
Covert observation is ethically fraught and often prohibited by IRBs except in rare circumstances with strong justification and safeguards. Default to **informed consent** and transparent researcher identity. If anonymity of the setting is promised, describe how you will disguise identifying details.
|
|
46
|
+
|
|
47
|
+
## Duration and frequency
|
|
48
|
+
|
|
49
|
+
Plan for **iterative visits** rather than one-off snapshots unless the research question is episodic. Longer engagement supports credibility (prolonged engagement) and helps you distinguish routine from anomaly. Match visit length to fatigue, access rules, and safety.
|
|
50
|
+
|
|
51
|
+
## Grounded theory link
|
|
52
|
+
|
|
53
|
+
Treat observations as **incidents** comparable to interview segments. Ask: What is going on here? What recurring patterns appear? What variations exist? Memo emergent categories before forcing observational data into preconceived labels.
|
|
54
|
+
|
|
55
|
+
## Checklist
|
|
56
|
+
|
|
57
|
+
- [ ] Observer role chosen and justified; access and consent aligned.
|
|
58
|
+
- [ ] Protocol balances structure with openness.
|
|
59
|
+
- [ ] Descriptive vs reflective notes separated.
|
|
60
|
+
- [ ] Timely expansion from jottings to full notes.
|
|
61
|
+
- [ ] Ethical stance on visibility/covert observation documented.
|
|
62
|
+
|
|
63
|
+
## References (starting points)
|
|
64
|
+
|
|
65
|
+
- Emerson, R. M., Fretz, R. I., & Shaw, L. L. *Writing ethnographic fieldnotes* (2nd ed.).
|
|
66
|
+
- Spradley, J. P. *Participant observation*.
|
|
67
|
+
- Glaser on “all is data” — field events are first-class analytic material in GT.
|