├── .claude └── settings.local.json ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── add_event.py ├── api ├── __init__.py └── server.py ├── app ├── JRVS APP.tsx ├── components │ ├── AISchedulingPlatform.tsx │ └── WeekCalendar.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── cli ├── __init__.py ├── commands.py ├── interface.py └── themes.py ├── config.py ├── core ├── __init__.py ├── calendar.py ├── database.py └── lazy_loader.py ├── data ├── faiss_index.index ├── faiss_index.map └── jarvis.db ├── data_analysis ├── __init__.py └── analyzer.py ├── demo_jarcore.py ├── docker-compose.yml ├── docs ├── BRAVE_SEARCH_SETUP.md ├── CODING_AGENT.md ├── COMMANDS_FIXED.md ├── INTELLIGENT_AGENT_GUIDE.md ├── JARCORE_QUICKSTART.md ├── JARCORE_UPDATE.md ├── MCP_CLIENT_GUIDE.md ├── MCP_IMPLEMENTATION_SUMMARY.md ├── MCP_QUICKSTART.md ├── MCP_SETUP.md ├── NEW_WEB_UI.md ├── QUICKSTART.md ├── README_FRONTEND.md ├── SETUP_COMPLETE.md ├── START_HERE.md ├── TAILSCALE_QUICKSTART.md ├── TAILSCALE_WEB_SETUP.md └── WHATS_NEW.md ├── eslint.config.mjs ├── frontend-example.html ├── issues └── 1.md ├── jarcore_cli.py ├── jrvs-web.service ├── lib ├── firebase-utils.ts ├── firebase.ts └── jarvis-api.ts ├── llm ├── __init__.py └── ollama_client.py ├── main.py ├── mcp ├── README.md ├── __init__.py ├── agent.py ├── claude_config.json ├── client.py ├── client_config.json ├── coding_agent.py ├── server.py └── test_server.py ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public ├── file.svg ├── globe.svg ├── next.svg ├── vercel.svg └── window.svg ├── push_to_github.sh ├── rag ├── __init__.py ├── embeddings.py ├── retriever.py └── vector_store.py ├── requirements.txt ├── scraper ├── __init__.py └── web_scraper.py ├── setup_mac.sh ├── setup_windows.bat ├── start-api.sh ├── start_jrvs.sh ├── start_web_server.sh ├── static ├── index.html ├── script.js └── style.css ├── tests ├── test_calendar_api.py ├── test_coding_agent.py └── test_mcp_client.py ├── tsconfig.json └── web_server.py /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | """Jarvis AI Agent - Advanced RAG-powered CLI assistant""" 2 | __version__ = "1.0.0" -------------------------------------------------------------------------------- /add_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/add_event.py -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | """API module for Jarvis AI Agent""" 2 | -------------------------------------------------------------------------------- /api/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/api/server.py -------------------------------------------------------------------------------- /app/JRVS APP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/JRVS APP.tsx -------------------------------------------------------------------------------- /app/components/AISchedulingPlatform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/components/AISchedulingPlatform.tsx -------------------------------------------------------------------------------- /app/components/WeekCalendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/components/WeekCalendar.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/app/page.tsx -------------------------------------------------------------------------------- /cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/cli/commands.py -------------------------------------------------------------------------------- /cli/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/cli/interface.py -------------------------------------------------------------------------------- /cli/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/cli/themes.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/config.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/core/calendar.py -------------------------------------------------------------------------------- /core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/core/database.py -------------------------------------------------------------------------------- /core/lazy_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/core/lazy_loader.py -------------------------------------------------------------------------------- /data/faiss_index.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/data/faiss_index.index -------------------------------------------------------------------------------- /data/faiss_index.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/data/faiss_index.map -------------------------------------------------------------------------------- /data/jarvis.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/data/jarvis.db -------------------------------------------------------------------------------- /data_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_analysis/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/data_analysis/analyzer.py -------------------------------------------------------------------------------- /demo_jarcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/demo_jarcore.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/BRAVE_SEARCH_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/BRAVE_SEARCH_SETUP.md -------------------------------------------------------------------------------- /docs/CODING_AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/CODING_AGENT.md -------------------------------------------------------------------------------- /docs/COMMANDS_FIXED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/COMMANDS_FIXED.md -------------------------------------------------------------------------------- /docs/INTELLIGENT_AGENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/INTELLIGENT_AGENT_GUIDE.md -------------------------------------------------------------------------------- /docs/JARCORE_QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/JARCORE_QUICKSTART.md -------------------------------------------------------------------------------- /docs/JARCORE_UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/JARCORE_UPDATE.md -------------------------------------------------------------------------------- /docs/MCP_CLIENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/MCP_CLIENT_GUIDE.md -------------------------------------------------------------------------------- /docs/MCP_IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/MCP_IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/MCP_QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/MCP_QUICKSTART.md -------------------------------------------------------------------------------- /docs/MCP_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/MCP_SETUP.md -------------------------------------------------------------------------------- /docs/NEW_WEB_UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/NEW_WEB_UI.md -------------------------------------------------------------------------------- /docs/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/QUICKSTART.md -------------------------------------------------------------------------------- /docs/README_FRONTEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/README_FRONTEND.md -------------------------------------------------------------------------------- /docs/SETUP_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/SETUP_COMPLETE.md -------------------------------------------------------------------------------- /docs/START_HERE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/START_HERE.md -------------------------------------------------------------------------------- /docs/TAILSCALE_QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/TAILSCALE_QUICKSTART.md -------------------------------------------------------------------------------- /docs/TAILSCALE_WEB_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/TAILSCALE_WEB_SETUP.md -------------------------------------------------------------------------------- /docs/WHATS_NEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/docs/WHATS_NEW.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /frontend-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/frontend-example.html -------------------------------------------------------------------------------- /issues/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/issues/1.md -------------------------------------------------------------------------------- /jarcore_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/jarcore_cli.py -------------------------------------------------------------------------------- /jrvs-web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/jrvs-web.service -------------------------------------------------------------------------------- /lib/firebase-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/lib/firebase-utils.ts -------------------------------------------------------------------------------- /lib/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/lib/firebase.ts -------------------------------------------------------------------------------- /lib/jarvis-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/lib/jarvis-api.ts -------------------------------------------------------------------------------- /llm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm/ollama_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/llm/ollama_client.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/main.py -------------------------------------------------------------------------------- /mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/README.md -------------------------------------------------------------------------------- /mcp/__init__.py: -------------------------------------------------------------------------------- 1 | """MCP (Model Context Protocol) server for JRVS""" 2 | -------------------------------------------------------------------------------- /mcp/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/agent.py -------------------------------------------------------------------------------- /mcp/claude_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/claude_config.json -------------------------------------------------------------------------------- /mcp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/client.py -------------------------------------------------------------------------------- /mcp/client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/client_config.json -------------------------------------------------------------------------------- /mcp/coding_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/coding_agent.py -------------------------------------------------------------------------------- /mcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/server.py -------------------------------------------------------------------------------- /mcp/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/mcp/test_server.py -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/public/globe.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/public/window.svg -------------------------------------------------------------------------------- /push_to_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/push_to_github.sh -------------------------------------------------------------------------------- /rag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rag/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/rag/embeddings.py -------------------------------------------------------------------------------- /rag/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/rag/retriever.py -------------------------------------------------------------------------------- /rag/vector_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/rag/vector_store.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper/web_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/scraper/web_scraper.py -------------------------------------------------------------------------------- /setup_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/setup_mac.sh -------------------------------------------------------------------------------- /setup_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/setup_windows.bat -------------------------------------------------------------------------------- /start-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/start-api.sh -------------------------------------------------------------------------------- /start_jrvs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/start_jrvs.sh -------------------------------------------------------------------------------- /start_web_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/start_web_server.sh -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/static/index.html -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/static/style.css -------------------------------------------------------------------------------- /tests/test_calendar_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/tests/test_calendar_api.py -------------------------------------------------------------------------------- /tests/test_coding_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/tests/test_coding_agent.py -------------------------------------------------------------------------------- /tests/test_mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/tests/test_mcp_client.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xthebuilder/JRVS/HEAD/web_server.py --------------------------------------------------------------------------------