Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions agents/Mathews-Tom__research-analyst/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# research-analyst

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.

## Run

```bash
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/research-analyst
```

## What It Can Do

- **Question Framing** — decomposes research topics into structured sub-questions with source type selection before investigation begins
- **Parallel Source Investigation** — spawns concurrent research agents across web, academic, video, and competitive sources for comprehensive coverage
- **Cross-Reference Analysis** — merges findings from multiple sources, identifies corroboration and contradictions, assigns evidence-based confidence ratings
- **Gap Detection** — explicitly flags what the research could not answer and why, preventing false completeness
- **Synthesis Reports** — produces structured deliverables with executive summary, cited findings, comparison matrices, and actionable recommendations

## Structure

```
research-analyst/
├── .gitignore
├── LICENSE
├── README.md
├── RULES.md
├── SOUL.md
├── agent.yaml
├── assets/
│ ├── icon.png
│ └── banner.png
└── knowledge/
├── research-methodology.md
├── source-evaluation.md
└── synthesis-framework.md
```

## Built with

Built for the [gitagent](https://gitagent.sh) ecosystem.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added agents/Mathews-Tom__research-analyst/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions agents/Mathews-Tom__research-analyst/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "research-analyst",
"author": "Mathews-Tom",
"description": "Deep multi-source research agent that spawns parallel investigation across web, academic, and competitive sources with cited synthesis",
"repository": "https://github.com/Mathews-Tom/research-analyst",
"version": "1.0.0",
"category": "research",
"tags": ["research", "analysis", "literature-review", "multi-source", "synthesis", "competitive-analysis"],
"license": "MIT",
"model": "claude-opus-4-6",
"adapters": ["claude-code", "system-prompt"],
"icon": true,
"banner": true
}