| name | scholar-ideation |
| disable-model-invocation | true |
| description | Research ideation workflow from literature search to research planning. Triggers on "brainstorm research ideas", "identify research gaps", "conduct gap analysis", "start research project", "conduct literature review", "define research question", "select research method", "plan research", "research ideation". |
| allowed-tools | ["Bash","Edit","Glob","Grep","Read","WebFetch","WebSearch","Write","request_user_input","update_plan"] |
| session-mode | none |
| version | 0.5.55 |
Plan tracking: codex ๆ TaskCreate/TaskUpdate/TodoWrite ไปปๅกๆฟใ่ฟๅบฆๆธ
ๅ็จ update_plan({ explanation?, plan: [{ step, status }] }) ็ปดๆค๏ผๆดไฝๆไบคๆญฅ้ชคๆฐ็ป๏ผstatus: pending | in_progress | completed๏ผ๏ผๆๅจ็ถๆๅง็ปๅจ session ๅทฅไปถไธญ๏ผไพ่ต/่ฎค้ข๏ผaddBlockedBy/owner๏ผๆฏๅทฅไปถๅญๆฎต๏ผไธๆฏๅทฅๅ
ทๅๆฐใ
Scholar Ideation
Supports the complete research project initiation workflow: from literature search and gap analysis through research question formulation, method selection, and research planning. Produces a structured research plan with literature review, identified gaps, formulated questions, selected methods, and a timeline.
Pre-load (before execution)
- Codebase docs: If
.workflow/codebase/ARCHITECTURE.md exists, read for project context
- Specs:
maestro load --type spec --category coding โ load coding conventions
- Wiki knowledge:
maestro search "academic writing research paper" --json โ top 5 entries as prior context
- All optional โ proceed without if unavailable
Architecture Overview
User Input (research topic/interest)
|
v
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ SKILL.md Orchestrator โ
โ Collect preferences โ Dispatch phases โ Track progress โ
โโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
โโโโโโโโโผโโโโโโโโฌโโโโโโโโโโโโฌโโโโโโโโโโโโฌโโโโโโโโโโโโ
v v v v v v
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โInput โโPhase1โโPhase2โโ Phase3 โโ Phase4 โโ Phase5 โ
โParse โโLitSrcโโGapAnlโโ RQ Form โโ Method โโ Plan โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
| | | | | |
topic papers gaps questions methods plan
scope trends opps hypotheses justify timeline
Key Design Principles
- Progressive depth: Each phase builds on previous outputs โ literature informs gaps, gaps inform questions, questions inform methods
- Interactive guidance: Collect user preferences and domain context before each major phase
- Zotero integration: Automatically organize discovered papers into Zotero collections when MCP tools are available
- Structured outputs: Each phase produces structured artifacts that feed into the final research plan
- 5W1H grounding: Use the 5W1H framework to ensure comprehensive research scoping
Interactive Preference Collection
Before dispatching to phases, collect research context and workflow preferences:
request_user_input:
question: "Please describe your research topic or interest area."
โ Store as: researchTopic
request_user_input:
question: "What is the scope and context of your research?"
options:
- "Broad exploration (survey a field)"
- "Focused investigation (specific problem)"
- "Applied research (practical application)"
โ Store as: researchScope
request_user_input:
question: "What is your target research timeline?"
options:
- "Short-term (3-6 months)"
- "Medium-term (6-12 months)"
- "Long-term (1-2 years)"
โ Store as: researchTimeline
request_user_input:
question: "Do you have access to Zotero for literature management?"
options:
- "Yes (auto-import papers to Zotero)"
- "No (skip Zotero integration)"
โ Store as: useZotero
request_user_input:
question: "Workflow mode?"
options:
- "Interactive (confirm at each phase)"
- "Auto (run all phases continuously)"
โ Store as: workflowMode
Derived preferences:
workflowPreferences = {
topic: researchTopic,
scope: researchScope,
timeline: researchTimeline,
useZotero: useZotero === "Yes",
autoYes: workflowMode === "Auto"
}
Auto Mode Defaults
When workflowPreferences.autoYes === true: Execute all 5 phases sequentially without confirmation prompts between phases. Still pause for user input when phase-specific questions arise (e.g., confirming search keywords, selecting papers for deep reading).
Execution Flow
COMPACT DIRECTIVE: Context compression MUST check update_plan phase status.
The phase currently marked in_progress is the active execution phase โ preserve its FULL content.
Only compress phases marked completed or pending.
update_plan Initialization
update_plan:
- "Phase 1: Literature Search" (pending)
- "Phase 2: Gap Analysis" (pending)
- "Phase 3: Research Question Formulation" (pending)
- "Phase 4: Method Selection" (pending)
- "Phase 5: Research Planning" (pending)
Phase Dispatch
Phase 1: Literature Search
Mark update_plan Phase 1 โ in_progress
โโ Ref: phases/01-literature-search.md
โโ Input: workflowPreferences (topic, scope, useZotero)
โโ Output: literatureResults (papers, trends, keyFindings)
Phase 2: Gap Analysis
Mark update_plan Phase 1 โ completed, Phase 2 โ in_progress
โโ Ref: phases/02-gap-analysis.md
โโ Input: literatureResults
โโ Output: gapAnalysis (gaps, opportunities, priorities)
Phase 3: Research Question Formulation
Mark update_plan Phase 2 โ completed, Phase 3 โ in_progress
โโ Ref: phases/03-research-question.md
โโ Input: gapAnalysis + literatureResults
โโ Output: researchQuestions (questions, hypotheses, objectives)
Phase 4: Method Selection
Mark update_plan Phase 3 โ completed, Phase 4 โ in_progress
โโ Ref: phases/04-method-selection.md
โโ Input: researchQuestions + gapAnalysis
โโ Output: selectedMethods (methods, justification, resources)
Phase 5: Research Planning
Mark update_plan Phase 4 โ completed, Phase 5 โ in_progress
โโ Ref: phases/05-research-planning.md
โโ Input: ALL previous outputs
โโ Output: research-plan.md (final deliverable)
Mark update_plan Phase 5 โ completed
Phase Reference Documents (read on-demand when phase executes):
Compact Rules:
- update_plan
in_progress โ preserve full content, do not compress
- update_plan
completed โ may compress to summary
- sentinel fallback โ phases marked with sentinel: if compact leaves only sentinel without full Step protocol, immediately
Read() to recover
Core Rules
- Literature first: Always complete literature search before gap analysis โ gaps must be grounded in actual literature
- Evidence-based gaps: Every identified gap must reference specific papers or missing coverage areas
- SMART questions: Research questions must satisfy Specific, Measurable, Achievable, Relevant, Time-bound criteria
- Method-question alignment: Selected methods must directly address the formulated research questions
- Feasibility check: Research plan must account for available resources (compute, data, time, personnel)
- No hallucinated papers: Only reference papers actually found via WebSearch โ never fabricate citations
Input Processing
User input (free text or structured) is converted to:
TOPIC: [research topic or interest]
SCOPE: [broad | focused | applied]
TIMELINE: [short | medium | long]
CONTEXT: [additional constraints, domain, background]
If user provides a simple topic string, derive scope and timeline from the topic description or ask via request_user_input.
Data Flow
workflowPreferences
โโโ Phase 1: topic, scope, useZotero
โ โโโ literatureResults {papers[], trends[], keyFindings[], zoteroCollection?}
โ
โโโ Phase 2: literatureResults
โ โโโ gapAnalysis {gaps[], opportunities[], prioritizedGaps[]}
โ
โโโ Phase 3: gapAnalysis + literatureResults
โ โโโ researchQuestions {questions[], hypotheses[], objectives[]}
โ
โโโ Phase 4: researchQuestions + gapAnalysis
โ โโโ selectedMethods {methods[], justification, resources[]}
โ
โโโ Phase 5: ALL outputs
โโโ research-plan.md (final structured document)
update_plan Pattern
Phase start โ Attach sub-tasks:
Mark Phase N โ in_progress
Add sub-tasks:
- "Step N.1: ..." (in_progress)
- "Step N.2: ..." (pending)
- "Step N.3: ..." (pending)
Phase end โ Collapse:
Mark all Phase N sub-tasks โ completed
Mark Phase N โ completed
Mark Phase N+1 โ in_progress
Post-Phase Updates
After each phase completes, update an accumulated research notes document:
## Research Notes (accumulated)
### After Phase 1 (Literature Search)
- Papers found: [count]
- Key trends: [list]
- Zotero collection: [name, if applicable]
### After Phase 2 (Gap Analysis)
- Gaps identified: [count]
- Top priorities: [list]
### After Phase 3 (Research Questions)
- Primary RQ: [question]
- Sub-questions: [count]
### After Phase 4 (Method Selection)
- Selected approach: [method]
- Required resources: [list]
Error Handling
- WebSearch fails: Retry with modified keywords; if persistent, ask user for alternative search terms
- No papers found: Broaden search scope, try synonyms and related terms, try different databases
- Zotero unavailable: Skip Zotero integration, continue with manual paper tracking in markdown
- Gap analysis inconclusive: Return to Phase 1 for additional targeted literature search
- Infeasible plan: Adjust scope, timeline, or methods; consult user for trade-off decisions
Coordinator Checklist
Pre-phase:
Post-phase:
Output Files
The workflow produces:
research-plan.md โ Final structured research proposal with all sections
literature-review.md โ Structured literature review with categorized papers
- Zotero collection โ Organized papers with PDFs (if Zotero enabled)
Related Skills
- scholar-experiment โ Experiment execution and tracking (follows this skill)
- scholar-writing โ Paper writing workflow (uses outputs from experiment)
- scholar-review โ Paper review and revision workflow