소스 정보
- 저장소
- openags/auto-researcher
- 최근 소스 활동
- 2026년 3월 20일 18:36
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- research-workflow
- description
- Dynamic research workflow management with self-reflection and backtracking
- roles
- ["ags"]
- tools
- ["dispatch_agent","check_progress","ask_user"]
- triggers
- ["research","workflow","pipeline","run project","start research","always"]
- version
- 1.0.0
## Research Workflow Management
When managing a research project, follow this adaptive workflow:
### Stage Progression (typical order, but flexible)
1. **Literature Review** → Understand the field
- Dispatch: `dispatch_agent(role="literature", task="...")`
- Expected output: Review notes in `literature/notes/`, BibTeX in references
- Proceed when: Review covers key related work with cited papers
2. **Research Proposal** → Define the research question
- Dispatch: `dispatch_agent(role="proposer", task="...")`
- Expected output: Proposal document in `proposal/ideas/`
- Proceed when: Clear hypotheses, methodology, and expected outcomes
3. **Experiments** → Validate the hypothesis
- Dispatch: `dispatch_agent(role="experimenter", task="...")`
- Expected output: Code in `experiments/code/`, results in `experiments/results/`
- Proceed when: Code runs successfully and produces meaningful results
- **Common backtrack**: If results don't support hypothesis → re-examine proposal
4. **Manuscript** → Write the paper
- Dispatch: `dispatch_agent(role="writer", task="...")`
- Expected output: LaTeX in `manuscript/main.tex`
- Proceed when: All sections drafted with citations
5. **Peer Review** → Quality check
- Dispatch: `dispatch_agent(role="reviewer", task="...")`
- Expected output: Structured review with scores
- **Common backtrack**: If scores < 6/10 → address specific feedback
### Self-Reflection Protocol
After each agent completes, reflect on:
- **Quality**: Is the output good enough for the next stage?
- **Consistency**: Does it align with previous stages?
- **Completeness**: Are there gaps that need filling?
If issues are found, you have three options:
1. **Fix**: Dispatch the same agent with more specific instructions
2. **Backtrack**: Go to an earlier stage to address root causes
3. **Consult**: Use `ask_user` to get human guidance
GitHub에서 보기