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,80 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: category-development
|
|
3
|
+
description: Use when developing and densifying categories with properties, dimensions, conditions, and consequences.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Category Development and Densification
|
|
7
|
+
|
|
8
|
+
A **category** is a higher-order concept that groups related incidents under an abstract label. Dense categories specify **properties** (characteristics) and **dimensions** (ranges along which properties vary), plus **conditions** under which patterns hold and **consequences** that follow.
|
|
9
|
+
|
|
10
|
+
## From code to category
|
|
11
|
+
|
|
12
|
+
Move up a level when multiple codes repeatedly co-occur or share a latent pattern. Rename categories using **participant-relevant** language when possible (in vivo lift), then refine to conceptual clarity.
|
|
13
|
+
|
|
14
|
+
## Properties and dimensions
|
|
15
|
+
|
|
16
|
+
- **Property:** what kind of thing this category is (e.g., “visibility” as a property of stigma management).
|
|
17
|
+
- **Dimension:** the range (high/low, public/private, formal/informal).
|
|
18
|
+
|
|
19
|
+
Example: if “time pressure” is a category, properties might include *source* (institutional vs interpersonal) and *duration* (acute vs chronic); dimensions map variation across cases.
|
|
20
|
+
|
|
21
|
+
## Conditions and consequences
|
|
22
|
+
|
|
23
|
+
Ask:
|
|
24
|
+
|
|
25
|
+
- **When** does this category appear? **Under what conditions** does it intensify or disappear?
|
|
26
|
+
- **What follows** from it—emotionally, interactionally, structurally?
|
|
27
|
+
|
|
28
|
+
Use **conditional matrices** (see `visual-modeling`) when relationships multiply.
|
|
29
|
+
|
|
30
|
+
## Densification through comparison
|
|
31
|
+
|
|
32
|
+
Compare incidents within the same category to discover **new properties**. Compare across categories to locate **boundaries** (what this category is not).
|
|
33
|
+
|
|
34
|
+
## Thin vs thick categories
|
|
35
|
+
|
|
36
|
+
A **thin** category is a label without variation spelled out. A **thick** category has:
|
|
37
|
+
|
|
38
|
+
- Clear definition.
|
|
39
|
+
- Exemplar incidents.
|
|
40
|
+
- Property/dimension map.
|
|
41
|
+
- Known conditions/consequences.
|
|
42
|
+
- documented negative cases.
|
|
43
|
+
|
|
44
|
+
## Relationship to saturation
|
|
45
|
+
|
|
46
|
+
Saturation is **about categories**: you stop sampling for a category when fresh data no longer reveals new properties/dimensions relevant to your emerging theory. Some peripheral categories may remain thin if they are not theoretically central—justify that choice.
|
|
47
|
+
|
|
48
|
+
## Category profile template (use in memos)
|
|
49
|
+
|
|
50
|
+
- **Name:**
|
|
51
|
+
- **Definition:**
|
|
52
|
+
- **Exemplars (IDs):**
|
|
53
|
+
- **Properties & dimensions:**
|
|
54
|
+
- **Conditions:**
|
|
55
|
+
- **Consequences:**
|
|
56
|
+
- **Related categories (hypothesized links):**
|
|
57
|
+
- **Negative cases:**
|
|
58
|
+
|
|
59
|
+
## Worked example (abbreviated)
|
|
60
|
+
|
|
61
|
+
Category: **“Patching workarounds.”**
|
|
62
|
+
|
|
63
|
+
- Property: *visibility* (hidden vs visible to management).
|
|
64
|
+
- Dimension: *risk* (low vs high sanction).
|
|
65
|
+
- Condition: arises when formal protocols conflict with patient safety pressures.
|
|
66
|
+
- Consequence: temporary relief but accumulates moral distress.
|
|
67
|
+
|
|
68
|
+
## Checklist
|
|
69
|
+
|
|
70
|
+
- [ ] Category defined at one conceptual level (not a grab-bag).
|
|
71
|
+
- [ ] Properties/dimensions extracted via comparison.
|
|
72
|
+
- [ ] Conditions/consequences hypothesized and tested with new data.
|
|
73
|
+
- [ ] Negative cases actively sought.
|
|
74
|
+
- [ ] Links to core category articulated as the theory matures.
|
|
75
|
+
|
|
76
|
+
## References (starting points)
|
|
77
|
+
|
|
78
|
+
- Glaser, B. G. *Theoretical Sensitivity* — theoretical coding families and category logic.
|
|
79
|
+
- Strauss, A., & Corbin, J. *Basics of Qualitative Research* — conditional/consequential thinking (read critically alongside Glaserian distinctions).
|
|
80
|
+
- Konecki, K. *Visualizing Grounded Theory* — diagrams for category relations.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: chicago-formatting
|
|
3
|
+
description: Use when formatting academic work in Chicago/Turabian style — notes-bibliography or author-date systems.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Chicago / Turabian Formatting for Qualitative Work
|
|
7
|
+
|
|
8
|
+
The *Chicago Manual of Style* offers two citation systems: **notes-bibliography** (NB) and **author-date** (AD). Many humanities dissertations use NB; many social sciences accept AD. Pick one system and **stay consistent**.
|
|
9
|
+
|
|
10
|
+
## Notes-bibliography system
|
|
11
|
+
|
|
12
|
+
Citations appear as **footnotes or endnotes** with superscript numbers in text. Notes include full or shortened source forms depending on whether it is the first citation. A **bibliography** lists all sources alphabetically at the end.
|
|
13
|
+
|
|
14
|
+
Typical use: history, some education and religious studies, legal-adjacent writing, narrative-heavy qualitative theses.
|
|
15
|
+
|
|
16
|
+
## Author-date system
|
|
17
|
+
|
|
18
|
+
Citations appear parenthetically in text: (Smith 2020, 45–46). Reference list entries resemble APA-like author-date entries but follow Chicago punctuation and capitalization rules.
|
|
19
|
+
|
|
20
|
+
Typical use: anthropology, parts of sociology when Chicago is required.
|
|
21
|
+
|
|
22
|
+
## When to use each
|
|
23
|
+
|
|
24
|
+
Use NB when:
|
|
25
|
+
|
|
26
|
+
- Discursive footnotes carry substantive commentary.
|
|
27
|
+
- Advisors expect classical humanities form.
|
|
28
|
+
|
|
29
|
+
Use AD when:
|
|
30
|
+
|
|
31
|
+
- You want in-text compactness similar to APA.
|
|
32
|
+
- You write for social-science journals using author-date Chicago.
|
|
33
|
+
|
|
34
|
+
## Formatting differences from APA (high level)
|
|
35
|
+
|
|
36
|
+
- Title capitalization in notes/bibliography follows **headline-style** for sources in Chicago (contrast with APA sentence-style for article titles).
|
|
37
|
+
- Publication locations appear for some book entries in NB (check current Chicago for rules on omitting cities).
|
|
38
|
+
- Quotation integration and punctuation with quotes differ—follow Chicago’s “American style” quote rules unless instructed otherwise.
|
|
39
|
+
|
|
40
|
+
## Bibliography vs reference list
|
|
41
|
+
|
|
42
|
+
NB ends with **Bibliography** (often alphabetical by author).
|
|
43
|
+
|
|
44
|
+
AD ends with **Reference list** (alphabetical).
|
|
45
|
+
|
|
46
|
+
Do not mix NB footnotes with an APA-style reference list without explicit guidance.
|
|
47
|
+
|
|
48
|
+
## Common source types (patterns to verify in CMOS)
|
|
49
|
+
|
|
50
|
+
- **Book:** Author. *Title*. Place: Publisher, Year.
|
|
51
|
+
- **Chapter:** Author. “Chapter Title.” In *Book Title*, edited by Editor, pages. Place: Publisher, Year.
|
|
52
|
+
- **Journal:** Author. “Article Title.” *Journal* volume, no. issue (Year): pages. URL/DOI if applicable.
|
|
53
|
+
|
|
54
|
+
Always confirm italics/quotation marks for titles against the current edition.
|
|
55
|
+
|
|
56
|
+
## Chicago-specific rules (selected reminders)
|
|
57
|
+
|
|
58
|
+
- **Ibid.** usage has evolved across editions—verify for your CMOS version.
|
|
59
|
+
- **Shortened notes** after first full citation reduce clutter.
|
|
60
|
+
- **Access dates** for unstable URLs may be required—follow department style.
|
|
61
|
+
|
|
62
|
+
## Qualitative writing notes
|
|
63
|
+
|
|
64
|
+
Long ethnographic excerpts may require **block indentation** per Chicago. If you reproduce participant dialogue, ensure consent and anonymization align with ethics; Chicago cares about **accuracy** and **ellipsis** ethics too.
|
|
65
|
+
|
|
66
|
+
## Turabian
|
|
67
|
+
|
|
68
|
+
*A Manual for Writers* aligns with Chicago but streamlines student work. Use Turabian when assigned; otherwise CMOS is authoritative.
|
|
69
|
+
|
|
70
|
+
## Checklist
|
|
71
|
+
|
|
72
|
+
- [ ] NB vs AD chosen; not mixed.
|
|
73
|
+
- [ ] First full note/reference correct; shortened forms consistent.
|
|
74
|
+
- [ ] Bibliography/reference list alphabetized and complete.
|
|
75
|
+
- [ ] Title capitalization and italics match Chicago.
|
|
76
|
+
- [ ] Block quotes and ellipses follow Chicago mechanics.
|
|
77
|
+
|
|
78
|
+
## References (starting points)
|
|
79
|
+
|
|
80
|
+
- *The Chicago Manual of Style* (17th ed.).
|
|
81
|
+
- Turabian, K. L. *A Manual for Writers of Research Papers, Theses, and Dissertations* (9th ed.).
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: coding-pipeline
|
|
3
|
+
description: Use when orchestrating the full open → selective → theoretical coding pipeline in grounded theory analysis.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Grounded Theory Coding Pipeline (Open → Selective → Theoretical)
|
|
7
|
+
|
|
8
|
+
The coding pipeline is not a one-way assembly line. It is a **disciplined progression** where you repeatedly move between coding, comparing, sampling, and memoing until a theory **fits**, **works**, and earns **relevance**.
|
|
9
|
+
|
|
10
|
+
## Pipeline overview
|
|
11
|
+
|
|
12
|
+
1. **Open coding:** break data into incidents; label actions/meanings; keep comparisons tight.
|
|
13
|
+
2. **Selective coding:** elevate a core category; relate other categories to it; delimit the theory’s scope.
|
|
14
|
+
3. **Theoretical coding:** integrate categories using theoretical codes (families) to specify relationships among categories.
|
|
15
|
+
|
|
16
|
+
Throughout: **memoing** captures hypotheses about relationships; **theoretical sampling** targets missing variation.
|
|
17
|
+
|
|
18
|
+
## Transition criteria (practical signals)
|
|
19
|
+
|
|
20
|
+
Move toward **selective coding** when:
|
|
21
|
+
|
|
22
|
+
- A category repeatedly explains variation and connects to many others.
|
|
23
|
+
- Additional data mainly **densifies** rather than fractures the emerging core story.
|
|
24
|
+
|
|
25
|
+
Move toward **theoretical coding** when:
|
|
26
|
+
|
|
27
|
+
- Major categories are stabilized enough to ask **how they relate** (processually, conditionally, strategically).
|
|
28
|
+
|
|
29
|
+
Return to open coding when **anomalies** appear—regression is healthy.
|
|
30
|
+
|
|
31
|
+
## Parallel processes
|
|
32
|
+
|
|
33
|
+
Never pause memoing to “finish coding.” Memos are where theory grows. Schedule **memo-first** blocks after intense coding sessions.
|
|
34
|
+
|
|
35
|
+
## Quality checkpoints
|
|
36
|
+
|
|
37
|
+
- **Fit check:** Do codes fit incidents without stretching?
|
|
38
|
+
- **Work check:** Does the emerging theory explain how problems are handled/processes unfold?
|
|
39
|
+
- **Relevance check:** Does it address the real concern in the data (not the literature’s concern)?
|
|
40
|
+
- **Modifiability check:** Can you revise categories when new data demands it?
|
|
41
|
+
|
|
42
|
+
## Iteration patterns
|
|
43
|
+
|
|
44
|
+
Common loops:
|
|
45
|
+
|
|
46
|
+
- Open → memo → theoretical sampling → open.
|
|
47
|
+
- Selective → theoretical → return to selective when integration breaks.
|
|
48
|
+
|
|
49
|
+
Document each loop in an audit trail entry (“why we reopened category X”).
|
|
50
|
+
|
|
51
|
+
## Common stalling points
|
|
52
|
+
|
|
53
|
+
- **Code sprawl:** too many codes at similar abstraction—schedule **code consolidation** sessions.
|
|
54
|
+
- **Premature core category:** excitement about a pet theme—assign a **devil’s advocate** debriefer.
|
|
55
|
+
- **Analysis paralysis:** set a rule—code N incidents, then write one **integrative memo**.
|
|
56
|
+
|
|
57
|
+
## Timeline expectations
|
|
58
|
+
|
|
59
|
+
Timelines vary by data density and team size. A usable heuristic: expect **many cycles**; dissertations often spend months in open/selective interplay. Proposals should budget accordingly.
|
|
60
|
+
|
|
61
|
+
## Software note
|
|
62
|
+
|
|
63
|
+
CAQDAS tools can help retrieval but cannot replace **constant comparison discipline**. Export periodic codebooks; version them.
|
|
64
|
+
|
|
65
|
+
## Handoff to writing
|
|
66
|
+
|
|
67
|
+
When theoretical integration stabilizes, begin sorting memos into an outline. Writing is another pass of **theoretical refinement**.
|
|
68
|
+
|
|
69
|
+
## Checklist
|
|
70
|
+
|
|
71
|
+
- [ ] Open coding grounded in incidents, not preconceptions.
|
|
72
|
+
- [ ] Memos continuous; hypotheses dated.
|
|
73
|
+
- [ ] Selective coding justified by centrality and recurrence in data.
|
|
74
|
+
- [ ] Theoretical coding specifies relationships, not just labels.
|
|
75
|
+
- [ ] Regression to earlier stages documented when anomalies arise.
|
|
76
|
+
|
|
77
|
+
## References (starting points)
|
|
78
|
+
|
|
79
|
+
- Glaser, B. G. *Basics of Grounded Theory Analysis: Emergence vs. Forcing*.
|
|
80
|
+
- Glaser, B. G. *Doing Grounded Theory: Issues and Discussions*.
|
|
81
|
+
- Holton, J. A., & Walsh, I. *Classic Grounded Theory: Applications With Qualitative and Quantitative Data*.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: conceptual-frameworks
|
|
3
|
+
description: Use when building or using conceptual and theoretical frameworks in qualitative research.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Conceptual and Theoretical Frameworks
|
|
7
|
+
|
|
8
|
+
A **conceptual framework** organizes key concepts and their proposed relationships for inquiry. A **theoretical framework** anchors the study more explicitly in named theories. Frameworks can clarify focus—or **force** data if deployed insensitively.
|
|
9
|
+
|
|
10
|
+
## Conceptual vs theoretical
|
|
11
|
+
|
|
12
|
+
- **Conceptual:** often diagrammatic; may combine constructs from several sources without full commitment to one grand theory.
|
|
13
|
+
- **Theoretical:** cites specific theories (e.g., Bourdieu, stress-process models) to interpret mechanisms.
|
|
14
|
+
|
|
15
|
+
The boundary is fuzzy in practice; be explicit about what you are doing.
|
|
16
|
+
|
|
17
|
+
## Role in qualitative research (non-GT)
|
|
18
|
+
|
|
19
|
+
In case studies, ethnographies, or thematic analyses, frameworks can:
|
|
20
|
+
|
|
21
|
+
- Provide **sensitizing concepts** (Blumer).
|
|
22
|
+
- Guide initial sampling or interview topics.
|
|
23
|
+
- Offer **dialogue partners** in discussion sections.
|
|
24
|
+
|
|
25
|
+
## Glaser’s stance: no framework before GT (classic)
|
|
26
|
+
|
|
27
|
+
In Glaserian classic GT, avoid importing a substantive-area framework **before** emergence. Literature prior to analysis can **force** categories. Instead, develop theoretical sensitivity through **broad reading outside** the substantive area and through **memoing**.
|
|
28
|
+
|
|
29
|
+
If a framework appears later, treat extant theory as **more data** to compare against your emergent theory.
|
|
30
|
+
|
|
31
|
+
## When frameworks are appropriate
|
|
32
|
+
|
|
33
|
+
Framework-first approaches can be appropriate when:
|
|
34
|
+
|
|
35
|
+
- Your question is explicitly **theory-testing** or **critical** (not classic GT).
|
|
36
|
+
- You use **program theory** evaluation designs.
|
|
37
|
+
- You conduct **deductive** qualitative content analysis with transparent rules.
|
|
38
|
+
|
|
39
|
+
## Building a framework from literature (when allowed)
|
|
40
|
+
|
|
41
|
+
1. Map constructs and claims across sources.
|
|
42
|
+
2. Identify **contradictions** and **boundary conditions**.
|
|
43
|
+
3. Draft a diagram with **directional hypotheses** framed as **working ideas**, not shackles.
|
|
44
|
+
4. Iterate after early data—revise or abandon what fails to fit.
|
|
45
|
+
|
|
46
|
+
## Visual representation
|
|
47
|
+
|
|
48
|
+
Use boxes for constructs, arrows for proposed influences, footnotes for contested links. Keep **legends** and **definitions** adjacent; avoid spaghetti diagrams.
|
|
49
|
+
|
|
50
|
+
## Sensitizing concepts (Blumer)
|
|
51
|
+
|
|
52
|
+
Sensitizing concepts give **direction** without determining findings: they suggest **what kinds of things matter** (e.g., “career,” “negotiation”) while leaving content open.
|
|
53
|
+
|
|
54
|
+
## Integration with analysis
|
|
55
|
+
|
|
56
|
+
If you start with sensitizing concepts, log **every moment** a concept did not fit—those moments often birth **new categories**.
|
|
57
|
+
|
|
58
|
+
## Checklist
|
|
59
|
+
|
|
60
|
+
- [ ] Framework purpose stated (sensitizing vs testing vs GT-post-emergence).
|
|
61
|
+
- [ ] Classic GT: pre-study substantive forcing avoided.
|
|
62
|
+
- [ ] Definitions operationalized enough to guide (not strangle) inquiry.
|
|
63
|
+
- [ ] Visual model readable; arrows interpreted.
|
|
64
|
+
- [ ] Revisions tracked when data challenge the framework.
|
|
65
|
+
|
|
66
|
+
## References (starting points)
|
|
67
|
+
|
|
68
|
+
- Blumer, H. *Symbolic interactionism: Perspective and method* — sensitizing concepts.
|
|
69
|
+
- Miles, M. B., Huberman, A. M., & Saldaña, J. *Qualitative data analysis: A methods sourcebook* — matrix-based conceptual displays.
|
|
70
|
+
- Glaser, B. G. *Theoretical Sensitivity* — caution on imported frameworks in GT.
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: constant-comparison
|
|
3
|
+
description: "Use when conducting the constant comparative method — comparing incidents to incidents, incidents to concepts, and concepts to concepts."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Constant Comparative Method
|
|
7
|
+
|
|
8
|
+
The constant comparative method is the **engine** of classic grounded theory. It converts raw experience into **concepts** and concepts into **theory** by systematic comparison. Without comparison, coding collapses into **summary**; with comparison, coding becomes **analytic**.
|
|
9
|
+
|
|
10
|
+
Use this skill whenever you are generating codes, merging categories, defining properties/dimensions, testing a core category, or evaluating saturation claims.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## What constant comparison accomplishes
|
|
15
|
+
|
|
16
|
+
- **Refines codes** (definitions, inclusion/exclusion boundaries).
|
|
17
|
+
- **Surfaces properties and dimensions** of categories.
|
|
18
|
+
- **Suggests hypotheses** about conditions, strategies, and consequences.
|
|
19
|
+
- **Prevents forcing** by continually confronting ideas with **new** and **deviant** data.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## Four stages (Glaser & Strauss, 1967) and how they operate today
|
|
24
|
+
|
|
25
|
+
Classic texts describe comparing as progressing through **comparing incidents applicable to each category**, **integrating categories and their properties**, **delimiting the theory**, and **writing theory**. In practice, these **overlap**—but the sequence is still pedagogically useful.
|
|
26
|
+
|
|
27
|
+
### Stage 1 — Compare incidents to incidents (within emerging codes)
|
|
28
|
+
|
|
29
|
+
**Goal**: Ensure a code is **conceptually consistent** and **data-grounded**.
|
|
30
|
+
|
|
31
|
+
**Micro-procedure**:
|
|
32
|
+
|
|
33
|
+
1. Pick a code (e.g., *delaying disclosure*).
|
|
34
|
+
2. Collect **several** incidents tagged with that code.
|
|
35
|
+
3. Ask: **What is similar?** What differs?
|
|
36
|
+
4. Update the code definition; split into two codes if differences are **systematic**.
|
|
37
|
+
|
|
38
|
+
**Output**: tighter definitions; early **properties** (“kinds of delaying,” “degrees of delaying”).
|
|
39
|
+
|
|
40
|
+
### Stage 2 — Compare incidents to concepts (refinement)
|
|
41
|
+
|
|
42
|
+
**Goal**: Use new data to **test** the conceptual label.
|
|
43
|
+
|
|
44
|
+
**Micro-procedure**:
|
|
45
|
+
|
|
46
|
+
1. Read a new incident.
|
|
47
|
+
2. Ask: “Is it still **this** category, or a **variant**, or a **different** category?”
|
|
48
|
+
3. If it stretches the definition uncomfortably, **rename/split** rather than “make it fit.”
|
|
49
|
+
|
|
50
|
+
**Output**: dimensional thinking; boundary conditions; negative cases queued.
|
|
51
|
+
|
|
52
|
+
### Stage 3 — Compare concepts to concepts (integration)
|
|
53
|
+
|
|
54
|
+
**Goal**: Build **relationship statements** among categories.
|
|
55
|
+
|
|
56
|
+
**Micro-procedure**:
|
|
57
|
+
|
|
58
|
+
1. Take two mature categories (e.g., *psychological safety* and *disclosure timing*).
|
|
59
|
+
2. Ask: **Do they co-occur?** **Does one enable/constrain the other?** **Under what conditions?**
|
|
60
|
+
3. Write a **memo hypothesis** and mark it as provisional.
|
|
61
|
+
|
|
62
|
+
**Output**: contingent hypotheses; later fodder for **theoretical coding**.
|
|
63
|
+
|
|
64
|
+
### Stage 4 — Delimiting comparisons (selective phase)
|
|
65
|
+
|
|
66
|
+
**Goal**: Stop expanding sideways; deepen **core-related** comparisons.
|
|
67
|
+
|
|
68
|
+
**Micro-procedure**:
|
|
69
|
+
|
|
70
|
+
1. Hold the **core category** constant.
|
|
71
|
+
2. Compare new incidents for **what they add** to core-linked hypotheses.
|
|
72
|
+
3. Drop comparisons that **do not change** your integrated outline.
|
|
73
|
+
|
|
74
|
+
**Output**: theoretical density without endless sprawl.
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Comparison at each level (cheat sheet)
|
|
79
|
+
|
|
80
|
+
| Level | Question | Typical yield |
|
|
81
|
+
|------|----------|----------------|
|
|
82
|
+
| Incident ↔ incident | “Same meaning?” | Code splits/merges |
|
|
83
|
+
| Incident ↔ concept | “Still fits?” | Property/dimension refinement |
|
|
84
|
+
| Concept ↔ concept | “How connected?” | Hypotheses + theoretical codes |
|
|
85
|
+
| Model ↔ negative case | “Where breaks?” | Boundary conditions |
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Practical techniques you can use in a coding session
|
|
90
|
+
|
|
91
|
+
### 1) Flip-flop comparison
|
|
92
|
+
|
|
93
|
+
Take two incidents that **look opposite**. Force yourself to name the **conceptual axis** that distinguishes them (a **dimension**).
|
|
94
|
+
|
|
95
|
+
### 2) Worst-case / best-case contrast
|
|
96
|
+
|
|
97
|
+
Select extremes within your sample (if available). Ask what conditions produce the difference.
|
|
98
|
+
|
|
99
|
+
### 3) Silent-voice comparison
|
|
100
|
+
|
|
101
|
+
Ask: “Who is **not** represented here?” Negative cases may be **data absences**—note as a **sampling** issue, not only analytic failure.
|
|
102
|
+
|
|
103
|
+
### 4) Source triangulation comparison
|
|
104
|
+
|
|
105
|
+
Compare **interview** claims to **observation** or **documents** where possible. Treat discrepancies as **analytic gold**.
|
|
106
|
+
|
|
107
|
+
### 5) Time-slice comparison
|
|
108
|
+
|
|
109
|
+
Compare **early vs late** interview moments within a longitudinal account (if applicable).
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## Comparison matrices (lightweight templates)
|
|
114
|
+
|
|
115
|
+
### Matrix A — Property discovery
|
|
116
|
+
|
|
117
|
+
```text
|
|
118
|
+
Category: ________
|
|
119
|
+
Incident ID | Evidence snippet | Candidate property | Notes |
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### Matrix B — Hypothesis testing
|
|
123
|
+
|
|
124
|
+
```text
|
|
125
|
+
Hypothesis: If [condition], then [strategy], leading to [outcome].
|
|
126
|
+
Supporting incidents (IDs):
|
|
127
|
+
Contradicting incidents (IDs):
|
|
128
|
+
Revised hypothesis:
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
### Matrix C — Merge/split decisions
|
|
132
|
+
|
|
133
|
+
```text
|
|
134
|
+
Code A vs Code B:
|
|
135
|
+
Similarities:
|
|
136
|
+
Systematic differences:
|
|
137
|
+
Decision: merge / split / keep separate
|
|
138
|
+
Rationale (comparative evidence):
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## Output format (session deliverables)
|
|
144
|
+
|
|
145
|
+
End each analytic session with:
|
|
146
|
+
|
|
147
|
+
```text
|
|
148
|
+
Comparisons executed (brief list):
|
|
149
|
+
Code changes (rename/split/merge):
|
|
150
|
+
New/updated hypotheses (bullets):
|
|
151
|
+
Negative cases discovered:
|
|
152
|
+
Next comparison targets (specific incidents/sources):
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
This becomes part of your **audit trail**.
|
|
156
|
+
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Common failure modes
|
|
160
|
+
|
|
161
|
+
- **Coding without comparing** → pretty labels, weak theory.
|
|
162
|
+
- **Comparing only supportive incidents** → confirmation bias.
|
|
163
|
+
- **Over-merging** too early → lost variation; **under-merging** → synonym sprawl.
|
|
164
|
+
- **Comparing quotes** instead of **concepts** → stays descriptive.
|
|
165
|
+
- **Stopping comparison** when the story “feels done” instead of checking **saturation** criteria.
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
## Relationship to memoing and sampling
|
|
170
|
+
|
|
171
|
+
- **Memos** store the *results* of comparisons as hypotheses.
|
|
172
|
+
- **Theoretical sampling** targets the *next* comparisons you need but cannot yet make.
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## Key references
|
|
177
|
+
|
|
178
|
+
- Glaser, B. G., & Strauss, A. L. (1967). *The discovery of grounded theory*. Aldine.
|
|
179
|
+
- Glaser, B. G. (1992). *Basics of grounded theory analysis*. Sociology Press.
|
|
180
|
+
- Glaser, B. G. (1978). *Theoretical sensitivity*. Sociology Press.
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## Companion skills
|
|
185
|
+
|
|
186
|
+
- `open-coding`, `selective-coding`, `memo-writing`
|
|
187
|
+
- `theoretical-sampling`, `theoretical-saturation`
|
|
188
|
+
- `glaserian-grounded-theory`
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: constructivist-gt
|
|
3
|
+
description: "Use when conducting Charmaz's constructivist grounded theory, for comparison with Glaser's classic approach."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Constructivist Grounded Theory (Charmaz)
|
|
7
|
+
|
|
8
|
+
**Constructivist grounded theory (CGT)**, associated with Kathy Charmaz, adapts grounded theory methods to a **constructivist epistemology**: knowledge is **co-constructed** between researchers and participants through interaction, language, and situated interpretation—rather than “discovered” as a singular objective reality.
|
|
9
|
+
|
|
10
|
+
## Charmaz’s (2014) approach in overview
|
|
11
|
+
|
|
12
|
+
Charmaz retains GT’s emphasis on **inductive-abductive reasoning**, **coding**, **memoing**, and **theoretical integration**, but frames analysis as **interpretive** and **reflexive**. The researcher is an **active participant** in meaning-making, not a neutral recorder.
|
|
13
|
+
|
|
14
|
+
## Differences from Glaserian classic GT
|
|
15
|
+
|
|
16
|
+
### Epistemology
|
|
17
|
+
|
|
18
|
+
- **Glaser (classic)** — Often associated with **post-positivist** or **critical realist** leanings and the metaphor of **emergence** from data with disciplined restraint.
|
|
19
|
+
- **Charmaz (constructivist)** — **Relativist/constructivist**: categories are **constructed** through analytic work; multiple plausible readings may exist.
|
|
20
|
+
|
|
21
|
+
### Coding language and phases
|
|
22
|
+
|
|
23
|
+
- **Glaser** — Substantive coding, **theoretical coding**, **selective coding** around a **core category**; strong emphasis on **constant comparison** and **theoretical sampling** until saturation.
|
|
24
|
+
- **Charmaz** — **Initial coding** (line-by-line or segment-by-segment, staying close to data) and **focused coding** (using the most significant codes to synthesize larger segments). **Axial coding** (conditional matrix, etc.) is treated cautiously—optional and not reified as a mechanical procedure.
|
|
25
|
+
|
|
26
|
+
### Sensitizing concepts
|
|
27
|
+
|
|
28
|
+
- **Glaser** warns against premature **forcing** from literature or extant theory.
|
|
29
|
+
- **Charmaz** allows **sensitizing concepts** as **starting points** if their partial, provisional status is acknowledged and they do not override participants’ meanings.
|
|
30
|
+
|
|
31
|
+
### Reflexivity
|
|
32
|
+
|
|
33
|
+
- **Charmaz** foregrounds **reflexivity**: researcher standpoints, interactional contexts of interviews, and power relations shape data. **Glaser** emphasizes researcher **neutrality** and **theoretical sensitivity** earned through coding/memoing rather than autobiography—though later Glaserian writing also discusses researcher discipline.
|
|
34
|
+
|
|
35
|
+
### Social justice and critical inquiry
|
|
36
|
+
|
|
37
|
+
- **Charmaz** aligns CGT with **critical** and **feminist** sensibilities when researchers examine inequality, marginalization, and institutional power. **Glaserian GT** traditionally brackets **explicit political** framing in favor of emergent substance—though researchers apply Glaser across political topics.
|
|
38
|
+
|
|
39
|
+
## When to choose constructivist over classic GT
|
|
40
|
+
|
|
41
|
+
Choose **constructivist GT** when:
|
|
42
|
+
|
|
43
|
+
- You embrace **interpretive** epistemology and want **explicit reflexivity**.
|
|
44
|
+
- **Interview co-construction** and **language** are central to your claims.
|
|
45
|
+
- You may use **sensitizing concepts** early with transparent caution.
|
|
46
|
+
- **Critical/feminist** lenses are integral to the inquiry.
|
|
47
|
+
|
|
48
|
+
Choose **classic Glaserian GT** when:
|
|
49
|
+
|
|
50
|
+
- You commit to **emergence** with minimal preconception and **delayed** substantive-area literature as **data** later.
|
|
51
|
+
- You want **core category** integration and **theoretical sampling** tightly coupled to emergent categories.
|
|
52
|
+
- Your institutional or personal stance aligns with **classic GT texts** and **no-forcing** discipline.
|
|
53
|
+
|
|
54
|
+
Many dissertations **hybridize**—justify any blend methodologically to avoid **method slurring**.
|
|
55
|
+
|
|
56
|
+
## Charmaz’s quality criteria
|
|
57
|
+
|
|
58
|
+
Charmaz proposes **four criteria** for evaluating constructivist GT:
|
|
59
|
+
|
|
60
|
+
1. **Credibility** — Sufficient, diverse data; **detailed accounts**; **member checks** where appropriate; **reflexive** documentation.
|
|
61
|
+
2. **Originality** — Fresh insights, new conceptual links, meaningful reframing.
|
|
62
|
+
3. **Resonance** — Categories reflect participants’ lived experiences and **ring true** to audiences with stake in the topic.
|
|
63
|
+
4. **Usefulness** — Concepts **work** for explaining process, guiding action, or stimulating further research.
|
|
64
|
+
|
|
65
|
+
These parallel but do not duplicate **Glaser’s fit, work, relevance, modifiability**.
|
|
66
|
+
|
|
67
|
+
## Coding procedures comparison (summary table)
|
|
68
|
+
|
|
69
|
+
| Dimension | Glaserian classic GT | Charmaz constructivist GT |
|
|
70
|
+
|-----------|----------------------|---------------------------|
|
|
71
|
+
| Initial work | Substantive coding, constant comparison | Initial coding, constant comparison |
|
|
72
|
+
| Integration | Core category, selective/theoretical coding | Focused coding, **theoretical sorting**, **integrative diagrams** |
|
|
73
|
+
| Literature | Delay substantive-area lit; use as data later | Sensitizing concepts allowed; lit woven reflexively |
|
|
74
|
+
| Role of analyst | Disciplined emergence, minimize forcing | Active interpreter; reflexivity explicit |
|
|
75
|
+
| Saturation | Theoretical saturation of categories | Similar aim; assessed with constructivist credibility |
|
|
76
|
+
|
|
77
|
+
## Memoing and diagrams
|
|
78
|
+
|
|
79
|
+
Charmaz treats **memoing** as **core**—capturing comparisons, definitions, and emergent logic. **Integrative diagrams** map relationships among categories and processes.
|
|
80
|
+
|
|
81
|
+
## Reporting
|
|
82
|
+
|
|
83
|
+
Write **process-focused methods** sections: how codes arose, how focused coding condensed themes, how **interpretive choices** were made. Include **exemplar quotes** and **analytic narrative** showing **how** claims were built.
|
|
84
|
+
|
|
85
|
+
## Key references
|
|
86
|
+
|
|
87
|
+
- Charmaz, K. (2014). *Constructing Grounded Theory* (2nd ed.).
|
|
88
|
+
- Charmaz, K., & Belgrave, L. — Contemporary statements on CGT.
|
|
89
|
+
- Glaser, B. G. — *Basics of Grounded Theory Analysis*; *Theoretical Sensitivity* (for contrast).
|
|
90
|
+
|
|
91
|
+
Use this skill when users ask for Charmaz-style GT, constructivist coding, or explicit comparison to Glaser.
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: data-management-protocols
|
|
3
|
+
description: Use when creating data management plans for qualitative research — storage, security, anonymization, retention, and sharing.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Data Management Protocols for Qualitative Research
|
|
7
|
+
|
|
8
|
+
A data management plan (DMP) specifies how you **collect, organize, secure, retain, and optionally share** qualitative materials. Funders and IRBs increasingly expect DMPs even when data cannot be fully open.
|
|
9
|
+
|
|
10
|
+
## DMP components (typical)
|
|
11
|
+
|
|
12
|
+
- Data types (audio, transcripts, field notes, screenshots, photos).
|
|
13
|
+
- File naming/versioning conventions.
|
|
14
|
+
- Storage locations, backups, encryption, access roles.
|
|
15
|
+
- Anonymization/de-identification strategy.
|
|
16
|
+
- Retention period and secure destruction procedures.
|
|
17
|
+
- Sharing constraints and derived sharing products (e.g., redacted excerpts).
|
|
18
|
+
|
|
19
|
+
## File naming conventions
|
|
20
|
+
|
|
21
|
+
Use consistent patterns: `YYYY-MM-DD_siteID_participantPseudonym_interview01_audio.wav`. Avoid real names in filenames. Maintain a **separate encrypted key** linking pseudonyms to identifiers if needed for longitudinal contact (IRB-permitted).
|
|
22
|
+
|
|
23
|
+
## Storage solutions
|
|
24
|
+
|
|
25
|
+
Prefer institutional encrypted storage over personal laptops. If cloud storage is used, verify **BAA** or equivalent for health data contexts and institutional approval. Keep **3-2-1 backups** where feasible (three copies, two media types, one offsite).
|
|
26
|
+
|
|
27
|
+
## Anonymization techniques
|
|
28
|
+
|
|
29
|
+
Remove direct identifiers; generalize places and dates when small communities enable re-identification; paraphrase highly distinctive stories in publications when necessary. Document **what was altered** for auditability.
|
|
30
|
+
|
|
31
|
+
## De-identification procedures
|
|
32
|
+
|
|
33
|
+
Distinguish **de-identified** vs **anonymous** data. Qualitative audio often cannot be truly anonymous without destruction—plan accordingly in consent (what participants agree you may retain/share).
|
|
34
|
+
|
|
35
|
+
## Retention policies
|
|
36
|
+
|
|
37
|
+
Align with IRB approvals, institutional rules, and legal holds. After retention ends, use **secure wiping** (not simple delete) for sensitive files.
|
|
38
|
+
|
|
39
|
+
## FAIR principles (adapted for qualitative data)
|
|
40
|
+
|
|
41
|
+
FAIR (Findable, Accessible, Interoperable, Reusable) originated for digital objects; qualitative adaptation emphasizes rich **metadata** (who, where, when, how collected), stable identifiers where sharing occurs, and **ethical reuse conditions**.
|
|
42
|
+
|
|
43
|
+
## Ethical constraints on sharing
|
|
44
|
+
|
|
45
|
+
Consent may forbid sharing; community harm risk may forbid open archives. Consider **controlled access repositories** or sharing only derived categories with illustrative redacted excerpts.
|
|
46
|
+
|
|
47
|
+
## DMP templates
|
|
48
|
+
|
|
49
|
+
Use funder-specific templates (NSF, NIH) as shells, then add qualitative specifics: transcript versioning, memo logs, software exports (NVivo/Atlas.ti), and team collaboration rules.
|
|
50
|
+
|
|
51
|
+
## Team workflows
|
|
52
|
+
|
|
53
|
+
Define: who transcribes; QC process; where “gold” transcripts live; how coding exports are versioned; how Slack/email fragments are purged if they contain identifiers.
|
|
54
|
+
|
|
55
|
+
## Checklist
|
|
56
|
+
|
|
57
|
+
- [ ] Naming, folder structure, and versioning documented.
|
|
58
|
+
- [ ] Encryption and access control match sensitivity.
|
|
59
|
+
- [ ] Anonymization map maintained separately from public files.
|
|
60
|
+
- [ ] Retention/destruction schedule approved and actionable.
|
|
61
|
+
- [ ] Sharing options align with consent and community risk.
|
|
62
|
+
|
|
63
|
+
## References (starting points)
|
|
64
|
+
|
|
65
|
+
- Corti, L., et al. *Managing and sharing research data* — qualitative considerations.
|
|
66
|
+
- UK Data Service guidance on anonymization of qualitative data.
|
|
67
|
+
- NIH/NSF data management policy pages (update with current agency language when applying).
|