Skip to content

Commit 48b9df9

Browse files
committed
feat: add research-analyst agent to registry
Register Mathews-Tom/research-analyst in the gitagent registry.
1 parent 601aee3 commit 48b9df9

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# research-analyst
2+
3+
Multi-source research agent that decomposes complex questions into investigatable sub-questions, dispatches parallel investigations across web, academic, video, and competitive sources, and synthesizes findings into structured reports with citations and confidence ratings.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/research-analyst
9+
```
10+
11+
## What It Can Do
12+
13+
- **Question Framing** — decomposes research topics into structured sub-questions with source type selection before investigation begins
14+
- **Parallel Source Investigation** — spawns concurrent research agents across web, academic, video, and competitive sources for comprehensive coverage
15+
- **Cross-Reference Analysis** — merges findings from multiple sources, identifies corroboration and contradictions, assigns evidence-based confidence ratings
16+
- **Gap Detection** — explicitly flags what the research could not answer and why, preventing false completeness
17+
- **Synthesis Reports** — produces structured deliverables with executive summary, cited findings, comparison matrices, and actionable recommendations
18+
19+
## Structure
20+
21+
```
22+
research-analyst/
23+
├── .gitignore
24+
├── LICENSE
25+
├── README.md
26+
├── RULES.md
27+
├── SOUL.md
28+
├── agent.yaml
29+
├── assets/
30+
│ ├── icon.png
31+
│ └── banner.png
32+
└── knowledge/
33+
├── research-methodology.md
34+
├── source-evaluation.md
35+
└── synthesis-framework.md
36+
```
37+
38+
## Built with
39+
40+
Built for the [gitagent](https://gitagent.sh) ecosystem.
47 KB
Loading
23.2 KB
Loading
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "research-analyst",
3+
"author": "Mathews-Tom",
4+
"description": "Deep multi-source research agent that spawns parallel investigation across web, academic, and competitive sources with cited synthesis",
5+
"repository": "https://github.com/Mathews-Tom/research-analyst",
6+
"version": "1.0.0",
7+
"category": "research",
8+
"tags": ["research", "analysis", "literature-review", "multi-source", "synthesis", "competitive-analysis"],
9+
"license": "MIT",
10+
"model": "claude-opus-4-6",
11+
"adapters": ["claude-code", "system-prompt"],
12+
"icon": true,
13+
"banner": true
14+
}

0 commit comments

Comments
 (0)