Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
AI-powered financial document analyser built with CrewAI, FastAPI & OpenAI. Features async queue processing and database integration. ๐ฆ Financial Document Analyser An AI-powered financial document analysis system built with **CrewAI**, **FastAPI**, and **OpenAI**. Upload any financial PDF (10-K, 10-Q, Annual Report, Earnings Release) and get a structured, professional analysis powered by a crew of specialized AI agents. --- ๐ Table of Contents - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 --- What This Does This system uses a **crew of 4 specialized AI Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
financial-document-analyser is best for crewai, multi-agent workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB REPOS, runtime-metrics, public facts pack
AI-powered financial document analyser built with CrewAI, FastAPI & OpenAI. Features async queue processing and database integration. ๐ฆ Financial Document Analyser An AI-powered financial document analysis system built with **CrewAI**, **FastAPI**, and **OpenAI**. Upload any financial PDF (10-K, 10-Q, Annual Report, Earnings Release) and get a structured, professional analysis powered by a crew of specialized AI agents. --- ๐ Table of Contents - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 --- What This Does This system uses a **crew of 4 specialized AI
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Yeswanthnayani
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Yeswanthnayani
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
python
text
financial-document-analyser/ โโโ main.py # FastAPI app โ all HTTP endpoints โโโ agents.py # 4 CrewAI agents with professional prompts โโโ task.py # 4 CrewAI tasks with structured instructions โโโ tools.py # PDF reader + analysis tools โโโ database.py # SQLite/PostgreSQL integration (Bonus) โโโ worker.py # Celery queue worker (Bonus) โโโ async_routes.py # Async endpoints for queue worker (Bonus) โโโ requirements.txt # All dependencies โโโ .env.example # Template for environment variables โโโ .gitignore # Excludes .env, __pycache__, temp files โโโ README.md # This file
bash
git clone https://github.com/YOUR_USERNAME/financial-document-analyser.git cd financial-document-analyser
bash
# Create virtual environment python -m venv venv # Activate it (Windows) venv\Scripts\activate # Activate it (Mac/Linux) source venv/bin/activate
bash
pip install -r requirements.txt
bash
# Copy the example env file cp .env.example .env
text
OPENAI_API_KEY=sk-...your-key-here... SERPER_API_KEY=...your-key-here...
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB REPOS
Editorial quality
ready
AI-powered financial document analyser built with CrewAI, FastAPI & OpenAI. Features async queue processing and database integration. ๐ฆ Financial Document Analyser An AI-powered financial document analysis system built with **CrewAI**, **FastAPI**, and **OpenAI**. Upload any financial PDF (10-K, 10-Q, Annual Report, Earnings Release) and get a structured, professional analysis powered by a crew of specialized AI agents. --- ๐ Table of Contents - $1 - $1 - $1 - $1 - $1 - $1 - $1 - $1 --- What This Does This system uses a **crew of 4 specialized AI
An AI-powered financial document analysis system built with CrewAI, FastAPI, and OpenAI. Upload any financial PDF (10-K, 10-Q, Annual Report, Earnings Release) and get a structured, professional analysis powered by a crew of specialized AI agents.
This system uses a crew of 4 specialized AI agents that work together to analyse financial documents:
| Agent | Role | |-------|------| | ๐ Verifier | Confirms the uploaded file is a genuine financial document | | ๐ Financial Analyst | Extracts metrics, trends, and investment insights | | ๐ผ Investment Advisor | Provides compliant, balanced investment perspective | | โ ๏ธ Risk Assessor | Identifies and evaluates genuine risk factors |
| # | File | Bug | Fix |
|---|------|-----|-----|
| 1 | agents.py | llm = llm โ variable assigned to itself, causes NameError on startup | Initialized properly with ChatOpenAI(model="gpt-4o-mini", api_key=os.getenv("OPENAI_API_KEY")) |
| 2 | agents.py | tool= (singular) โ wrong parameter name, CrewAI silently ignores it | Changed to tools= (plural) as required by CrewAI's Agent class |
| 3 | tools.py | Pdf class used but never imported โ causes NameError at runtime | Replaced with from pypdf import PdfReader and updated read logic |
| 4 | tools.py | All tool methods declared async โ incompatible with CrewAI's synchronous tool invocation | Removed async keyword from all tool methods |
| 5 | tools.py | Missing @tool decorator โ CrewAI cannot register or call undecorated tools | Added @tool("Tool Name") decorator to all tool methods |
| 6 | tools.py | requirements.txt content was pasted at the bottom of tools.py โ causes SyntaxError | Removed from tools.py, placed in proper requirements.txt file |
| 7 | main.py | analyze_financial_document imported from task.py AND used as the FastAPI route function name โ causes TypeError name collision | Renamed FastAPI handler to analyze_document |
| 8 | main.py | file_path parameter accepted by run_crew() but never passed into crew.kickoff() โ agents never receive the file | Added file_path to the kickoff() inputs dict |
| 9 | main.py | reload=True in uvicorn.run() causes issues when running as __main__ | Changed to reload=False |
| 10 | requirements.txt | pydantic==1.10.13 โ CrewAI 0.130.0 requires Pydantic v2; v1 causes import failures | Upgraded to pydantic==2.7.1 and pydantic_core==2.18.2 |
| 11 | requirements.txt | pypdf missing entirely โ required by tools.py to read PDFs | Added pypdf==4.2.0 |
| 12 | requirements.txt | uvicorn, python-multipart, python-dotenv, langchain-openai all missing | Added all missing runtime dependencies |
| 13 | requirements.txt | pip==24.0 pinned โ you should never pin pip itself in requirements.txt | Removed |
All 4 agents and all 4 tasks had intentionally harmful prompts that instructed the AI to:
Each was completely rewritten following prompt engineering best practices:
What was changed in every agent:
goal now specifies exactly what data to extract and howbackstory establishes professional credentials and compliance mindsetWhat was changed in every task:
description uses explicit "You MUST" and "You MUST NOT" sectionsexpected_output defines a precise, structured format{file_path} so agents actually read the uploaded filefinancial-document-analyser/
โโโ main.py # FastAPI app โ all HTTP endpoints
โโโ agents.py # 4 CrewAI agents with professional prompts
โโโ task.py # 4 CrewAI tasks with structured instructions
โโโ tools.py # PDF reader + analysis tools
โโโ database.py # SQLite/PostgreSQL integration (Bonus)
โโโ worker.py # Celery queue worker (Bonus)
โโโ async_routes.py # Async endpoints for queue worker (Bonus)
โโโ requirements.txt # All dependencies
โโโ .env.example # Template for environment variables
โโโ .gitignore # Excludes .env, __pycache__, temp files
โโโ README.md # This file
git clone https://github.com/YOUR_USERNAME/financial-document-analyser.git
cd financial-document-analyser
# Create virtual environment
python -m venv venv
# Activate it (Windows)
venv\Scripts\activate
# Activate it (Mac/Linux)
source venv/bin/activate
pip install -r requirements.txt
# Copy the example env file
cp .env.example .env
Now open .env in any text editor and fill in your keys:
OPENAI_API_KEY=sk-...your-key-here...
SERPER_API_KEY=...your-key-here...
Get your API keys:
python main.py
The API will be available at: http://localhost:8000
Visit http://localhost:8000/docs for the interactive Swagger UI where you can test all endpoints directly in your browser.
Requires Redis installed and running.
# Terminal 1: Start Redis
redis-server
# Terminal 2: Start Celery worker
celery -A worker worker --loglevel=info
# Terminal 3: Start FastAPI
python main.py
GET /Health check. Confirms the server is running.
Response:
{
"message": "Financial Document Analyzer API is running",
"version": "1.0.0"
}
POST /analyzeUpload a financial document and receive a full AI analysis.
Request (multipart/form-data):
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| file | PDF file | โ
Yes | Financial document to analyze |
| query | string | โ No | Specific question (defaults to general analysis) |
Example using curl:
curl -X POST "http://localhost:8000/analyze" \
-F "file=@TSLA-Q2-2025.pdf" \
-F "query=What are the key revenue trends and risks?"
Example using Python:
import requests
with open("TSLA-Q2-2025.pdf", "rb") as f:
response = requests.post(
"http://localhost:8000/analyze",
files={"file": f},
data={"query": "Summarize the financial health of this company"}
)
print(response.json())
Success Response (200):
{
"status": "success",
"analysis_id": 1,
"query": "What are the key revenue trends?",
"analysis": "## Document Summary\n...(full analysis)...",
"file_processed": "TSLA-Q2-2025.pdf"
}
Error Response (500):
{
"detail": "Error processing financial document: ..."
}
GET /analysesRetrieve all past analyses stored in the database.
Response:
{
"status": "success",
"count": 3,
"analyses": [
{
"id": 1,
"filename": "TSLA-Q2-2025.pdf",
"query": "Analyze revenue trends",
"result": "...",
"created_at": "2025-07-15T10:30:00"
}
]
}
GET /analyses/{id}Retrieve a single analysis by its ID.
Example:
curl http://localhost:8000/analyses/1
POST /async/analyze (Bonus โ requires Redis + Celery)Queue a document for background processing. Returns immediately with a task_id.
Response:
{
"status": "queued",
"task_id": "abc123-def456",
"message": "Document queued for analysis. Poll /async/status/{task_id} for results."
}
GET /async/status/{task_id} (Bonus โ requires Redis + Celery)Check the status of a queued analysis.
States: pending โ processing โ completed / failed
Response (completed):
{
"task_id": "abc123",
"status": "completed",
"result": {
"status": "success",
"analysis_id": 2,
"analysis": "..."
}
}
Every analysis is automatically saved to a database. By default this uses SQLite (no setup needed โ the .db file is created automatically).
To use PostgreSQL instead, update your .env:
DATABASE_URL=postgresql://username:password@localhost:5432/financial_analyzer
What's stored:
For production use where multiple users submit documents simultaneously, the async endpoints use Celery + Redis to queue and process requests in parallel.
How it works:
/async/analyze โ gets back task_id immediately/async/status/{task_id} to get the result when readyThis prevents the API from timing out on long analyses and allows true concurrent processing.
User Request
โ
โผ
FastAPI (/analyze)
โ
โโโโโ Save PDF to /data/
โ
โผ
CrewAI Crew (Sequential Process)
โ
โโโ Agent 1: Verifier โโโโโโโโโโโบ Reads PDF โโโบ Confirms it's financial
โ
โโโ Agent 2: Financial Analyst โโโบ Reads PDF โโโบ Extracts metrics & insights
โ
โผ
Result returned to user
โ
โผ
Database (SQLite/PostgreSQL) โโโบ Result saved for future retrieval
This tool is for educational and research purposes only. All AI-generated financial analysis should be verified by a qualified financial professional before making any investment decisions. This system does not provide personalized financial advice.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/snapshot"
curl -s "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/contract"
curl -s "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_REPOS",
"generatedAt": "2026-04-17T02:55:59.139Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "crewai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "multi-agent",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:crewai|supported|profile capability:multi-agent|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Yeswanthnayani",
"href": "https://github.com/YeswanthNayani/financial-document-analyser",
"sourceUrl": "https://github.com/YeswanthNayani/financial-document-analyser",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:45.474Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T06:04:45.474Z",
"isPublic": true
},
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/crewai-yeswanthnayani-financial-document-analyser/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to financial-document-analyser and adjacent AI workflows.