maestro-help
Maestro Flow 命令帮助系统。搜索命令、浏览技能、工作流推荐、新手引导。Triggers on "maestro-help", "帮助", "命令", "怎么用", "skill", "workflow", "maestro 怎么用".
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
$ npx -y skills add catlog22/maestro-flow --skill scholar-ideation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/scholar-ideationContext preview
The summary Claude sees to decide when to auto-load this skill.
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
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: WebSearch, WebFetch, Read, Write, Edit, Bash, Glob, Grep, TodoWrite, AskUserQuestion session-mode: none
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.
1. **Codebase docs**: If `.workflow/codebase/ARCHITECTURE.md` exists, read for project context 2. **Specs**: `maestro load --type spec --category coding` — load coding conventions 3. **Wiki knowledge**: `maestro search "academic writing research paper" --json` — top 5 entries as prior context 4. All optional — proceed without if unavailable
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 timeline1. **Progressive depth**: Each phase builds on previous outputs — literature informs gaps, gaps inform questions, questions inform methods 2. **Interactive guidance**: Collect user preferences and domain context before each major phase 3. **Zotero integration**: Automatically organize discovered papers into Zotero collections when MCP tools are available 4. **Structured outputs**: Each phase produces structured artifacts that feed into the final research plan 5. **5W1H grounding**: Use the 5W1H framework to ensure comprehensive research scoping
Before dispatching to phases, collect research context and workflow preferences:
AskUserQuestion:
question: "Please describe your research topic or interest area."
→ Store as: researchTopic
AskUserQuestion:
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
AskUserQuestion:
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
AskUserQuestion:
question: "Do you have access to Zotero for literature management?"
options:
- "Yes (auto-import papers to Zotero)"
- "No (skip Zotero integration)"
→ Store as: useZotero
AskUserQuestion:
question: "Workflow mode?"
options:
- "Interactive (confirm at each phase)"
- "Auto (run all phases continuously)"
→ Store as: workflowModeDerived preferences:
workflowPreferences = {
topic: researchTopic,
scope: researchScope,
timeline: researchTimeline,
useZotero: useZotero === "Yes",
autoYes: workflowMode === "Auto"
}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).
> **COMPACT DIRECTIVE**: Context compression MUST check TodoWrite phase status. > The phase currently marked `in_progress` is the active execution phase — preserve its FULL content. > Only compress phases marked `completed` or `pending`.
TodoWrite: - "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 1: Literature Search
Mark TodoWrite 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 TodoWrite 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 TodoWrite 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 TodoWrite 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 TodoWrite Phase 4 → completed, Phase 5 → in_progress
└─ Ref: phases/05-research-planning.md
├─ Input: ALL previous outputs
└─ Output: research-plan.md (final deliverable)
Mark TodIntent-driven workflow orchestration for multi-agent AI development — adaptive lifecycle engine, self-reinforcing knowledge graph, and visual dashboard for Claude Code, Gemini, Codex & more
Repo: catlog22/maestro-flow
Maestro Flow 命令帮助系统。搜索命令、浏览技能、工作流推荐、新手引导。Triggers on "maestro-help", "帮助", "命令", "怎么用", "skill", "workflow", "maestro 怎么用".
Meta-skill for creating new Claude Code skills with configurable execution modes. Supports sequential (fixed order) and autonomous (stateless) phase patterns.…
Iterative skill tuning via execute-evaluate-improve feedback loop. Uses maestro delegate Claude to execute skill, Agy to evaluate quality, and Agent to apply…
SKILL.md simplification with functional integrity verification. Analyze redundancy, optimize content, check no functionality lost. Triggers on "simplify…
Universal skill diagnosis and optimization tool. Detect and fix skill execution issues including context explosion, long-tail forgetting, data flow disruption,…
Unified team skill for architecture optimization. Uses team-worker agent architecture with role directories for domain logic. Coordinator orchestrates…