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,175 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: theoretical-sensitivity
|
|
3
|
+
description: "Use when developing the researcher's ability to see conceptual possibilities in data, to recognize what is important, and to give meaning to data."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Theoretical Sensitivity
|
|
7
|
+
|
|
8
|
+
**Theoretical sensitivity** is the researcher’s ability to **see meaning in data**, to discern **what matters conceptually**, and to imagine **plausible relationships** among categories—without **forcing** preconceived ideas onto participants’ experiences.
|
|
9
|
+
|
|
10
|
+
Glaser treats sensitivity as a **craft**: developed through analytic practice, disciplined comparison, and curated reading—not through importing a ready-made framework for the substantive area too early.
|
|
11
|
+
|
|
12
|
+
Use this skill when you feel “stuck” in description, when codes multiply without insight, or when you need to **calibrate openness** versus **conceptual discipline**.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Glaser’s concept (1978): what sensitivity is not
|
|
17
|
+
|
|
18
|
+
**Sensitivity is not**:
|
|
19
|
+
|
|
20
|
+
- Cleverness at inventing jargon.
|
|
21
|
+
- A license to impose pet theories.
|
|
22
|
+
- The same as “being smart about the topic” before data collection.
|
|
23
|
+
|
|
24
|
+
**Sensitivity is**:
|
|
25
|
+
|
|
26
|
+
- Recognizing **indicator-rich** incidents.
|
|
27
|
+
- Hearing **process** and **variation** rather than only content.
|
|
28
|
+
- Knowing **when** to code, **when** to memo, and **when** to sample next.
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Sources of theoretical sensitivity (classic GT)
|
|
33
|
+
|
|
34
|
+
### 1) Personal experience (used carefully)
|
|
35
|
+
|
|
36
|
+
Your biography can sensitize you to emotional tones, organizational rhythms, or interactional subtleties.
|
|
37
|
+
|
|
38
|
+
**Risk**: autobiographical projection.
|
|
39
|
+
**Mitigation**: treat personal resonance as a **cue to memo**, then **compare** across cases; seek **negative cases**.
|
|
40
|
+
|
|
41
|
+
### 2) Professional experience
|
|
42
|
+
|
|
43
|
+
Prior practice in a domain (e.g., nursing, engineering, teaching) can help you notice **routine expertise** and **tacit norms**.
|
|
44
|
+
|
|
45
|
+
**Risk**: expert blinders (“that’s just how it is”).
|
|
46
|
+
**Mitigation**: convert expertise into **questions**, not answers; privilege **participants’** problem-solving.
|
|
47
|
+
|
|
48
|
+
### 3) Analytic experience within the study
|
|
49
|
+
|
|
50
|
+
As codes mature, you become sensitized to **patterns**, **absences**, and **deviance**. This is the **strongest** engine of sensitivity in GT.
|
|
51
|
+
|
|
52
|
+
**Practice**: regular **memo sorting** and **hypothesis revision**.
|
|
53
|
+
|
|
54
|
+
### 4) Literature **outside** the substantive area
|
|
55
|
+
|
|
56
|
+
Glaser encourages reading broadly in sociology, psychology, anthropology, philosophy of science, etc., to build a **repertoire of concepts** and **metaphors** that can **suggest** comparisons.
|
|
57
|
+
|
|
58
|
+
**Key move**: use external literature to **stimulate imagination**, not to **name** the phenomenon prematurely.
|
|
59
|
+
|
|
60
|
+
### 5) Literature in the substantive area (timed)
|
|
61
|
+
|
|
62
|
+
Substantive-area literature becomes more appropriate **later**, often as **additional data** for comparison **after** emergence stabilizes—never as a substitute for participants’ lived problem-solving.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## How to cultivate sensitivity (concrete practices)
|
|
67
|
+
|
|
68
|
+
### A) Comparison drills
|
|
69
|
+
|
|
70
|
+
Each session, run **three comparisons**:
|
|
71
|
+
|
|
72
|
+
1. two incidents within the same code
|
|
73
|
+
2. one incident against an emerging **hypothesis**
|
|
74
|
+
3. one incident against a **negative case** candidate
|
|
75
|
+
|
|
76
|
+
### B) “What is this a study of?” prompts
|
|
77
|
+
|
|
78
|
+
Ask repeatedly at different grains:
|
|
79
|
+
|
|
80
|
+
- Of this **line**?
|
|
81
|
+
- Of this **incident**?
|
|
82
|
+
- Of this **interview**?
|
|
83
|
+
- Of the **project** today?
|
|
84
|
+
|
|
85
|
+
### C) Gerund reframing
|
|
86
|
+
|
|
87
|
+
Rewrite nouns into **process language** to reveal action/interaction.
|
|
88
|
+
|
|
89
|
+
### D) Memo-first discipline
|
|
90
|
+
|
|
91
|
+
When a strong interpretation appears, **memo** before expanding coding—capture **scope**, **conditions**, and **counterexamples** you already know.
|
|
92
|
+
|
|
93
|
+
### E) Codebook hygiene
|
|
94
|
+
|
|
95
|
+
Rewrite definitions when they become **too vague** (“stress”) or **too literal** (topic labels). Good definitions sharpen sensitivity for the **next** pass.
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## Threats to sensitivity (and fixes)
|
|
100
|
+
|
|
101
|
+
### Preconception
|
|
102
|
+
|
|
103
|
+
**Symptom**: every incident “supports” your favorite theory.
|
|
104
|
+
**Fix**: actively seek **disconfirming** incidents; split codes when variance appears; invite **outsider** debriefing.
|
|
105
|
+
|
|
106
|
+
### Forcing (template thinking)
|
|
107
|
+
|
|
108
|
+
**Symptom**: codes map 1:1 onto a model you imported.
|
|
109
|
+
**Fix**: remove the template from sight during early passes; rename codes using **data-grounded** language.
|
|
110
|
+
|
|
111
|
+
### Sentimentality / moralizing
|
|
112
|
+
|
|
113
|
+
**Symptom**: analytic language becomes judgmental (“bad management”).
|
|
114
|
+
**Fix**: translate judgments into **processual** categories (*managing accountability*, *externalizing blame*)—still critical, but **conceptual**.
|
|
115
|
+
|
|
116
|
+
### Premature closure
|
|
117
|
+
|
|
118
|
+
**Symptom**: “we already know the story.”
|
|
119
|
+
**Fix**: theoretical sampling aimed at **boundaries**; revisit **early** transcripts with new eyes.
|
|
120
|
+
|
|
121
|
+
### Tool obsession
|
|
122
|
+
|
|
123
|
+
**Symptom**: perfect software tags, thin thinking.
|
|
124
|
+
**Fix**: short, messy **memos** beat pristine code taxonomies.
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Exercises for building sensitivity
|
|
129
|
+
|
|
130
|
+
### Exercise 1 — One paragraph, ten codes
|
|
131
|
+
|
|
132
|
+
Take one dense paragraph. Generate **10 distinct substantive codes** (some will be wrong). Then **merge** aggressively after comparison. Goal: **fluency** and **differentiation**.
|
|
133
|
+
|
|
134
|
+
### Exercise 2 — In vivo extraction
|
|
135
|
+
|
|
136
|
+
Highlight participant phrases that could be **in vivo** codes. For each, write a **one-sentence** translation into more general concepts.
|
|
137
|
+
|
|
138
|
+
### Exercise 3 — Hypothesis ping-pong
|
|
139
|
+
|
|
140
|
+
Write **three** competing hypotheses for the same incident. Use next data to **eliminate** or **revise**.
|
|
141
|
+
|
|
142
|
+
### Exercise 4 — Literature spark (outside area)
|
|
143
|
+
|
|
144
|
+
Read a short unrelated theory piece. Write **two memos**:
|
|
145
|
+
(a) “What concepts might illuminate my data?”
|
|
146
|
+
(b) “How could this **mislead** me if forced?”
|
|
147
|
+
|
|
148
|
+
### Exercise 5 — Negative case journal
|
|
149
|
+
|
|
150
|
+
Maintain a running list: **anomalies**, **silences**, **refusals**, **surprises**. Revisit weekly.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## Outputs that demonstrate growing sensitivity
|
|
155
|
+
|
|
156
|
+
- Memos that specify **conditions** and **consequences**, not only themes.
|
|
157
|
+
- Codes with **properties/dimensions** discovered through comparison.
|
|
158
|
+
- Sampling memos that target **gaps** rather than convenience.
|
|
159
|
+
- A core category that **survives** deviant-case scrutiny.
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## Key references
|
|
164
|
+
|
|
165
|
+
- Glaser, B. G. (1978). *Theoretical sensitivity: Advances in the methodology of grounded theory*. Sociology Press.
|
|
166
|
+
- Glaser, B. G. (1992). *Basics of grounded theory analysis*. Sociology Press.
|
|
167
|
+
- Glaser, B. G. (1998). *Doing grounded theory*. Sociology Press.
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## Companion skills
|
|
172
|
+
|
|
173
|
+
- `memo-writing`, `constant-comparison`, `open-coding`
|
|
174
|
+
- `theoretical-sampling`, `selective-coding`
|
|
175
|
+
- `glaserian-grounded-theory`
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: theory-integration
|
|
3
|
+
description: Use when integrating categories into a coherent grounded theory — connecting core category to related categories through theoretical coding.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Theory Integration in Grounded Theory
|
|
7
|
+
|
|
8
|
+
Integration means your categories **hang together** as an explanatory whole: readers can see **what is going on**, **how it is handled**, **under what conditions**, and **with what results**. Integration is earned through memoing, sorting, and theoretical coding—not through imposing a prefabricated model.
|
|
9
|
+
|
|
10
|
+
## What integration means in GT
|
|
11
|
+
|
|
12
|
+
You move from a list of themes to a **substantive theory** with plausible relationships among categories. The **core category** should organize the story without flattening complexity.
|
|
13
|
+
|
|
14
|
+
## Using theoretical codes to connect categories
|
|
15
|
+
|
|
16
|
+
Glaser’s **coding families** (e.g., causes, contexts, strategies, consequences, stages) help you ask relationship questions:
|
|
17
|
+
|
|
18
|
+
- Is this category a **strategy** participants use when a **condition** holds?
|
|
19
|
+
- Is it a **consequence** of another pattern?
|
|
20
|
+
- Does it represent a **stage** in an evolving process?
|
|
21
|
+
|
|
22
|
+
Apply families as **heuristic prompts**, not a mandatory checklist.
|
|
23
|
+
|
|
24
|
+
## Writing theoretical propositions
|
|
25
|
+
|
|
26
|
+
Write concise statements of relationship:
|
|
27
|
+
|
|
28
|
+
- “When X intensifies under condition Y, participants shift to strategy Z, which reduces A but increases B.”
|
|
29
|
+
|
|
30
|
+
Each proposition should be supportable with **multiple incidents** and resilient against known negative cases—or qualified where exceptions persist.
|
|
31
|
+
|
|
32
|
+
## Developing a storyline
|
|
33
|
+
|
|
34
|
+
A GT storyline typically includes:
|
|
35
|
+
|
|
36
|
+
- **Main concern** (what participants continually address).
|
|
37
|
+
- **Core category** (what processes that concern).
|
|
38
|
+
- **Key strategies/categories** linked to conditions and outcomes.
|
|
39
|
+
|
|
40
|
+
Draft the story in **plain language** first; refine concepts second.
|
|
41
|
+
|
|
42
|
+
## Memo sorting as integration technique
|
|
43
|
+
|
|
44
|
+
Print or list memos; sort into piles that represent **sections of the theory**. Rename piles until the outline matches the data. CAQDAS “maps” can substitute if they mirror the same discipline.
|
|
45
|
+
|
|
46
|
+
## Visual models
|
|
47
|
+
|
|
48
|
+
Create diagrams only after relational claims stabilize enough to be falsified by comparison. Iterate visuals alongside prose (see `visual-modeling`).
|
|
49
|
+
|
|
50
|
+
## Checking for gaps
|
|
51
|
+
|
|
52
|
+
Ask:
|
|
53
|
+
|
|
54
|
+
- Where is the mechanism underspecified?
|
|
55
|
+
- Which conditions are missing?
|
|
56
|
+
- Do I only explain success, not failure?
|
|
57
|
+
- What would a skeptic say is hand-wavy?
|
|
58
|
+
|
|
59
|
+
Return to theoretical sampling if gaps are empirical.
|
|
60
|
+
|
|
61
|
+
## Evaluating coherence
|
|
62
|
+
|
|
63
|
+
Coherent integration:
|
|
64
|
+
|
|
65
|
+
- Uses a stable vocabulary of categories.
|
|
66
|
+
- Explains variation, not only central tendency.
|
|
67
|
+
- Connects micro interactions to meso patterns where data allow.
|
|
68
|
+
|
|
69
|
+
## Writing integration for publication
|
|
70
|
+
|
|
71
|
+
Open with the core story; present a **model** or **proposition set**; support with excerpts; discuss limits and modifiability.
|
|
72
|
+
|
|
73
|
+
## Checklist
|
|
74
|
+
|
|
75
|
+
- [ ] Core category justified by centrality and recurrence.
|
|
76
|
+
- [ ] Theoretical coding clarifies relationships, not just labels.
|
|
77
|
+
- [ ] Propositions stated and evidenced.
|
|
78
|
+
- [ ] Memo sort yields a defensible outline.
|
|
79
|
+
- [ ] Gaps identified; sampling/analysis plan updated if needed.
|
|
80
|
+
|
|
81
|
+
## References (starting points)
|
|
82
|
+
|
|
83
|
+
- Glaser, B. G. *Theoretical Sensitivity* — coding families and integration.
|
|
84
|
+
- Glaser, B. G. *Doing Grounded Theory* — delimiting and theoretical completeness.
|
|
85
|
+
- Holton, J. A. *The coding process and its challenges* (in Holton & Walsh, Classic GT).
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: thick-description
|
|
3
|
+
description: Use when writing rich, contextualized thick description to enable transferability of qualitative findings.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Thick Description in Qualitative Writing
|
|
7
|
+
|
|
8
|
+
Thick description, associated with Clifford Geertz’s interpretive anthropology, aims to portray action in **meaningful context** so readers can understand not only what happened but what it **signified** to participants and how setting shaped it.
|
|
9
|
+
|
|
10
|
+
## Thick vs thin
|
|
11
|
+
|
|
12
|
+
- **Thin description:** “The teacher reprimanded the student.”
|
|
13
|
+
- **Thicker description:** Adds setting, sequence, audience, tone, local norms, and participant sense-making.
|
|
14
|
+
|
|
15
|
+
Thick description is not verbosity; it is **layered relevance**—details that illuminate meaning, power, and mechanism.
|
|
16
|
+
|
|
17
|
+
## Components to include (when analytically relevant)
|
|
18
|
+
|
|
19
|
+
- **Context:** physical environment, institution, history, constraints.
|
|
20
|
+
- **Action:** observable behaviors and talk, sequenced.
|
|
21
|
+
- **Intent/meaning (carefully attributed):** use participants’ language; distinguish their account from your inference.
|
|
22
|
+
- **Social relations:** roles, status, identity dynamics affecting the scene.
|
|
23
|
+
|
|
24
|
+
## Techniques for writing thick description
|
|
25
|
+
|
|
26
|
+
1. **Scene setting:** Anchor time/place; note sensory cues that matter locally.
|
|
27
|
+
2. **Excerpt + gloss:** Present a verbatim slice, then analytically orient the reader without overcoding the excerpt.
|
|
28
|
+
3. **Compare cases:** Show variation across two incidents to clarify what is typical vs contingent.
|
|
29
|
+
4. **Track mechanisms:** Describe how A led to B in practice, not only that B occurred.
|
|
30
|
+
|
|
31
|
+
## Role in transferability
|
|
32
|
+
|
|
33
|
+
Readers judge transferability by **similarity of context and mechanism**, not by statistical generalization. Thick description supplies the material for that judgment.
|
|
34
|
+
|
|
35
|
+
## Examples (illustrative)
|
|
36
|
+
|
|
37
|
+
Thin: “Participants felt unsupported.”
|
|
38
|
+
|
|
39
|
+
Thicker: “During the shift handoff, the nurse interrupted mid-sentence, logged the vitals, and left without acknowledging the aide’s question; the aide later described this as ‘normal’ but sighed, ‘You learn not to expect answers.’”
|
|
40
|
+
|
|
41
|
+
The second version hints at **norms, interactional power, and coping**—analytically usable.
|
|
42
|
+
|
|
43
|
+
## When thick description is essential
|
|
44
|
+
|
|
45
|
+
Ethnography, case studies, discourse-sensitive GT write-ups, and any claim where **local meaning** matters. It is also crucial when publishing to interdisciplinary audiences unfamiliar with your setting.
|
|
46
|
+
|
|
47
|
+
## Common pitfalls
|
|
48
|
+
|
|
49
|
+
- **Irrelevant detail** that reads as travelogue.
|
|
50
|
+
- **Over-interpretation** presented as fact—label inferences.
|
|
51
|
+
- **Anonymization** that strips needed context; balance ethics with clarity.
|
|
52
|
+
|
|
53
|
+
## Integration with analysis
|
|
54
|
+
|
|
55
|
+
Alternate **show** (excerpts, scenes) with **tell** (analytic moves). A useful pattern: excerpt → analytic paragraph linking to category → memo-worthy hypothesis about conditions.
|
|
56
|
+
|
|
57
|
+
## Checklist
|
|
58
|
+
|
|
59
|
+
- [ ] Scenes include context, sequence, and social relations.
|
|
60
|
+
- [ ] Participant meanings distinguished from researcher inference.
|
|
61
|
+
- [ ] Details serve analytic purposes, not decoration.
|
|
62
|
+
- [ ] Transferability supported without over-claiming universality.
|
|
63
|
+
- [ ] Ethical masking strategy preserves useful context where possible.
|
|
64
|
+
|
|
65
|
+
## References (starting points)
|
|
66
|
+
|
|
67
|
+
- Geertz, C. *The interpretation of cultures* — “thick description” essay.
|
|
68
|
+
- Ponterotto, J. G. (2006). Brief note on the origins, evolution, and meaning of the qualitative research concept “thick description.” *The Qualitative Report*.
|
|
69
|
+
- Emerson et al. *Writing ethnographic fieldnotes* — translating observation into narrative evidence.
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: triangulation
|
|
3
|
+
description: Use when using multiple data sources, methods, investigators, or theories to enhance the credibility and depth of qualitative findings.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Triangulation in Qualitative Research
|
|
7
|
+
|
|
8
|
+
Triangulation uses **multiple vantage points** to strengthen interpretation. It can deepen understanding—but it is not a mechanical “more is always better” rule, and it does not automatically produce a single “true” reality.
|
|
9
|
+
|
|
10
|
+
## Types of triangulation
|
|
11
|
+
|
|
12
|
+
- **Data triangulation:** Multiple sources (interviews, observations, documents, artifacts).
|
|
13
|
+
- **Investigator triangulation:** Multiple analysts code/discuss the same material.
|
|
14
|
+
- **Theory triangulation:** Multiple theories/lenses inform interpretation (use carefully to avoid eclectic forcing).
|
|
15
|
+
- **Methodological triangulation:** Multiple methods (e.g., interviews + ethnography; qualitative + quantitative in mixed methods).
|
|
16
|
+
|
|
17
|
+
## Denzin’s framework (classic)
|
|
18
|
+
|
|
19
|
+
Denzin distinguished these modes as ways to overcome partiality of single methods/sources. Contemporary writers emphasize triangulation for **completeness and depth**, not only convergence.
|
|
20
|
+
|
|
21
|
+
## Purposes
|
|
22
|
+
|
|
23
|
+
- **Confirmation:** Independent sources support the same inference (handle cautiously—agreement can reflect shared bias).
|
|
24
|
+
- **Completeness:** Different methods capture different facets (e.g., policy text vs shop-floor practice).
|
|
25
|
+
- **Complementarity:** Methods illuminate mechanisms vs prevalence, meanings vs distributions.
|
|
26
|
+
|
|
27
|
+
## How to conduct each type (practically)
|
|
28
|
+
|
|
29
|
+
**Data triangulation:** Build an **evidence table** linking claim → supporting excerpts across sources → disconfirming evidence searched.
|
|
30
|
+
|
|
31
|
+
**Investigator triangulation:** Use structured coding comparisons, reconciliation sessions, and documented rule changes for the codebook.
|
|
32
|
+
|
|
33
|
+
**Methodological triangulation:** Pre-specify **integration points** (joint displays, threading narratives with descriptive statistics) so mixing is analytic, not decorative.
|
|
34
|
+
|
|
35
|
+
## Triangulation in grounded theory
|
|
36
|
+
|
|
37
|
+
GT already “triangulates” through **constant comparison** across incidents. Adding sources should serve **theoretical sampling** aims: elaborate categories, conditions, and consequences. Avoid importing a fixed multi-method plan that steers analysis away from emergent core categories.
|
|
38
|
+
|
|
39
|
+
## Limitations and critiques
|
|
40
|
+
|
|
41
|
+
Triangulation assumes a somewhat realist stance when framed as convergence. Constructivist researchers may prefer **crystallization** metaphors: multiple facets refract light differently. Also, triangulation increases **cost, time, and IRB complexity**—justify it analytically.
|
|
42
|
+
|
|
43
|
+
## Output format (example)
|
|
44
|
+
|
|
45
|
+
For a finding F:
|
|
46
|
+
|
|
47
|
+
| Source type | Evidence snippet ID | Supports? | Notes / tensions |
|
|
48
|
+
|-------------|---------------------|-----------|------------------|
|
|
49
|
+
| Interview | P12: 00:18:22 | Yes | Describes mechanism |
|
|
50
|
+
| Document | Policy §4.2 | Partial | Official vs practiced gap |
|
|
51
|
+
| Observation | Site visit 3 | No | Suggests alternative routine |
|
|
52
|
+
|
|
53
|
+
## Checklist
|
|
54
|
+
|
|
55
|
+
- [ ] Triangulation type matches research question and paradigm.
|
|
56
|
+
- [ ] Integration strategy defined (not just data pile-on).
|
|
57
|
+
- [ ] Disconfirming evidence actively sought across sources.
|
|
58
|
+
- [ ] GT: triangulation serves theoretical sampling, not premature closure.
|
|
59
|
+
- [ ] Limitations of convergence logic acknowledged where constructivist.
|
|
60
|
+
|
|
61
|
+
## References (starting points)
|
|
62
|
+
|
|
63
|
+
- Denzin, N. K. *The research act* (classic triangulation typology—read contemporary critiques too).
|
|
64
|
+
- Flick, U. *An introduction to qualitative research* — triangulation in practice.
|
|
65
|
+
- O’Cathain, A., Murphy, E., & Nicholl, J. (2010). Multidisciplinary, interdisciplinary, or dysfunctional? *Journal of Mixed Methods Research*.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: visual-modeling
|
|
3
|
+
description: Use when creating visual representations of grounded theory — concept maps, theoretical diagrams, process models, and conditional matrices.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Visual Modeling for Grounded Theory
|
|
7
|
+
|
|
8
|
+
Visual models externalize relationships among categories so you can **spot gaps, contradictions, and over-clutter**. They are thinking tools first; publication figures second.
|
|
9
|
+
|
|
10
|
+
## Types of visual models
|
|
11
|
+
|
|
12
|
+
- **Concept maps:** nodes (concepts) and labeled links (e.g., “leads to,” “is a type of”).
|
|
13
|
+
- **Process diagrams:** stages, phases, turning points—useful for temporal theories.
|
|
14
|
+
- **Conditional matrices:** rows/columns represent conditions and outcomes; cells hold exemplar incidents.
|
|
15
|
+
- **Network diagrams:** emphasize multiple interacting factors; good for complex ecologies of action.
|
|
16
|
+
|
|
17
|
+
## When to create them
|
|
18
|
+
|
|
19
|
+
After you have **repeatable categories** and tentative relationships—mid selective/theoretical coding. Early visuals risk crystallizing premature closure; late visuals may only decorate finished text without aiding thought.
|
|
20
|
+
|
|
21
|
+
## Constructing from sorted memos
|
|
22
|
+
|
|
23
|
+
1. List major categories on sticky notes or index cards.
|
|
24
|
+
2. Move them until spatial proximity reflects **hypothesized relations**.
|
|
25
|
+
3. Draw links; label each link with a **verb phrase** (“triggers,” “buffers,” “masks”).
|
|
26
|
+
4. For each link, attach **2+ incident IDs** as evidence anchors.
|
|
27
|
+
|
|
28
|
+
## Conventions for representing relationships
|
|
29
|
+
|
|
30
|
+
- Use consistent arrow direction (cause → effect; condition → strategy).
|
|
31
|
+
- Distinguish **strong** vs **tentative** links (dashed vs solid) and keep a legend.
|
|
32
|
+
- Avoid decorating with colors that have no coded meaning.
|
|
33
|
+
|
|
34
|
+
## Iterating on visual models
|
|
35
|
+
|
|
36
|
+
Each iteration should respond to **disconfirming incidents** or **new theoretical sampling**. Version files (`model_v3.png`) and note what changed in the audit trail.
|
|
37
|
+
|
|
38
|
+
## Using visuals in publications
|
|
39
|
+
|
|
40
|
+
Provide a clean figure with minimal jargon; define terms in the caption; ensure the figure matches claims in text. Some journals want black-and-white friendly palettes.
|
|
41
|
+
|
|
42
|
+
## Conditional matrix tips
|
|
43
|
+
|
|
44
|
+
Start small (3×3). Expand only when cells remain meaningful. If a cell is empty, ask whether the absence is **empirical** or a **modeling error**.
|
|
45
|
+
|
|
46
|
+
## Software options
|
|
47
|
+
|
|
48
|
+
Whiteboards, Miro, Obsidian canvas, PowerPoint, OmniGraffle, Graphviz, CAQDAS maps. Pick what keeps you **fast**; avoid tool obsession.
|
|
49
|
+
|
|
50
|
+
## Grounded theory alignment
|
|
51
|
+
|
|
52
|
+
Models express **substantive theory**, not literature diagrams. If your figure recreates a framework from a prior study, scrutinize for **forcing**.
|
|
53
|
+
|
|
54
|
+
## Checklist
|
|
55
|
+
|
|
56
|
+
- [ ] Model type matches the phenomenon (process vs network).
|
|
57
|
+
- [ ] Links labeled; legend clarifies line styles.
|
|
58
|
+
- [ ] Evidence references attached for major relationships.
|
|
59
|
+
- [ ] Iterations versioned; changes explained.
|
|
60
|
+
- [ ] Publication figure readable at print size.
|
|
61
|
+
|
|
62
|
+
## References (starting points)
|
|
63
|
+
|
|
64
|
+
- Strauss, A., & Corbin, J. *Basics of Qualitative Research* — conditional matrix tradition (read critically with Glaserian integration goals).
|
|
65
|
+
- Konecki, K. *Visualizing Grounded Theory*.
|
|
66
|
+
- Northcutt, N., & McCoy, D. *Interactive Qualitative Analysis* — diagramming practices across approaches.
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vulnerable-populations
|
|
3
|
+
description: Use when conducting research with vulnerable populations — children, prisoners, people with cognitive impairments, marginalized communities.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Research with Vulnerable Populations
|
|
7
|
+
|
|
8
|
+
“Vulnerability” is **contextual**: it arises from diminished autonomy, heightened risk, stigma, legal status, or dependence on gatekeepers. Ethical practice adds **protections**, slows recruitment when needed, and designs consent/assent processes that match capacity and culture.
|
|
9
|
+
|
|
10
|
+
## Defining vulnerability (practically)
|
|
11
|
+
|
|
12
|
+
Regulated categories often include **children, prisoners, pregnant persons, cognitively impaired individuals, economically/educationally disadvantaged persons** (as defined by IRBs). Beyond regulation, consider **intersectional vulnerability**: racism, transphobia, immigration precarity, and workplace retaliation can constrain “free” consent.
|
|
13
|
+
|
|
14
|
+
## Additional protections
|
|
15
|
+
|
|
16
|
+
- Minimize data collected; maximize security.
|
|
17
|
+
- Independent advocates or community liaisons when appropriate.
|
|
18
|
+
- Proportional incentives that do not coerce.
|
|
19
|
+
- Clear distress protocols and referrals.
|
|
20
|
+
|
|
21
|
+
## Capacity to consent
|
|
22
|
+
|
|
23
|
+
Assess understanding of study purpose, risks, benefits, and withdrawal. Use **supported decision-making** where ethical and legal frameworks allow: trusted supporter present, accessible formats, extra time, plain language, repeated opportunities to ask questions.
|
|
24
|
+
|
|
25
|
+
## Assent for minors
|
|
26
|
+
|
|
27
|
+
Parent/guardian permission plus **child assent** when IRB requires. Use developmentally appropriate explanations; honor **dissent** even if permission exists (per IRB policy and local norms).
|
|
28
|
+
|
|
29
|
+
## Gatekeeper negotiation
|
|
30
|
+
|
|
31
|
+
Gatekeepers (schools, clinics, employers) control access but must not **coerce** participation. Obtain individual consent separately; clarify that gatekeepers will not see identifiable responses when promised.
|
|
32
|
+
|
|
33
|
+
## Cultural safety
|
|
34
|
+
|
|
35
|
+
Partner with community members; avoid parachute extraction of stories; compensate knowledge fairly; use language-accessible materials; schedule around work/childcare constraints.
|
|
36
|
+
|
|
37
|
+
## Trauma-informed approaches
|
|
38
|
+
|
|
39
|
+
Predictability (agenda transparency), choice (skip questions), collaboration (participant control where feasible), empowerment (debrief resources), and cultural humility. Train interviewers in grounding techniques and when to stop.
|
|
40
|
+
|
|
41
|
+
## Power considerations
|
|
42
|
+
|
|
43
|
+
Institutional researchers carry symbolic power. Mitigate via tone, pacing, explicit rights to pause/stop, and avoiding interrogatory styles.
|
|
44
|
+
|
|
45
|
+
## Community-based participatory approaches
|
|
46
|
+
|
|
47
|
+
Shared governance of questions, interpretation, and dissemination can redistribute power. Document roles, credit, and data ownership expectations up front.
|
|
48
|
+
|
|
49
|
+
## Ethical board requirements
|
|
50
|
+
|
|
51
|
+
Many institutions require **full board** review for vulnerable categories. Build extra time into timelines; prepare waiver requests only when genuinely justified.
|
|
52
|
+
|
|
53
|
+
## Grounded theory note
|
|
54
|
+
|
|
55
|
+
Theoretical sampling must never outrun **safeguards**. If pursuing sensitive incidents, pre-plan psychological safety and legal reporting boundaries.
|
|
56
|
+
|
|
57
|
+
## Checklist
|
|
58
|
+
|
|
59
|
+
- [ ] Vulnerability sources identified (regulatory + contextual).
|
|
60
|
+
- [ ] Consent/assent/capacity pathways defined and documented.
|
|
61
|
+
- [ ] Gatekeeper dynamics managed without coercion.
|
|
62
|
+
- [ ] Trauma-informed protocols in place for sensitive topics.
|
|
63
|
+
- [ ] Community partnership/credit plan where applicable.
|
|
64
|
+
|
|
65
|
+
## References (starting points)
|
|
66
|
+
|
|
67
|
+
- U.S. DHHS regulations on human subjects (45 CFR 46) — Subparts B–D contexts.
|
|
68
|
+
- Elliott, D., et al. Trauma-informed interviewing principles (field-specific guidance).
|
|
69
|
+
- Minkler, M., & Wallerstein, N. (Eds.). *Community-based participatory research for health*.
|