Jarvis
This is my experimental hybrid local + online LLM-based AI assistant for voice control, automation, messaging, and smart task execution across apps, web, and Google Workspace.
File Explorer
- __init__.py
- agent.py
- config.py
- playwright_mcp_client.py
- .grocery_list.txt
- BOI.pdf
- __init__.py
- agent.py
- categorizer-agent.py
- config.py
- pdf_processor.py
- rag_chatbot.py
- requirements.txt
- __init__.py
- agent.py
- config.py
- contact_manager.py
- context_validator.py
- intent_analyzer.py
- intent_parser.py
- reply_generator.py
- wa_chat_bot.py
- wa_web_automator.py
- whatsapp_auto.py
- whatsapp_skill.py
- __init__.py
- agents_provider.py
- base_agent.py
- velar_bridge.gs
- __init__.py
- video_workflow.py
- __init__.py
- n8n_bridge.py
- __init__.py
- Automation_Brain.py
- automations_provider.py
- create_obsidian_note.py
- __init__.py
- brain.py
- google_workspace_client.py
- intent_engine.py
- intent_router.py
- model_prewarm.py
- primary_brain.py
- prompts.py
- secondary_brain.py
- task_queue.py
- tools_provider.py
- tools_registry.py
- __init__.py
- app_data.py
- contacts.json
- wa_broad_inspection.json
- wa_compose_inspection.json
- wa_dom_inspection.json
- wa_messages_inspection.json
- wa_url_chat_inspection.json
- wa_verification_results.json
- web_data.py
- __init__.py
- adaptive_volume.py
- controller.py
- controls_provider.py
- volume_config.py
- speech_buffer.py
- SpeechToText_python.py
- wake_word_detector.py
- Fast_DF_TTS.py
- TextToSpeech.py
- __init__.py
- mcp_client.py
- mcp_manager.py
- __init__.py
- active_window.py
- Alert.py
- App_open.py
- battery.py
- Play_Music_spotify.py
- Play_Music_YT.PY
- tab_automation.py
- Web_open.py
- youtube_automations.py
- __init__.py
- create_file.py
- obsidian_integration.py
- tools_brain.py
- weather.py
- __init__.py
- jarvis_ui.py
- voice_popup.py
- .env.example
- .gitignore
- co.brain.py
- docker-compose.yml
- Dockerfile
- explain.drawio
- fix_ollama_gpu.ps1
- github file open_cv.txt
- image.png
- input.txt
- LICENSE
- main_trial.py
- make_req.py
- Modelfile
- notification.py
- README.md
- requirements.txt
- setup.py
- shared_state.py
- telegram_bot.py
- Velar.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker compose
View Details ▼
docker compose
Run and manage multi container Docker applications.
docker compose ps
List all running containers:
docker compose up {{[-d|--detach]}}
Create and start all containers in the background using a `docker-compose.yml` file from the current directory:
docker compose up --build
Start all containers, rebuild if necessary:
docker
View Details ▼
docker
Manage Docker containers and images.
Some subcommands such as `container` and `image` have their own usage documentation.
docker {{[ps|container ls]}} {{[-a|--all]}}
List all Docker containers (running and stopped):
docker {{[run|container run]}} --name {{container_name}} {{image}}
Start a container from an image, with a custom name:
docker container {{start|stop}} {{container_name}}
Start or stop an existing container:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
ollama
View Details ▼
ollama
A large language model runner.
For a list of available models, see <https://ollama.com/library>.
ollama serve
Start the daemon required to run other commands:
ollama run {{model}}
Run a model and chat with it (will automatically download the model if it's not downloaded):
ollama run {{model}} --think=false "{{prompt}}"
Run a model with a single prompt and thinking turned off:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
winget
View Details ▼
winget
Windows Package Manager.
winget {{[add|install]}} {{package}}
Install a package (use `--source` when package is available from multiple sources):
winget {{[rm|uninstall]}} {{package}}
Remove a package (Note: `remove` can also be used instead of `uninstall`):
winget show {{package}}
Display information about a package:
