structured-research-workflow
Structured Research Workflow
- Define scope — Write the specific question you are trying to answer. Avoid scope creep.
- Search broadly first — Use multiple search strategies and keywords.
- Filter ruthlessly — Keep only sources that directly address the question.
- Read deeply — Skim abstracts/intros; read in full only when clearly relevant.
- Synthesize, don't transcribe — Group findings by theme; note agreements and conflicts.
- Cite — Record source URL/DOI at time of reading; don't reconstruct later.
- Flag uncertainty — Clearly separate what is established vs. contested vs. unknown.
Anti-pattern: Reporting the first search result without checking alternatives.
More from aiming-lab/metaclaw
codebase-navigation
Use this skill when exploring an unfamiliar codebase, tracing code paths, or answering questions about how the system works. Read before writing, and build a mental model of the architecture before making changes.
12graceful-error-recovery
Use this skill when a tool call, command, or API request fails. Diagnose the root cause systematically before retrying or changing approach. Do not retry the same failing call without first understanding why it failed.
11plan-before-multi-step-execution
Use this skill before executing a sequence of 3 or more steps, especially when steps are irreversible or depend on each other. Write out the plan and verify it before starting execution.
9task-decomposition
Use this skill when a user presents a large, vague goal. Break it into concrete, ordered sub-tasks before starting any work. Apply whenever the request is larger than a single focused action.
9async-communication-etiquette
Use this skill when writing messages in async channels (Slack, GitHub issues, email threads) where the reader may not have context and cannot ask follow-up questions immediately.
9structured-progress-update
Use this skill when summarizing progress on an ongoing project or multi-step task. Give a clear, scannable status report whenever asked for an update or at the end of a work session.
9