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,47 @@
|
|
|
1
|
+
# Finding Output Format (Qualitative / GT)
|
|
2
|
+
|
|
3
|
+
Use this rule when presenting findings, sharing interim results, or preparing audit-friendly summaries of categories.
|
|
4
|
+
|
|
5
|
+
## Category Presentation
|
|
6
|
+
|
|
7
|
+
For each category, provide:
|
|
8
|
+
|
|
9
|
+
1. **Name** — concise conceptual label.
|
|
10
|
+
2. **Definition** — what the category denotes and excludes.
|
|
11
|
+
3. **Properties** — characteristics that vary within the category.
|
|
12
|
+
4. **Dimensions** — continua or poles along which properties vary (when empirically grounded).
|
|
13
|
+
|
|
14
|
+
Order categories to reflect analytic story (often core-related first in GT presentations).
|
|
15
|
+
|
|
16
|
+
## Data Extract Formatting
|
|
17
|
+
|
|
18
|
+
- Use **block quotes** for verbatim material; indent or style per APA 7 for long quotations.
|
|
19
|
+
- Attribute with **pseudonym** and minimal context (role, setting type) without re-identifying.
|
|
20
|
+
- Provide **line or timestamp references** when available (`lines 12–18`, `00:03:22–00:04:10`).
|
|
21
|
+
- Keep excerpts **representative**, not cherry-picked outliers, unless labeled as negative or deviant cases.
|
|
22
|
+
|
|
23
|
+
## Analytical Commentary Format
|
|
24
|
+
|
|
25
|
+
- **Claim** — state the interpretive point in one or two sentences.
|
|
26
|
+
- **Evidence** — cite excerpt or summarized pattern.
|
|
27
|
+
- **Significance** — link to broader category, process, or theory (what this instance shows about the pattern).
|
|
28
|
+
- Avoid repeating the quote in different words without adding conceptual value.
|
|
29
|
+
|
|
30
|
+
## Theoretical Proposition Format
|
|
31
|
+
|
|
32
|
+
- State relationships between categories as **conditional or processual** claims grounded in comparison.
|
|
33
|
+
- Example pattern: “When {condition}, participants tend to {action/strategy}, which {consequence}, unless {boundary condition}.”
|
|
34
|
+
- Number propositions for cross-referencing in discussion and models.
|
|
35
|
+
|
|
36
|
+
## Visual Model Format
|
|
37
|
+
|
|
38
|
+
- Provide a **simple figure** (boxes/arrows or staged process) mapping core category to related categories.
|
|
39
|
+
- Legend: define shapes/line types; keep labels consistent with the text.
|
|
40
|
+
- Caption: what the model represents, scope, and known limitations.
|
|
41
|
+
- Prefer clarity over decorative complexity; update figures when theory is delimited.
|
|
42
|
+
|
|
43
|
+
## Packaging Checklist
|
|
44
|
+
|
|
45
|
+
- [ ] Each category has definition, properties/dimensions, and at least one anchored excerpt.
|
|
46
|
+
- [ ] Commentary interprets, not merely restates.
|
|
47
|
+
- [ ] Propositions and visuals align with memo trails and coding definitions.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Grounded Theory Coding Standards
|
|
2
|
+
|
|
3
|
+
Use this rule for Glaserian-oriented grounded theory coding, memoing, and phase transitions. Adapt labels if using a variant approach, but preserve comparative logic.
|
|
4
|
+
|
|
5
|
+
## Open Coding
|
|
6
|
+
|
|
7
|
+
- Code **line-by-line** or **incident-to-incident** early in the project; treat each segment as potentially theoretical.
|
|
8
|
+
- Prefer **gerunds** for process codes when they fit the data (e.g., *managing uncertainty*).
|
|
9
|
+
- Stay open: hold imported frameworks lightly; let categories emerge through **constant comparison**.
|
|
10
|
+
- Revise codes when comparisons reveal misfit; retire codes that do not earn their place.
|
|
11
|
+
|
|
12
|
+
## Selective Coding
|
|
13
|
+
|
|
14
|
+
- Begin selective coding **only after** a plausible **core category** has emerged and earned centrality through comparison.
|
|
15
|
+
- Focus coding and memoing on relationships to the core, delimiting the theory’s scope.
|
|
16
|
+
- Do not force a core category for narrative convenience; return to data and memos if fit is weak.
|
|
17
|
+
|
|
18
|
+
## Theoretical Coding
|
|
19
|
+
|
|
20
|
+
- Apply **coding families** (e.g., causal, consequence, strategy, dimension) to integrate categories theoretically.
|
|
21
|
+
- Use theoretical codes to specify **how** categories relate, not merely that they co-occur.
|
|
22
|
+
- Diagram relationships only when they clarify comparison results, not as decoration.
|
|
23
|
+
|
|
24
|
+
## Code Naming Conventions
|
|
25
|
+
|
|
26
|
+
- Use concise, conceptual labels; avoid long sentences as code names.
|
|
27
|
+
- Maintain a **codebook** with definitions, inclusion/exclusion notes, and exemplar excerpts.
|
|
28
|
+
- Distinguish **in vivo** codes (participant language) from analyst-constructed concepts when useful.
|
|
29
|
+
|
|
30
|
+
## Memo Triggers During Coding
|
|
31
|
+
|
|
32
|
+
- Stop coding when a conceptual leap, tension, or comparison insight appears; **memo first**.
|
|
33
|
+
- Record comparisons (incident-to-incident, incident-to-concept, concept-to-concept) and emergent hypotheses.
|
|
34
|
+
- Date memos; link them to codes and data locations for auditability.
|
|
35
|
+
|
|
36
|
+
## When to Shift From Open to Selective Coding
|
|
37
|
+
|
|
38
|
+
- Categories show **density** and **variation**; new data mainly refine rather than introduce new properties.
|
|
39
|
+
- A core category **recurs**, **relates widely**, and **explains** much of what is going on.
|
|
40
|
+
- Theoretical sampling targets **gaps** in the emerging theory rather than broad exploration alone.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# Methodological Rigor (Qualitative Research)
|
|
2
|
+
|
|
3
|
+
Use this rule when designing studies, analyzing data, or evaluating trustworthiness and theory quality in qualitative inquiry.
|
|
4
|
+
|
|
5
|
+
## Lincoln & Guba: Trustworthiness
|
|
6
|
+
|
|
7
|
+
**Credibility** — Confidence that findings are grounded in participants’ experiences.
|
|
8
|
+
|
|
9
|
+
- Prolonged engagement and persistent observation where feasible.
|
|
10
|
+
- Triangulation across data types, investigators, or methods when appropriate.
|
|
11
|
+
- Member checking (use judiciously; treat feedback as more data, not validation).
|
|
12
|
+
- Peer debriefing and negative case analysis.
|
|
13
|
+
- Thick description and audit trails linking claims to data.
|
|
14
|
+
|
|
15
|
+
**Transferability** — Sufficient contextual detail for readers to judge applicability elsewhere.
|
|
16
|
+
|
|
17
|
+
- Rich description of setting, participants (anonymized), and processes.
|
|
18
|
+
- Clear boundaries of the analytic claims (“in this context…”).
|
|
19
|
+
|
|
20
|
+
**Dependability** — Stability and traceability of the analytic process.
|
|
21
|
+
|
|
22
|
+
- Documented procedures, versioned coding schemes, dated memos, decision logs.
|
|
23
|
+
- Reflexive notes on how interpretations shifted and why.
|
|
24
|
+
|
|
25
|
+
**Confirmability** — Findings are tied to evidence rather than researcher bias alone.
|
|
26
|
+
|
|
27
|
+
- Transparent chain of evidence from excerpt → code → category → interpretation.
|
|
28
|
+
- Explicit separation of inferences from raw data in write-ups.
|
|
29
|
+
|
|
30
|
+
## Glaser: Grounded Theory Quality Criteria
|
|
31
|
+
|
|
32
|
+
**Fit** — Categories emerge from and pattern the data; minimal forcing.
|
|
33
|
+
|
|
34
|
+
**Work** — The emerging theory explains variation, processes, and relationships in the substantive area.
|
|
35
|
+
|
|
36
|
+
**Relevance** — The theory addresses what actually matters to participants and the phenomenon.
|
|
37
|
+
|
|
38
|
+
**Modifiability** — Categories remain open to refinement as new data appear.
|
|
39
|
+
|
|
40
|
+
## Techniques Mapped to Criteria
|
|
41
|
+
|
|
42
|
+
| Criterion | Example techniques |
|
|
43
|
+
|-----------------|-----------------------------------------------------------|
|
|
44
|
+
| Credibility | Constant comparison, memoing, deviant cases |
|
|
45
|
+
| Transferability | Contextual narrative, sampling rationale |
|
|
46
|
+
| Dependability | Audit trail, coding definitions, dated analytic memos |
|
|
47
|
+
| Confirmability | Exemplars, intercoder logs (if used), reflexivity notes |
|
|
48
|
+
| Fit/work/etc. | Theoretical sampling, selective coding, theoretical coding |
|
|
49
|
+
|
|
50
|
+
## Pre-Submission Checklist
|
|
51
|
+
|
|
52
|
+
- [ ] Every major claim is supported by data with traceable excerpts or field evidence.
|
|
53
|
+
- [ ] Procedures for coding, memoing, and sampling are described transparently.
|
|
54
|
+
- [ ] Limitations and scope (who/where/when) are explicit.
|
|
55
|
+
- [ ] Reflexivity is addressed without displacing participant meaning.
|
|
56
|
+
- [ ] GT claims align with fit, work, relevance, and modifiability (if using GT).
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Quality Criteria (GT and Qualitative Research)
|
|
2
|
+
|
|
3
|
+
Use this rule to choose evaluation frameworks, design review criteria, and report how quality was assessed.
|
|
4
|
+
|
|
5
|
+
## Glaser’s Four Criteria (Grounded Theory)
|
|
6
|
+
|
|
7
|
+
**Fit** — Indicators: categories arise from comparisons; deviant cases are accommodated or explain boundaries; minimal retrofitting of external frameworks.
|
|
8
|
+
|
|
9
|
+
**Work** — Indicators: theory explains processes, consequences, and variation; handles “how” questions in the substantive area.
|
|
10
|
+
|
|
11
|
+
**Relevance** — Indicators: core problems and strategies mirror participant concerns; theoretical sampling targets emergent gaps.
|
|
12
|
+
|
|
13
|
+
**Modifiability** — Indicators: categories refine with new data; the researcher revises rather than defends misfitting labels.
|
|
14
|
+
|
|
15
|
+
## Lincoln & Guba: Trustworthiness (Naturalistic Inquiry)
|
|
16
|
+
|
|
17
|
+
- **Credibility**, **transferability**, **dependability**, **confirmability** (see `methodological-rigor.md` for techniques).
|
|
18
|
+
- Appropriate when reporting constructivist or interpretive studies emphasizing contextual understanding and auditability.
|
|
19
|
+
|
|
20
|
+
## Charmaz (Constructivist GT): Credibility, Originality, Resonance, Usefulness
|
|
21
|
+
|
|
22
|
+
- **Credibility** — Adequate evidence, researcher visibility, and persuasive warranting.
|
|
23
|
+
- **Originality** — Fresh insights, not mere redescription of common sense.
|
|
24
|
+
- **Resonance** — Rings true to lived experience; handles emotional and tacit dimensions.
|
|
25
|
+
- **Usefulness** — Offers interpretive or practical traction for audiences.
|
|
26
|
+
|
|
27
|
+
Use for **comparison** or **supplement** when writing within constructivist GT or when reviewers expect explicit usefulness framing.
|
|
28
|
+
|
|
29
|
+
## When Each Framework Fits
|
|
30
|
+
|
|
31
|
+
| Situation | Primary framework |
|
|
32
|
+
|-----------|-------------------|
|
|
33
|
+
| Classic/Glaserian GT emphasis | Glaser’s fit, work, relevance, modifiability |
|
|
34
|
+
| Thick contextual, interpretive account | Lincoln & Guba + transparent methods |
|
|
35
|
+
| Constructivist GT / engaged scholarship | Charmaz + trustworthiness as appropriate |
|
|
36
|
+
| Mixed or pragmatic qualitative | Declare criteria upfront; avoid checklist stacking without rationale |
|
|
37
|
+
|
|
38
|
+
## Reporting Guidance
|
|
39
|
+
|
|
40
|
+
- State **which criteria** you used and **how** you operationalized them (memo trails, sampling, negative cases, peer debriefs).
|
|
41
|
+
- Do not claim saturation or credibility by volume alone; tie claims to analytic process evidence.
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Reflexivity Requirements
|
|
2
|
+
|
|
3
|
+
Use this rule to document researcher positionality, manage bias, and align reflexive practice with grounded theory without conflating concepts.
|
|
4
|
+
|
|
5
|
+
## Positionality Statement (Typical Components)
|
|
6
|
+
|
|
7
|
+
- Social identities, roles, and stakes relevant to the topic (e.g., insider/outsider status).
|
|
8
|
+
- Prior experience, training, and theoretical preferences that could shape attention.
|
|
9
|
+
- Relationships with sites, gatekeepers, or communities and how they evolved.
|
|
10
|
+
- Strategies used to bracket or interrogate assumptions during fieldwork and analysis.
|
|
11
|
+
|
|
12
|
+
## Reflexive Journal Requirements
|
|
13
|
+
|
|
14
|
+
- Maintain dated entries for **decision points**, emotional responses, surprises, and rapport dynamics.
|
|
15
|
+
- Log **coding dilemmas**, alternative interpretations, and conversations with peers or supervisors.
|
|
16
|
+
- Note how memos and categories shifted; link entries to data locations or analytic artifacts.
|
|
17
|
+
|
|
18
|
+
## Assumptions and Preconceptions
|
|
19
|
+
|
|
20
|
+
- Explicitly list entering hypotheses or worries; revisit them after major coding passes.
|
|
21
|
+
- Treat unexamined preferences as risks to **confirmability**; seek disconfirming evidence and negative cases.
|
|
22
|
+
- Distinguish personal reactions from analytic claims—label each clearly in journals.
|
|
23
|
+
|
|
24
|
+
## Reflexivity vs. Glaser’s Theoretical Sensitivity
|
|
25
|
+
|
|
26
|
+
- **Reflexivity** interrogates the researcher’s standpoint, power, and influence on co-construction of meaning.
|
|
27
|
+
- **Theoretical sensitivity** (Glaser) names the cultivated ability to see meaning in data, informed by broad reading and comparison—not forcing preconceived theory onto data.
|
|
28
|
+
- Both can coexist: reflexivity **curtails** imposition; theoretical sensitivity **sharpens** recognition of emergent patterns when grounded in comparison.
|
|
29
|
+
|
|
30
|
+
## Ongoing Practice Throughout the Study
|
|
31
|
+
|
|
32
|
+
- Schedule periodic reflexivity reviews (e.g., after each interview wave or coding sprint).
|
|
33
|
+
- Integrate succinct reflexivity into methods sections; avoid displacing participant-centered claims.
|
|
34
|
+
- Use peer debriefs or audit partners to surface blind spots identified in the journal.
|
|
35
|
+
|
|
36
|
+
## Integration Into Reporting
|
|
37
|
+
|
|
38
|
+
- Brief, focused reflexivity in the main text; extended logs in appendices only when ethical and permitted.
|
|
39
|
+
- Align claims with audit trails so readers can assess how reflexive awareness shaped (and constrained) interpretation.
|
|
40
|
+
- Where teams code together, document how differing standpoints were negotiated and recorded.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Research Ethics Standards
|
|
2
|
+
|
|
3
|
+
Use this rule for human-participant research, IRB protocols, fieldwork, and any storage or publication of qualitative materials.
|
|
4
|
+
|
|
5
|
+
## IRB and Regulatory Compliance
|
|
6
|
+
|
|
7
|
+
- Obtain IRB or equivalent ethical review before collecting identifiable or sensitive data.
|
|
8
|
+
- Follow approved protocol; document amendments and serious adverse events per institutional policy.
|
|
9
|
+
- Retain consent documentation and approval letters per retention schedules.
|
|
10
|
+
|
|
11
|
+
## Informed Consent
|
|
12
|
+
|
|
13
|
+
- Use plain language; disclose purpose, procedures, risks, benefits, and contacts.
|
|
14
|
+
- Clarify recording, future use, data sharing, and any secondary analysis plans.
|
|
15
|
+
- For digital or asynchronous participation, verify understanding and voluntary agreement.
|
|
16
|
+
- Assent processes for minors; guardian permission where required.
|
|
17
|
+
|
|
18
|
+
## Confidentiality and Pseudonyms
|
|
19
|
+
|
|
20
|
+
- Assign pseudonyms at the earliest stable point in the workflow; use them consistently in notes and drafts.
|
|
21
|
+
- Separate keys linking pseudonyms to identities from analytic files; restrict key access.
|
|
22
|
+
- Avoid indirect identifiers (unique job titles, rare events, small communities) in published excerpts.
|
|
23
|
+
|
|
24
|
+
## Data Security
|
|
25
|
+
|
|
26
|
+
- Encrypt devices; use institutional-approved storage (not personal cloud defaults for restricted data).
|
|
27
|
+
- Role-based access; unique accounts; no shared passwords for restricted datasets.
|
|
28
|
+
- Secure transfer (institutional VPN, approved file exchange); avoid unencrypted email for sensitive files.
|
|
29
|
+
|
|
30
|
+
## Vulnerable Populations
|
|
31
|
+
|
|
32
|
+
- Additional safeguards for children, incarcerated persons, trauma-exposed groups, and others with heightened risk.
|
|
33
|
+
- Minimize burden; offer referrals; monitor distress protocols with trained personnel.
|
|
34
|
+
- Avoid coercion or undue influence; compensate fairly without inducing vulnerability.
|
|
35
|
+
|
|
36
|
+
## Autonomy and Power Dynamics
|
|
37
|
+
|
|
38
|
+
- Affirm the right to withdraw at any time without penalty; clarify what can and cannot be withdrawn post-publication.
|
|
39
|
+
- Acknowledge asymmetry; avoid exploitative rapport; do not leverage gatekeeper power.
|
|
40
|
+
|
|
41
|
+
## Version Control and Repositories
|
|
42
|
+
|
|
43
|
+
- **Never** commit raw audio, video, transcripts with identifiers, consent PDFs, or key files to git or public repos.
|
|
44
|
+
- Use `.gitignore` and environment-specific paths; share only de-identified excerpts in supplements when permitted.
|
package/skills/.gitkeep
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: academic-writing
|
|
3
|
+
description: Use when writing academic prose for qualitative research — findings, methods, discussion sections with appropriate voice and conventions.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Academic Writing for Qualitative Research
|
|
7
|
+
|
|
8
|
+
Qualitative writing must **show analytic work** while remaining readable. The goal is disciplined interpretation: claims tethered to evidence, voice appropriate to genre, and structure that guides readers through complex meaning.
|
|
9
|
+
|
|
10
|
+
## Conventions that matter
|
|
11
|
+
|
|
12
|
+
- Prefer **precision** over vague intensifiers (“very,” “extremely”) unless justified.
|
|
13
|
+
- Define specialized terms on first substantive use.
|
|
14
|
+
- Use **past tense** for what you did; **present tense** for claims you treat as stable findings in the narrative (discipline norms vary—mirror target journal).
|
|
15
|
+
- Keep **parallel structure** in lists of themes/categories.
|
|
16
|
+
|
|
17
|
+
## Voice: active vs passive; first person
|
|
18
|
+
|
|
19
|
+
First person (“we/I”) is increasingly acceptable in qualitative methods writing because agency and positionality matter. Use active voice for clarity (“We analyzed transcripts”) while avoiding self-centered prose that eclipses participants’ words.
|
|
20
|
+
|
|
21
|
+
## Hedging language
|
|
22
|
+
|
|
23
|
+
Qualitative claims are often **probabilistic and situated**. Appropriate hedges: “suggests,” “indicates,” “in this sample,” “participants described.” Avoid hedging so heavily that claims disappear; avoid over-certainty without evidence.
|
|
24
|
+
|
|
25
|
+
## Paragraph structure
|
|
26
|
+
|
|
27
|
+
One main idea per paragraph; opening sentence states the claim; following sentences support with reasoning, excerpt references, or cross-case comparison; final sentence transitions or deepens significance.
|
|
28
|
+
|
|
29
|
+
## Signposting
|
|
30
|
+
|
|
31
|
+
Use headings, forecasting sentences, and explicit roadmap paragraphs in long documents (dissertations). In articles, respect word limits—signpost minimally but clearly.
|
|
32
|
+
|
|
33
|
+
## Integrating quotes
|
|
34
|
+
|
|
35
|
+
Introduce excerpts; avoid “quote dumping.” Trim quotes with ellipses only ethically and transparently. Follow APA block quote rules when applicable.
|
|
36
|
+
|
|
37
|
+
## Presenting data extracts
|
|
38
|
+
|
|
39
|
+
Pair excerpts with **analytic commentary**: what the excerpt illustrates, how it varies across cases, and how it links to a category. Name the participant pseudonym and data type (interview, field note).
|
|
40
|
+
|
|
41
|
+
## Analytical commentary patterns
|
|
42
|
+
|
|
43
|
+
- **Excerpt → code label → interpretation → boundary condition.**
|
|
44
|
+
- **Contrast case:** show two excerpts to clarify dimensional range.
|
|
45
|
+
|
|
46
|
+
## Writing for different audiences
|
|
47
|
+
|
|
48
|
+
Dissertations can show process (audit trail, extensive methods). Journal articles foreground **contribution** and compress procedural detail into supplements. Practitioner briefs emphasize actionable insights with ethical caveats.
|
|
49
|
+
|
|
50
|
+
## Common mistakes
|
|
51
|
+
|
|
52
|
+
- Theme lists without mechanisms.
|
|
53
|
+
- Methodological buzzwords without operational meaning.
|
|
54
|
+
- Ignoring disconfirming evidence.
|
|
55
|
+
- Conflating description with theory.
|
|
56
|
+
|
|
57
|
+
## Grounded theory writing tip
|
|
58
|
+
|
|
59
|
+
Move from **categories** to **theoretical statements** about relationships among categories (conditions, strategies, consequences). Use memos as drafting scaffolding.
|
|
60
|
+
|
|
61
|
+
## Checklist
|
|
62
|
+
|
|
63
|
+
- [ ] Each major claim anchored to data displays or citations to corpus.
|
|
64
|
+
- [ ] Voice and tense consistent with venue guidelines.
|
|
65
|
+
- [ ] Quotes introduced, trimmed ethically, interpreted.
|
|
66
|
+
- [ ] Disconfirming cases addressed.
|
|
67
|
+
- [ ] Contribution and limits explicit.
|
|
68
|
+
|
|
69
|
+
## References (starting points)
|
|
70
|
+
|
|
71
|
+
- Wolcott, H. F. *Writing up qualitative research* (3rd ed.).
|
|
72
|
+
- Belcher, W. L. *Writing your journal article in twelve weeks* — adaptable to qualitative articles.
|
|
73
|
+
- Glaser, B. G. *Doing Grounded Theory* — theory presentation discipline.
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: action-research
|
|
3
|
+
description: "Use when conducting participatory action research (PAR) involving collaborative inquiry, cycles of action and reflection."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Action Research and Participatory Action Research (PAR)
|
|
7
|
+
|
|
8
|
+
**Action research (AR)** links **inquiry** and **action** in iterative cycles. Stakeholders examine practices, implement changes, and reflect on outcomes. **Participatory action research (PAR)** foregrounds **collaboration**, **power-sharing**, and often **social justice**, positioning community or practitioner co-researchers as knowledge producers.
|
|
9
|
+
|
|
10
|
+
## Core action research cycle
|
|
11
|
+
|
|
12
|
+
While models differ in labeling, a robust cycle includes:
|
|
13
|
+
|
|
14
|
+
1. **Plan** — Identify a problem or opportunity with stakeholders; review evidence; define aims and ethical safeguards.
|
|
15
|
+
2. **Act** — Implement a contextually feasible intervention, change, or trial practice.
|
|
16
|
+
3. **Observe** — Collect data on process and outcomes (field notes, interviews, artifacts, metrics as appropriate).
|
|
17
|
+
4. **Reflect** — Analyze findings collectively; revise understanding; decide the next cycle’s focus.
|
|
18
|
+
|
|
19
|
+
Cycles are **spiraling**, not one-off: each turn refines questions and practice.
|
|
20
|
+
|
|
21
|
+
## Types of action research
|
|
22
|
+
|
|
23
|
+
### Participatory action research (PAR)
|
|
24
|
+
|
|
25
|
+
Emphasizes **democratic participation**, **local knowledge**, and **structural critique**. Common in community health, education, and international development when done ethically and non-extractively.
|
|
26
|
+
|
|
27
|
+
### Community-based participatory research (CBPR)
|
|
28
|
+
|
|
29
|
+
Partnership between researchers and communities across **all phases**—agenda setting, design, analysis, dissemination. Governance and benefit-sharing are explicit.
|
|
30
|
+
|
|
31
|
+
### Classroom / practitioner action research
|
|
32
|
+
|
|
33
|
+
Teachers or clinicians study their own practice for **local improvement** and **professional learning**. Often smaller scale; still requires rigor and ethical clarity.
|
|
34
|
+
|
|
35
|
+
### Appreciative inquiry (AI)
|
|
36
|
+
|
|
37
|
+
Builds change from **strengths** and **positive exemplars** rather than deficit framing. Uses **discovery, dream, design, destiny** phases in organizational contexts.
|
|
38
|
+
|
|
39
|
+
## Researcher positionality in AR
|
|
40
|
+
|
|
41
|
+
Facilitators may be **insiders** (employees, members) or **outsiders** (academic partners). Critical issues:
|
|
42
|
+
|
|
43
|
+
- **Who sets the agenda?**
|
|
44
|
+
- **Who benefits from publications and grants?**
|
|
45
|
+
- **How is conflict among stakeholders handled?**
|
|
46
|
+
|
|
47
|
+
Reflexive journaling, transparent agreements, and rotating facilitation can reduce **extractive** dynamics.
|
|
48
|
+
|
|
49
|
+
## Collaborative inquiry principles
|
|
50
|
+
|
|
51
|
+
- **Co-learning** — Expertise is distributed; academic theory meets local knowledge.
|
|
52
|
+
- **Shared decision-making** — Protocols for consent, data ownership, and authorship.
|
|
53
|
+
- **Action orientation** — Knowledge claims tied to **practical effects** and **next steps**.
|
|
54
|
+
- **Inclusivity** — Design for marginalized voices to shape analysis, not only data extraction.
|
|
55
|
+
|
|
56
|
+
## Quality criteria in action research
|
|
57
|
+
|
|
58
|
+
Traditional positivist criteria fit poorly. Common alternatives include:
|
|
59
|
+
|
|
60
|
+
- **Outcome validity** — Actions produce meaningful, context-appropriate improvement.
|
|
61
|
+
- **Process validity** — Inquiry is fair, inclusive, and methodologically sound for the setting.
|
|
62
|
+
- **Democratic validity** — Diverse stakeholders influence conclusions and actions.
|
|
63
|
+
- **Catalytic validity** — Research **energizes critical reflection** and **empowerment** (Lather).
|
|
64
|
+
- **Dialogic validity** — Truth tested through **sustained dialogue** and **challenge** within the community (Anderson & Herr).
|
|
65
|
+
|
|
66
|
+
Combine these with **ethical validity** (do no harm, consent, privacy) and **ecological validity** (fits real-world constraints).
|
|
67
|
+
|
|
68
|
+
## Kemmis & McTaggart’s framework
|
|
69
|
+
|
|
70
|
+
Kemmis, McTaggart, and Nixon emphasize **participatory** and **public** qualities of AR. Cycles are not merely technical but **social practices** that can be:
|
|
71
|
+
|
|
72
|
+
- **Self-reflective** — Practitioners examine their own practices.
|
|
73
|
+
- **Collaborative** — Joint inquiry across roles.
|
|
74
|
+
- **Public** — Knowledge is shared beyond private teams to wider communities.
|
|
75
|
+
|
|
76
|
+
They stress **communicative space** where arguments are tested and **practice architectures** (material, social, cultural-discursive arrangements) are transformed.
|
|
77
|
+
|
|
78
|
+
## Methods toolbox
|
|
79
|
+
|
|
80
|
+
- **Meeting facilitation**, **visual methods** (mapping, timelines), **focus groups**, **interviews**, **observation**, **document review**, **surveys** where appropriate.
|
|
81
|
+
- **Reflective journals** for practitioners.
|
|
82
|
+
- **Member validation** sessions before scaling changes.
|
|
83
|
+
|
|
84
|
+
## Ethics and IRB
|
|
85
|
+
|
|
86
|
+
AR can challenge IRB templates designed for fixed protocols. Use **amendment-friendly** designs, document **evolving consent**, and clarify **risks** when studying workplace power or community conflict.
|
|
87
|
+
|
|
88
|
+
## When to use action research
|
|
89
|
+
|
|
90
|
+
Use AR when **change and knowledge** must advance together, stakeholders can **sustain cycles**, and **contextual adaptation** matters more than controlled experimentation.
|
|
91
|
+
|
|
92
|
+
Use **traditional experiments** when **randomization** and **treatment fidelity** are paramount and participatory control is inappropriate.
|
|
93
|
+
|
|
94
|
+
Use **grounded theory** when the primary output is **substantive theory** rather than **intervention cycles**—though GT can inform AR data analysis.
|
|
95
|
+
|
|
96
|
+
Use this skill for PAR design, cycle planning, validity arguments, or Kemmis-style participatory framing.
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: apa-formatting
|
|
3
|
+
description: Use when formatting academic work in APA 7th edition style — citations, references, headings, tables, and manuscript structure.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# APA 7th Edition Formatting (Qualitative-Friendly)
|
|
7
|
+
|
|
8
|
+
APA style governs **manuscript structure, citation, reference entries, tables/figures, and mechanics**. Qualitative papers still benefit from strict reference hygiene even when narrative methods sections are long.
|
|
9
|
+
|
|
10
|
+
## In-text citations
|
|
11
|
+
|
|
12
|
+
- **Parenthetical:** (Glaser, 1998, p. 45) — use page/para/time for direct quotes.
|
|
13
|
+
- **Narrative:** Glaser (1998) argued that…
|
|
14
|
+
- **Two authors:** (Smith & Jones, 2020); three or more: (Lee et al., 2021) on subsequent cites.
|
|
15
|
+
|
|
16
|
+
## Reference list rules
|
|
17
|
+
|
|
18
|
+
- Alphabetize; hanging indent.
|
|
19
|
+
- Journal article: Author, A. A. (Year). Title. *Journal*, *volume*(issue), pages. https://doi.org/…
|
|
20
|
+
- Book: Author, A. A. (Year). *Title*. Publisher. https://doi.org/… (when available)
|
|
21
|
+
|
|
22
|
+
## Heading levels (student/professional papers)
|
|
23
|
+
|
|
24
|
+
Level 1: Centered, Bold, Title Case.
|
|
25
|
+
|
|
26
|
+
Level 2: Flush Left, Bold, Title Case.
|
|
27
|
+
|
|
28
|
+
Level 3: Flush Left, Bold Italic, Title Case.
|
|
29
|
+
|
|
30
|
+
Level 4: Indented, Bold Title Case, ends with period. Text follows.
|
|
31
|
+
|
|
32
|
+
Level 5: Indented, Bold Italic Title Case, ends with period.
|
|
33
|
+
|
|
34
|
+
Match journal instructions if they override APA defaults.
|
|
35
|
+
|
|
36
|
+
## Tables and figures
|
|
37
|
+
|
|
38
|
+
Number sequentially; each has a **title** (italic for table title in APA tables) and note if needed. In qualitative work, tables may display **themes, exemplar quotes, coding frequencies** (if used)—ensure tables support claims without replacing analysis.
|
|
39
|
+
|
|
40
|
+
## Manuscript sections (empirical article pattern)
|
|
41
|
+
|
|
42
|
+
Title page; abstract; keywords; introduction; method; results/findings; discussion; references; appendices.
|
|
43
|
+
|
|
44
|
+
Qualitative articles may label findings “Results” or “Findings” per venue—follow journal.
|
|
45
|
+
|
|
46
|
+
## DOI formatting
|
|
47
|
+
|
|
48
|
+
Prefer https://doi.org/10.xxxx/xxxxx. If no DOI, use stable URL; omit “Retrieved from” except when needed for archival pages (see APA manual for current arcane cases).
|
|
49
|
+
|
|
50
|
+
## “et al.” rules (in-text)
|
|
51
|
+
|
|
52
|
+
For works with 3+ authors, use first author + et al. after first citation (APA 7 simplifies from APA 6 in many cases—verify examples for your source type).
|
|
53
|
+
|
|
54
|
+
## Block quotes (40+ words)
|
|
55
|
+
|
|
56
|
+
Indent 0.5 in.; omit quotation marks; cite after final period.
|
|
57
|
+
|
|
58
|
+
## Numbers
|
|
59
|
+
|
|
60
|
+
Spell out zero through nine in general prose; numerals for 10+ and for units, ages, dates, statistics (many exceptions—consult APA tables).
|
|
61
|
+
|
|
62
|
+
## GT methodology references (examples to copy-check against current edition)
|
|
63
|
+
|
|
64
|
+
- Glaser, B. G., & Strauss, A. L. (1967). *The discovery of grounded theory: Strategies for qualitative research*. Aldine.
|
|
65
|
+
- Glaser, B. G. (1978). *Theoretical sensitivity: Advances in the methodology of grounded theory*. Sociology Press.
|
|
66
|
+
- Glaser, B. G. (1998). *Doing grounded theory: Issues and discussions*. Sociology Press.
|
|
67
|
+
- Charmaz, K. (2014). *Constructing grounded theory* (2nd ed.). Sage.
|
|
68
|
+
|
|
69
|
+
Always re-verify italics, capitalization, and publisher details against your copy of APA 7 and publisher records.
|
|
70
|
+
|
|
71
|
+
## Qualitative-specific tips
|
|
72
|
+
|
|
73
|
+
When citing **unpublished interviews**, follow APA interview citation formats; protect confidentiality in public documents. For reproduced excerpts in appendices, note IRB permissions if required.
|
|
74
|
+
|
|
75
|
+
## Checklist
|
|
76
|
+
|
|
77
|
+
- [ ] In-text matches reference list (spelling/year).
|
|
78
|
+
- [ ] DOIs/URLs formatted consistently.
|
|
79
|
+
- [ ] Heading levels logical; no skipped levels.
|
|
80
|
+
- [ ] Tables/figures numbered with notes as needed.
|
|
81
|
+
- [ ] Block quotes formatted and cited correctly.
|
|
82
|
+
|
|
83
|
+
## References (starting points)
|
|
84
|
+
|
|
85
|
+
- American Psychological Association. (2020). *Publication manual of the American Psychological Association* (7th ed.).
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: case-study-methods
|
|
3
|
+
description: "Use when designing or conducting case study research following Yin's multiple case study methodology or Stake's approach."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Case Study Research Methods
|
|
7
|
+
|
|
8
|
+
A **case study** examines a **bounded system** (a case) using multiple sources of evidence. It is suited to **“how”** and **“why”** questions where the researcher has little control over events, and context matters. Robert Yin and Robert Stake offer influential, partially complementary frameworks.
|
|
9
|
+
|
|
10
|
+
## Yin’s logic of the case study
|
|
11
|
+
|
|
12
|
+
Yin emphasizes **rigor through design**, not just data collection. A case is an empirical unit (e.g., organization, program, community, event) analyzed in depth.
|
|
13
|
+
|
|
14
|
+
### Single vs multiple case designs
|
|
15
|
+
|
|
16
|
+
- **Single case** — Justified when the case is **critical**, **unique**, **revelatory**, or **longitudinal**. Risk: weak generalization.
|
|
17
|
+
- **Multiple case** — **Replication logic** (literal or theoretical): cases are chosen to predict similar results (literal replication) or contrasting results for predictable reasons (theoretical replication). Strengthens analytic generalization to theory, not statistical populations.
|
|
18
|
+
|
|
19
|
+
### Holistic vs embedded
|
|
20
|
+
|
|
21
|
+
- **Holistic** — The case as a single unit of analysis.
|
|
22
|
+
- **Embedded** — Subunits (e.g., teams within a firm) analyzed; requires clarity about **how subunit findings aggregate** to the main case.
|
|
23
|
+
|
|
24
|
+
## Case selection
|
|
25
|
+
|
|
26
|
+
Cases should align with **research questions** and **propositions** (if used). For multiple cases, define **selection criteria** before data collection when possible to reduce cherry-picking. Document why cases were included or excluded.
|
|
27
|
+
|
|
28
|
+
## Theoretical propositions
|
|
29
|
+
|
|
30
|
+
Optional but powerful: explicit expectations guide **data collection priorities** and **analytic focus** (e.g., “Implementation success depends on leadership support”). Propositions differ from hypotheses in quant studies—they orient inquiry while allowing qualitative refinement.
|
|
31
|
+
|
|
32
|
+
## Data collection in case studies
|
|
33
|
+
|
|
34
|
+
Typical sources:
|
|
35
|
+
|
|
36
|
+
- **Interviews** — Key actors, triangulated roles.
|
|
37
|
+
- **Documents** — Minutes, policies, reports, communications.
|
|
38
|
+
- **Direct observation** — Meetings, workflows, artifacts in use.
|
|
39
|
+
- **Archival records** — Metrics, histories, legal filings.
|
|
40
|
+
|
|
41
|
+
Yin stresses **converging evidence** (triangulation) and a **case study database** (organized raw data, logs, and analysis notes) separate from the final report.
|
|
42
|
+
|
|
43
|
+
## Chain of evidence
|
|
44
|
+
|
|
45
|
+
Readers should be able to trace **claims → displays → data**. Maintain:
|
|
46
|
+
|
|
47
|
+
- Citation to specific sources (interview ID, document type, date).
|
|
48
|
+
- Clear protocols linking evidence to assertions.
|
|
49
|
+
- Analytic memos documenting interpretive leaps.
|
|
50
|
+
|
|
51
|
+
## Analytic strategies (Yin)
|
|
52
|
+
|
|
53
|
+
- **Pattern matching** — Compare empirically based patterns to predicted ones; may involve **rival explanations** ruled out by evidence.
|
|
54
|
+
- **Explanation building** — Iterative narrative linking causes and outcomes; guard against researcher bias through triangulation and disconfirming evidence.
|
|
55
|
+
- **Time-series / logic models** — When temporal ordering or program theory is central.
|
|
56
|
+
|
|
57
|
+
## Cross-case synthesis (multiple cases)
|
|
58
|
+
|
|
59
|
+
For each case, produce a **standalone description** and **within-case analysis**. Then conduct **cross-case comparison** using a uniform framework (e.g., tables of constructs). Look for **patterns**, **contrasts**, and **theoretical replication** support.
|
|
60
|
+
|
|
61
|
+
## Stake’s approach: intrinsic vs instrumental
|
|
62
|
+
|
|
63
|
+
### Intrinsic case study
|
|
64
|
+
|
|
65
|
+
The case itself is of primary interest (e.g., a particular school). Findings emphasize **understanding that case**, not broad laws.
|
|
66
|
+
|
|
67
|
+
### Instrumental case study
|
|
68
|
+
|
|
69
|
+
The case is examined to **illuminate a broader issue** or refine a theory. The case remains particular, but the lens is **instrumental** to external understanding.
|
|
70
|
+
|
|
71
|
+
### Collective case studies
|
|
72
|
+
|
|
73
|
+
Several instrumental cases shed light on a phenomenon; resonates with Yin’s multiple-case design but retains Stake’s emphasis on **experience** and **interpretation**.
|
|
74
|
+
|
|
75
|
+
## Stake’s emphases
|
|
76
|
+
|
|
77
|
+
- **Thick portrayal** of cases and **reader naturalistic generalization**.
|
|
78
|
+
- Attention to **emic views** and **interpretive rigor** rather than only deductive propositions.
|
|
79
|
+
- **Progressive focusing** — Early field visits inform what matters next.
|
|
80
|
+
|
|
81
|
+
## Yin vs Stake (practical contrast)
|
|
82
|
+
|
|
83
|
+
| Feature | Yin | Stake |
|
|
84
|
+
|---------|-----|--------|
|
|
85
|
+
| Emphasis | Design, replication, propositions | Interpretation, portrayal, experience |
|
|
86
|
+
| Generalization | Analytic generalization to theory | Naturalistic, reader-led |
|
|
87
|
+
| Rigor | Database, chain of evidence, methods triangulation | Interpretive discipline, reflexivity |
|
|
88
|
+
|
|
89
|
+
## Reporting
|
|
90
|
+
|
|
91
|
+
- Clear **case boundaries** and **context**.
|
|
92
|
+
- **Methods** section with data sources and analysis steps.
|
|
93
|
+
- **Within-case** chapters/sections before **cross-case** synthesis.
|
|
94
|
+
- Explicit **limitations** and **rival interpretations** considered.
|
|
95
|
+
|
|
96
|
+
Use this skill when the user designs multi-site evaluations, organizational studies, or compares Yin and Stake for dissertation methodology.
|