Collection of LangGraph agents with Nexus filesystem integration, deployable on LangGraph Platform
This repository contains production-ready LangGraph agents that leverage Nexus filesystem for persistent storage, file operations, and multi-agent collaboration. All agents are designed for deployment on LangGraph Platform.
Key Features:
- ✅ Multiple specialized agents (ReAct, Quant Trading, Talent Search, etc.)
- ✅ Shared Nexus tools and utilities
- ✅ LangGraph Platform ready
- ✅ Python 3.11+ compatible
- ✅ Production deployment configurations
See REPO_STRUCTURE.md for detailed structure proposal.
nexus-langgraph/
├── agents/ # Individual agent implementations
├── shared/ # Shared utilities, tools, prompts
├── tests/ # Test suite
├── examples/ # Usage examples
└── langgraph.json # Deployment configuration
General-purpose ReAct agent with Nexus filesystem access.
- File search and analysis
- Code reading and writing
- Documentation generation
Additional agents (quant, talent, etc.) will be added in future updates.
git clone https://github.com/nexi-lab/nexus-langgraph.git
cd nexus-langgraph
pip install -e .- Copy
.env.exampleto.env - Set your API keys:
export NEXUS_API_KEY="sk-your-nexus-key" export ANTHROPIC_API_KEY="sk-ant-your-key" # or OPENAI_API_KEY
langgraph devOr deploy to LangGraph Cloud:
langgraph deploynexus-fs-python[langgraph]>=0.1.0- Nexus client SDKlanggraph>=0.2.0- LangGraph frameworklangchain-core>=0.3.0- LangChain corelangchain-anthropic>=0.2.0- Claude supportlangchain-openai>=0.2.0- GPT-4 support
- Repository Structure - Detailed structure proposal
- Deployment Guide - LangGraph Platform deployment
- Adding Agents - Guide for new agents
- Architecture - System architecture
✅ Initial Migration Complete - React agent migrated and ready for deployment. Additional agents can be added following the same pattern.
- nexus-fs-python - Python client SDK
- nexus - Nexus filesystem server
Apache-2.0