Mark Stage 1 as complete after validating manual coding foundation
Validates manual coding foundation and unlocks AI-assisted tools for Stage 2 collaboration.
npx claudepluginhub linxule/interpretive-orchestrationstage1/Validate your manual coding foundation and transition to Stage 2 partnership.
Before completing Stage 1, you need:
| Requirement | Minimum | Your Progress |
|---|---|---|
| Documents coded | 10 | [checked at runtime] |
| Analytical memos | 5 | [checked at runtime] |
| Data structure | Created | [checked at runtime] |
| Reflexivity entries | 3 | [checked at runtime] |
When you run this command:
System verifies you've met minimum requirements.
You'll be asked to confirm:
A transition memo is created capturing:
{
"sandwich_status": {
"current_stage": "stage2_collaboration",
"stage1_complete": true,
"stage1_completion_date": "[timestamp]",
"stage1_details": {
"documents_manually_coded": [count],
"memos_written": [count],
"initial_structure_created": true
}
}
}
If you've configured research design (cases, waves, isolation), methodological rules are generated for Stage 2.
This is a one-way transition in terms of unlocking tools, but:
Only you can assess theoretical readiness - the system checks minimums, but you decide if you're genuinely ready.
If validation fails or you want to continue Stage 1:
/qual-status to see what's needed/qual-stage1-guide for guidanceThere's no rush. Better to have a strong foundation than to move forward prematurely.
For Claude: When user runs /qual-complete-stage1:
node skills/_shared/scripts/read-config.js --project-path <path>node skills/_shared/scripts/update-progress.js --project-path <path>node skills/methodological-rules/scripts/generate-rules.js --project-path <path>Read configuration
node skills/_shared/scripts/read-config.js --project-path .
Load .interpretive-orchestration/config.json
Check Stage 1 requirements (all must pass):
coding_progress.documents_coded >= 10coding_progress.memos_written >= 5coding_progress.reflexivity_entries >= 3data_structure exists with at least:
data_structure.concepts[], ORdata_structure.themes[]If requirements NOT met:
/qual-stage1-guide for guidance"If requirements met:
.interpretive-orchestration/memos/stage1-transition-[timestamp].mdnode skills/_shared/scripts/update-progress.js --project-path . \
--stage1-complete \
--current-stage stage2_collaboration \
--documents-coded [count] \
--memos-written [count]
This updates sandwich_status to:
{
"sandwich_status": {
"current_stage": "stage2_collaboration",
"stage1_complete": true,
"stage1_details": {
"documents_manually_coded": [count],
"memos_written": [count],
"initial_structure_created": true
}
}
}
Generate methodological rules (if applicable):
If research_design is configured in config.json:
node skills/methodological-rules/scripts/generate-rules.js --project-path .
Log transition to .interpretive-orchestration/conversation-log.jsonl:
{
"timestamp": "[ISO]",
"event": "stage1_completion",
"from": "human_researcher",
"details": {
"documents_coded": [count],
"memos_written": [count],
"researcher_confirmed_readiness": true
}
}
Celebrate the milestone!