Career intelligence system - gather professional data, generate CVs, analyze career alignment
Project description
FutureProof
Career intelligence agent that gathers professional data, searches job boards, analyzes career trajectories, and generates ATS-optimized CVs — all through conversational chat. Built with LangChain, LangGraph, and ChromaDB. Supports OpenAI, Anthropic, Google, Azure, and Ollama.
What It Does
You: Gather all my career data
Agent: [gathers LinkedIn, portfolio, CliftonStrengths → indexes to ChromaDB]
You: Analyze my skill gaps for Staff Engineer
Agent: [runs skill gap analysis using your data + market trends]
You: Search for remote Python developer jobs in Europe
Agent: [queries 7 job boards + Hacker News hiring threads]
You: Generate my CV targeting that Staff Engineer role
Agent: [generates ATS-optimized CV in Markdown + PDF]
One agent, 41 tools, 12 MCP clients. Data sources: LinkedIn CSV export, GitHub (live MCP), GitLab (glab CLI), portfolio websites, CliftonStrengths PDF, 7 job boards, Hacker News, Dev.to, Stack Overflow, Tavily search.
Architecture
graph LR
User <-->|Rich UI, HITL| Chat[Chat Client]
Chat <--> Agent[Single Agent<br/>41 tools]
Agent --> Gather[Gatherers]
Agent --> MCP[12 MCP Clients]
Agent --> Analysis[Career Analysis]
Agent --> Gen[CV Generator]
Gather -->|LinkedIn CSV, Portfolio,<br/>CliftonStrengths| ChromaDB[(ChromaDB)]
MCP -->|GitHub, 7 job boards,<br/>HN, Tavily, Dev.to, SO| Agent
Analysis --> LLM[Multi-Provider LLM<br/>Fallback Chain]
Gen -->|Markdown + PDF| Output[CV Output]
ChromaDB -->|RAG search| Agent
ChromaDB -->|Episodic memory| Agent
LLM -->|Purpose-based routing| Agent
Key design decisions:
- Single agent — multi-agent handoffs failed with GPT-4.1 (over-delegation, lost context). One agent with all tools is simpler and more reliable.
- Database-first pipeline — gatherers return
SectionNamedTuples and index directly to ChromaDB. No intermediate files, no markdown header roundtrip. - Two-pass synthesis — GPT-4o genericizes analysis responses regardless of prompt engineering.
AnalysisSynthesisMiddlewarelets the agent do tool calling, then replaces its generic response with focused synthesis from a reasoning model. - Multi-provider fallback — supports OpenAI, Anthropic, Google, Azure, Ollama, and FutureProof proxy. Provider-specific fallback chains with automatic rate-limit recovery and purpose-based routing (agent/analysis/summary/synthesis).
- HITL confirmation — destructive or expensive operations (CV generation, full data gathering, knowledge clearing) require user approval via LangGraph's
interrupt().
Quick Start
pip install futureproof
futureproof
On first launch, the /setup wizard prompts you to configure an LLM provider. Supports OpenAI, Anthropic, Google, Azure, Ollama, or the FutureProof proxy. Settings are saved to ~/.futureproof/.env. Everything happens inside the chat — use /help to see all commands.
PDF generation (CVs) requires system libraries for text rendering. Without them the app works fine — you just get Markdown output instead of PDF.
Ubuntu/Debian:
sudo apt-get install libpango-1.0-0 libpangoft2-1.0-0 libcairo2 libfontconfig1 libgdk-pixbuf-2.0-0 poppler-utilsmacOS:
brew install pango cairo gdk-pixbuf poppler
Project Structure
src/futureproof/
├── agents/
│ ├── career_agent.py # Single agent: create_agent(), 4 middlewares, singleton cache
│ ├── middleware.py # Dynamic prompt, synthesis, tool repair, summarization
│ ├── orchestrator.py # LangGraph Functional API for analysis workflows
│ ├── helpers/ # Orchestrator support (data pipeline, LLM invoker)
│ └── tools/ # 41 tools by domain (profile, gathering, analysis, market, settings)
├── chat/ # Streaming client, HITL interrupt loop, Rich UI, /setup wizard
├── gatherers/ # LinkedIn CSV, CliftonStrengths PDF, portfolio scraper, market data
├── generators/ # CV generation (Markdown + PDF via WeasyPrint)
├── llm/ # FallbackLLMManager: multi-provider fallback, purpose-based routing
├── memory/ # ChromaDB (knowledge RAG + episodic), chunker, profile, embeddings
├── mcp/ # 12 MCP clients: GitHub, Tavily, 6 job boards, HN, financial, content
├── prompts/ # System + analysis + CV prompt templates
├── services/ # GathererService, AnalysisService, KnowledgeService
└── utils/ # PII anonymization, data loading, logging
Development
git clone https://github.com/juanmanueldaza/fu7ur3pr00f.git
cd futureproof
pip install -e .
pip install pyright pytest ruff # dev tools
pytest tests/ -q # Unit tests
pytest tests/eval/ -m eval # Eval tests (need Azure credentials)
pyright src/futureproof # Type checking
ruff check . # Lint
Tech Stack
Python 3.13 · LangChain + LangGraph · ChromaDB · Multi-provider LLM (OpenAI, Anthropic, Google, Azure, Ollama) · Typer + Rich · WeasyPrint · httpx
Licensed under GPL-2.0.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fu7ur3pr00f-0.1.0.tar.gz.
File metadata
- Download URL: fu7ur3pr00f-0.1.0.tar.gz
- Upload date:
- Size: 180.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
923dc2cea7cede1da95164f9c76a06ef21bac3acd14066c95b69c87b10c92d81
|
|
| MD5 |
48c4cf4b82615f5989841e614b46949f
|
|
| BLAKE2b-256 |
e569fc6f296f6e454c79b9c62f2cccdc425a44ac2a3288b6655db2369731f48f
|
File details
Details for the file fu7ur3pr00f-0.1.0-py3-none-any.whl.
File metadata
- Download URL: fu7ur3pr00f-0.1.0-py3-none-any.whl
- Upload date:
- Size: 197.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e35ed2770eba31bb2d377064af2baeb0bbaac9559a9359e554253aea5c742ae4
|
|
| MD5 |
2a55d4cddc815bce94c95e99177d6438
|
|
| BLAKE2b-256 |
1d3da64043a884657ec00dc571bf091a9842b625d97b6bf1661495cda6641c0a
|