Multi Agent Ai Briefing
Description
A multi-agent AI briefing API built with FastAPI, OpenAI, and Claude, demonstrating specialized AI agents, asynchronous processing, and concurrent LLM workflows for automated news summarization and classification.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Multi-Agent Ai-Briefing
A FastAPI application that scrapes Hacker News headlines and uses multiple AI models to process them.
AI Agents
- OpenAI
gpt-4o-mini→ summarizes headlines - Claude
claude-sonnet-4-6→ classifies headlines intoAI,Technology,Business, orOther - Claude falls back to
claude-sonnet-4-5-20250929if needed
This demonstrates a simple **multi-agent pattern**, where specialized AI agents handle different tasks and their outputs are combined into one briefing.
Hacker News
↓
Headlines
↓
┌─────────────────┐
│ OpenAI Agent │ → Summary
├─────────────────┤
│ Claude Agent │ → Category
└─────────────────┘
↓
Final Briefing
Project Structure
multi-agent-ai-briefing/
├── .env
├── pyproject.toml
├── uv.lock
└── src/
├── __init__.py
├── main.py
├── scraper.py
├── summarizer.py
└── classifier.py
Setup
Install the dependencies defined in `pyproject.toml`:
uv sync
Create `.env`:
OPENAI_API_KEY=your_openai_api_key
ANTHROPIC_API_KEY=your_anthropic_api_key
Run
uv run main:app --reload
Open the API documentation:
http://127.0.0.1:8000/docs
Then call:
GET /briefing
Initialize a FastAPI Project with `uv`
uv init project-name
cd project-name
uv add fastapi uvicorn
Create:
src/main.py
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
"""Return a welcome message."""
return {"message": "Hello World"}
Run:
uv run uvicorn main:app --reload
Open:
http://127.0.0.1:8000/docs
Related Skills
Agency Agents
A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy inject
AI Awesome Llm Apps
100+ AI Agents, Agent Skills and RAG Apps - Free and Open Source.
AI Firecrawl
🔥 The API to search, scrape, and interact with the web for AI
AI Artifacts Builder
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web tech
AI Headroom
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agen
AI CrewAI
Framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewA
AI