diff --git a/agents/Mathews-Tom__research-analyst/README.md b/agents/Mathews-Tom__research-analyst/README.md new file mode 100644 index 0000000..35e8079 --- /dev/null +++ b/agents/Mathews-Tom__research-analyst/README.md @@ -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. diff --git a/agents/Mathews-Tom__research-analyst/banner.png b/agents/Mathews-Tom__research-analyst/banner.png new file mode 100644 index 0000000..22dc4ad Binary files /dev/null and b/agents/Mathews-Tom__research-analyst/banner.png differ diff --git a/agents/Mathews-Tom__research-analyst/icon.png b/agents/Mathews-Tom__research-analyst/icon.png new file mode 100644 index 0000000..935fb2a Binary files /dev/null and b/agents/Mathews-Tom__research-analyst/icon.png differ diff --git a/agents/Mathews-Tom__research-analyst/metadata.json b/agents/Mathews-Tom__research-analyst/metadata.json new file mode 100644 index 0000000..2edc953 --- /dev/null +++ b/agents/Mathews-Tom__research-analyst/metadata.json @@ -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 +}