119 lines
1.9 KiB
Markdown
119 lines
1.9 KiB
Markdown
|
|
# Research Templates
|
||
|
|
## Copy-paste templates for common research tasks
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Template 1: Spawn Single Researcher
|
||
|
|
|
||
|
|
```
|
||
|
|
/spawn agent:main
|
||
|
|
label: research-{topic}
|
||
|
|
task: Research {question}
|
||
|
|
|
||
|
|
Location: ~/CivONE/
|
||
|
|
|
||
|
|
Research the following question:
|
||
|
|
{question}
|
||
|
|
|
||
|
|
Output: docs/papers/research-{topic}.md (3000-4000 words)
|
||
|
|
|
||
|
|
Requirements:
|
||
|
|
- Find and cite relevant sources
|
||
|
|
- Present multiple perspectives
|
||
|
|
- Include experiments if applicable
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Template 2: Spawn Research Team
|
||
|
|
|
||
|
|
```
|
||
|
|
/spawn agent:main
|
||
|
|
label: team-{project}
|
||
|
|
|
||
|
|
Task: Research {complex question}
|
||
|
|
|
||
|
|
Location: {location}/
|
||
|
|
|
||
|
|
Each team member takes one aspect:
|
||
|
|
|
||
|
|
**Agent 1 - Deep Research**
|
||
|
|
Research: {aspect 1}
|
||
|
|
Output: {location}/research-{aspect1}.md
|
||
|
|
|
||
|
|
**Agent 2 - Technical Analysis**
|
||
|
|
Research: {aspect 2}
|
||
|
|
Output: {location}/research-{aspect2}.md
|
||
|
|
|
||
|
|
**Agent 3 - Synthesis**
|
||
|
|
Task: Combine findings into coherent paper
|
||
|
|
Output: {location}/papers/{final-paper}.md
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Template 3: Spawn Experiment
|
||
|
|
|
||
|
|
```
|
||
|
|
/spawn agent:main
|
||
|
|
label: experiment-{name}
|
||
|
|
|
||
|
|
Task: Build and run experiment
|
||
|
|
|
||
|
|
Location: {location}/
|
||
|
|
|
||
|
|
Build a Python experiment to test: {hypothesis}
|
||
|
|
|
||
|
|
Requirements:
|
||
|
|
- Clear hypothesis stated
|
||
|
|
- Runnable code
|
||
|
|
- Results saved to file
|
||
|
|
- Interpretation of results
|
||
|
|
|
||
|
|
Output: experiments/{name}.py + results.txt
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Template 4: Full Project Launch
|
||
|
|
|
||
|
|
```
|
||
|
|
/spawn agent:main
|
||
|
|
label: project-{name}
|
||
|
|
|
||
|
|
LAUNCH: {project name}
|
||
|
|
|
||
|
|
QUESTION: {main research question}
|
||
|
|
|
||
|
|
DECOMPOSITION:
|
||
|
|
1. {sub-question 1} → Agent: research-{a}
|
||
|
|
2. {sub-question 2} → Agent: research-{b}
|
||
|
|
3. {sub-question 3} → Agent: research-{c}
|
||
|
|
4. {sub-question 4} → Agent: research-{d}
|
||
|
|
|
||
|
|
COORDINATION:
|
||
|
|
- All outputs: {location}/papers/
|
||
|
|
- Final synthesis: {location}/synthesis.md
|
||
|
|
|
||
|
|
DEADLINE: {time}
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## Git Commands (Manual)
|
||
|
|
|
||
|
|
```bash
|
||
|
|
# Push to GitHub
|
||
|
|
cd {location}
|
||
|
|
git add .
|
||
|
|
git commit -m "Research: {topic}"
|
||
|
|
git push
|
||
|
|
|
||
|
|
# Pull latest
|
||
|
|
git pull origin main
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
*Use these templates to launch research quickly*
|