Super Lab Lite
Super Lab Lite is a small public orchestration pattern for splitting a research request into three domains, gathering evidence in parallel, and synthesizing the result into one useful answer.
It is designed for practical research tasks where a single model pass is too shallow, but a large multi-agent workflow is too expensive.
When To Use
- Medium-size research questions with 3 to 5 natural subtopics.
- Market scans, competitor comparisons, product research, and technical surveys.
- Report drafts where evidence gathering and synthesis should be separated.
- Public-safe exploratory analysis with a clear audit trail.
- Cost-sensitive work that does not need a full premium-agent stack.
Do not use it for:
- one-off simple questions,
- high-security work with sensitive data,
- tasks requiring strict legal, medical, or financial conclusions,
- research that cannot be decomposed into clear domains.
Public Model Pattern
Use the following roles. The exact model names can be adapted to the user's provider.
Coordinator:
- breaks the request into three domains
- assigns domain prompts
- merges final results
- resolves conflicts
Domain leads:
- analyze one domain each
- request supporting facts or examples
- write domain reports
Research agents:
- gather facts, links, snippets, or local-file evidence
- avoid final judgment
- return structured notes to domain leads
Workflow
1. Plan
Ask the coordinator to produce:
- the main research question,
- three non-overlapping domains,
- a domain prompt for each lead,
- an evidence request for each research agent,
- the final output format.
2. Gather
Run the three research agents in parallel where possible. Keep their job narrow:
- collect facts,
- inspect files,
- summarize sources,
- list uncertainties,
- return structured notes.
3. Analyze
Each domain lead turns one research packet into:
- domain summary,
- key evidence,
- risks or gaps,
- recommended follow-up.
4. Synthesize
The coordinator merges the domain reports:
- remove duplicates,
- surface disagreements,
- identify missing evidence,
- write the final answer,
- include a short audit note.
Output Structure
Prefer this final shape:
## Executive Summary
## Domain Findings
### Domain 1
### Domain 2
### Domain 3
## Cross-Domain Synthesis
## Gaps and Uncertainties
## Recommended Next Actions
Scripts
scripts/lite_orchestrator.py: standalone Python skeleton using the Anthropic SDK.
scripts/claude_code_runner.md: Claude Code / agent-tool usage pattern.
The Python script expects an API key in ANTHROPIC_API_KEY when run directly. Do not hard-code keys in the repo.
Quality Checks
Before returning the final result:
- confirm that all three domain reports were included,
- mark missing or weak evidence,
- separate facts from judgment,
- avoid unsupported certainty,
- include the most useful next action.
Safety Boundary
This public version is a lightweight orchestration recipe. It does not include private scoring rules, protected workflows, tuned internal prompts, private datasets, or proprietary research benchmarks.
1---2name: super-lab-lite3description: Lightweight multi-agent research orchestration using one coordinator, three domain leads, and three lightweight research agents. Use for medium-size research, market scans, competitor comparisons, prior-art style exploration, report planning, and any task that benefits from parallel domain decomposition without running a full high-cost research lab.4---56# Super Lab Lite78Super Lab Lite is a small public orchestration pattern for splitting a research request into three domains, gathering evidence in parallel, and synthesizing the result into one useful answer.910It is designed for practical research tasks where a single model pass is too shallow, but a large multi-agent workflow is too expensive.1112## When To Use1314- Medium-size research questions with 3 to 5 natural subtopics.15- Market scans, competitor comparisons, product research, and technical surveys.16- Report drafts where evidence gathering and synthesis should be separated.17- Public-safe exploratory analysis with a clear audit trail.18- Cost-sensitive work that does not need a full premium-agent stack.1920Do not use it for:2122- one-off simple questions,23- high-security work with sensitive data,24- tasks requiring strict legal, medical, or financial conclusions,25- research that cannot be decomposed into clear domains.2627## Public Model Pattern2829Use the following roles. The exact model names can be adapted to the user's provider.3031```text32Coordinator:33 - breaks the request into three domains34 - assigns domain prompts35 - merges final results36 - resolves conflicts3738Domain leads:39 - analyze one domain each40 - request supporting facts or examples41 - write domain reports4243Research agents:44 - gather facts, links, snippets, or local-file evidence45 - avoid final judgment46 - return structured notes to domain leads47```4849## Workflow5051### 1. Plan5253Ask the coordinator to produce:5455- the main research question,56- three non-overlapping domains,57- a domain prompt for each lead,58- an evidence request for each research agent,59- the final output format.6061### 2. Gather6263Run the three research agents in parallel where possible. Keep their job narrow:6465- collect facts,66- inspect files,67- summarize sources,68- list uncertainties,69- return structured notes.7071### 3. Analyze7273Each domain lead turns one research packet into:7475- domain summary,76- key evidence,77- risks or gaps,78- recommended follow-up.7980### 4. Synthesize8182The coordinator merges the domain reports:8384- remove duplicates,85- surface disagreements,86- identify missing evidence,87- write the final answer,88- include a short audit note.8990## Output Structure9192Prefer this final shape:9394```markdown95## Executive Summary9697## Domain Findings9899### Domain 1100### Domain 2101### Domain 3102103## Cross-Domain Synthesis104105## Gaps and Uncertainties106107## Recommended Next Actions108```109110## Scripts111112- `scripts/lite_orchestrator.py`: standalone Python skeleton using the Anthropic SDK.113- `scripts/claude_code_runner.md`: Claude Code / agent-tool usage pattern.114115The Python script expects an API key in `ANTHROPIC_API_KEY` when run directly. Do not hard-code keys in the repo.116117## Quality Checks118119Before returning the final result:120121- confirm that all three domain reports were included,122- mark missing or weak evidence,123- separate facts from judgment,124- avoid unsupported certainty,125- include the most useful next action.126127## Safety Boundary128129This public version is a lightweight orchestration recipe. It does not include private scoring rules, protected workflows, tuned internal prompts, private datasets, or proprietary research benchmarks.