A plugin marketplace that turns Claude Code into Jarvis — a context-aware personal assistant with a knowledge vault, semantic memory, and strategic awareness.
Jarvis manages a folder of Markdown or Org-mode files (your "vault") as a personal knowledge base. It journals your thoughts, tracks your goals, searches by meaning, and learns from your conversations — all with a git-audited trail.
curl -fsSL https://raw.githubusercontent.com/rsprudencio/jarvis/refs/heads/master/install.sh | bashThis validates prerequisites, installs the plugin, configures your vault, and sets up the jarvis shell command — all in one step.
Prerequisites:
- Claude Code CLI (latest version)
- Docker with Compose
Install:
# Add the marketplace and install plugins
claude plugin marketplace add rsprudencio/jarvis
claude plugin install jarvis@jarvis-plugins
# Optional: Todoist integration
claude plugin install jarvis-todoist@jarvis-plugins
# Optional: Strategic analysis (orient, catch-up, patterns, summaries)
claude plugin install jarvis-strategic@jarvis-plugins
# Start the MCP server container
docker pull ghcr.io/rsprudencio/jarvis:latest
docker compose -f ~/.jarvis/docker-compose.yml up -dFirst-time config:
/jarvis-settings
This walks you through vault path selection, auto-extract mode, and shell integration.
See docker/README.md for full Docker setup guide.
After installing, start Claude Code and run:
/jarvis-settings
If the MCP server loaded correctly, you'll see the configuration menu. If not, run check-requirements from the repo root to diagnose.
Once installed, launch Jarvis:
jarvis # If you set up the shell command during install
# or
claude # Then type /jarvis:jarvis to activate mid-session| Command | What it does |
|---|---|
jarvis, journal this: I decided to use PostgreSQL for the new project |
Creates a journal entry with vault links |
/jarvis-recall database decisions |
Searches your vault by meaning |
/jarvis-orient |
Strategic briefing — what to focus on today |
/jarvis-todoist |
Process your Todoist inbox with smart routing |
/jarvis-close |
End-of-session review checklist |
- You talk to Claude as usual — Jarvis runs in the background
- Auto-extract captures valuable insights from your conversations into ephemeral memory
- Journal entries create permanent, linked notes in your vault
- Semantic search finds related content by meaning, not just keywords
- Strategic context keeps you aligned with your goals across sessions
| Plugin | What | Install |
|---|---|---|
| jarvis (core) | Vault management, semantic memory, auto-extract, pattern detection | Required |
| jarvis-obsidian | PKM: git audit trail, journal, vault exploration | Required |
| jarvis-todoist | Smart task routing, inbox capture, Todoist sync | Optional (needs API token) |
| jarvis-strategic | Orient briefings, catch-up, summaries, pattern analysis | Optional |
| jarvis-toolbelt | Engineering: security review, adversarial review, TDD | Optional |
Core:
| Skill | Description |
|---|---|
/jarvis:jarvis |
Activate Jarvis identity mid-session |
/jarvis-settings |
View and update configuration |
/jarvis-journal |
Create journal entries with intelligent vault linking |
/jarvis-inbox |
Process and organize vault inbox items |
/jarvis-recall <query> |
Semantic search across your vault |
/jarvis-close |
Session closure checklist |
/jarvis-memory-stats |
Memory system health and statistics |
/jarvis-schedule |
Manage recurring Jarvis actions |
/jarvis-audit |
Git audit protocol reference |
Todoist (requires jarvis-todoist plugin):
| Skill | Description |
|---|---|
/jarvis-todoist |
Sync Todoist inbox with smart routing |
/jarvis-todoist-setup |
Configure Todoist routing rules |
Strategic (requires jarvis-strategic plugin):
| Skill | Description |
|---|---|
/jarvis-orient |
Strategic briefing for starting a session |
/jarvis-catchup |
Catch-up after time away |
/jarvis-summarize |
Weekly/monthly journal summaries |
/jarvis-patterns |
Behavioral pattern analysis |
Jarvis delegates work to specialized agents that run in isolated context windows:
- Journal Agent (Haiku) — Drafts entries with vault linking and YAML frontmatter
- Audit Agent (Haiku) — JARVIS protocol git commits, history queries, rollbacks
- Explorer Agent (Haiku) — Vault-wide search with regex, date filtering, semantic pre-search
12-tool Python MCP server (jarvis-core) providing vault filesystem, semantic memory, content API, and path configuration. A second 9-tool MCP server (jarvis-obsidian) provides git audit trail, commit history, and file operations. See plugins/jarvis/capabilities.json for the full reference.
Jarvis has a unified semantic memory powered by PostgreSQL + pgvector:
Vault Documents (obsidian.documents)
Your vault files (.md or .org) — git-tracked, visible in Obsidian/Emacs, searchable via /jarvis-recall. Indexed with vector embeddings for semantic search.
Auto-Generated Content (local.memories)
Observations, patterns, decisions, and worklogs captured from your conversations. Stored with importance scoring, retrieval tracking, and time-based decay.
Auto-Extract runs passively after each conversation turn, using Haiku to identify insights worth remembering. Set to background (recommended) or disabled in /jarvis-settings.
Jarvis works on macOS, Linux, Windows, and WSL with automatic platform detection and tailored error messages.
| Platform | Status | Notes |
|---|---|---|
| macOS 13+ | ✅ Fully supported | Homebrew, Command Line Tools, or python.org |
| Linux (Ubuntu, Debian, RedHat, CentOS) | ✅ Fully supported | apt, yum, or python.org |
| Windows 11 | ✅ Supported | Git Bash, PowerShell, or WSL2 |
| WSL2 | ✅ Fully supported | Native Linux tooling inside Windows |
Python: Windows typically uses python instead of python3. Jarvis automatically detects both.
Install options:
- Microsoft Store: Search for "Python 3.11" or "Python 3.12" (easiest, adds to PATH automatically)
- python.org: Download installer, check "Add Python to PATH" during install
- WSL2: Recommended for advanced users, gives you full Linux environment
Git: Install Git for Windows which includes Git Bash - a Unix-like terminal for Windows.
Shell integration: The jarvis executable is installed to ~/.local/bin/ and works in any shell (Bash, Zsh, Git Bash, etc.).
Jarvis automatically checks common install locations even if they're not in your PATH:
Unix (macOS/Linux):
~/.local/bin— pip user installs
Windows:
%LOCALAPPDATA%\Programs\Python— Microsoft Store Python%PROGRAMFILES%\Git\cmd— Git for Windows
If a tool is installed but not found, Jarvis provides platform-specific installation instructions.
All configuration lives in ~/.jarvis/config.json. The installer writes a full config with all ~30 keys visible so you can discover and tweak options.
Run /jarvis-settings anytime to update configuration through a guided menu.
Key config sections:
- vault_path — Where your vault files live
- file_format —
"md"(Markdown, default) or"org"(Org-mode) for new files - memory.auto_extract — Observation capture mode and thresholds
- promotion — When ephemeral content gets promoted to vault files
- paths — Vault directory layout (all customizable)
If install.sh or check-requirements reports missing prerequisites:
"Python not found"
- macOS:
brew install python@3.12or download from python.org - Linux:
sudo apt install python3(Debian/Ubuntu) orsudo yum install python3(RedHat/CentOS) - Windows: Install from Microsoft Store or python.org
"Docker not found"
- Install Docker Desktop from docs.docker.com/get-docker/
- Ensure Docker Compose is included (it is in Docker Desktop)
- After install, restart your terminal
"git not found"
- macOS:
xcode-select --installorbrew install git - Linux:
sudo apt install git(Debian/Ubuntu) orsudo yum install git(RedHat/CentOS) - Windows: Download Git for Windows
"Python version too old"
- Jarvis requires Python 3.10 or later
- Check version:
python3 --version(orpython --versionon Windows) - Upgrade using your platform's package manager or python.org installer
If /jarvis:jarvis or /jarvis-settings doesn't work:
- Verify plugin installed:
claude plugin list— should showjarvis@jarvis-plugins - Check MCP server: Look for "Jarvis MCP server started" in Claude Code logs
- Run diagnostics:
./check-requirementsfrom repo root - Reinstall: Use the
/reinstallskill or manually:rm -rf ~/.claude/plugins/cache/jarvis-plugins/jarvis/* claude plugin uninstall jarvis@jarvis-plugins claude plugin install jarvis@jarvis-plugins
- Full restart: Quit and reopen Claude Code (not just reload)
If observations aren't being captured:
- Check mode: Run
/jarvis-settings→ Auto-Extract Configuration. Mode should bebackground(requires Anthropic API key; auto-falls back to Claude CLI). - Check logs: Look for "Auto-extract" in Claude Code debug logs
- Verify hooks:
ls ~/.claude/plugins/cache/jarvis-plugins/jarvis/*/hooks/should showStop.md
If /recall returns no results or indexing fails:
- Check container:
docker compose -f ~/.jarvis/docker-compose.yml ps— should show healthy - Verify PG connection:
curl localhost:8741/health— should show"postgres": {"status": "ok"} - Rebuild index: Run
/jarvis-settings→ "Re-index vault" - Check stats: Run
/jarvis-memory-statsto see document count
"Command not found" in Git Bash
- Tools installed via Microsoft Store may not be in Git Bash's PATH
- Either use PowerShell, or add to Git Bash PATH:
export PATH="/c/Users/YourName/AppData/Local/Microsoft/WindowsApps:$PATH"
WSL vs Native Windows
- If using WSL: Install Linux versions of tools inside WSL (
sudo apt install python3 git) - If using native Windows: Install Windows versions of tools
Permission errors
- Git Bash may need "Run as Administrator" for some operations
- WSL requires no special permissions
- Check logs: Claude Code → View → Toggle Developer Tools → Console
- Verbose diagnostics:
./check-requirements --verbose - Report bug: GitHub Issues
.
├── install.sh # Curl-pipe-bash installer
├── check-requirements # Standalone prereq checker
├── plugins/
│ ├── jarvis/ # Core plugin
│ │ ├── agents/ # Journal, audit, explorer agents
│ │ ├── skills/ # 9 core skills
│ │ ├── mcp-server/ # Python MCP server (12 tools)
│ │ ├── hooks/ # Auto-extract Stop hook
│ │ └── statusline/ # Claude Code statusline
│ ├── jarvis-obsidian/ # PKM: git audit, journal, exploration
│ ├── jarvis-todoist/ # Todoist extension
│ ├── jarvis-strategic/ # Strategic analysis extension
│ └── jarvis-toolbelt/ # Engineering: security, adversarial review
├── CLAUDE.md # Development guide
└── LICENSE # CC BY-NC 4.0
make test # unit tests (no DB required)
make test-e2e # e2e tests against real PostgreSQL
make test-all # bothUnit tests covering config, file ops, git operations, memory, protocol, and server registration.
- CLAUDE.md — Development conventions and version history
- plugins/jarvis/capabilities.json — Full capability reference (AI-first)
CC BY-NC 4.0 (Creative Commons Attribution-NonCommercial 4.0 International)
See LICENSE for full legal text.