AI-Assisted Setup
Tell your local AI agent to set up AgentVault Agentic Access using the hosted setup skill. The agent checks Node.js, downloads the companion, configures startup, adds MCP where possible, and tests localhost.
Open SKILL.mdPrompt: Set up AgentVault Agentic Access using https://getagentvault.app/SKILL.md
Manual Setup
If you prefer to do it yourself, follow the plain-language setup guide. Vault and skills still work normally if you skip this; Agent Session stays disabled until the companion is running.
Read the guideWhat the companion does
It runs a small local server on your own computer:
http://127.0.0.1:3747
That address means "this computer only." It is used by local desktop AI tools to ask AgentVault for a named secret after you grant a session in the Chrome extension.
Windows Setup
- Install AgentVault from the Chrome Web Store.
- Install Node.js 18+ from nodejs.org.
- Tell your local AI agent:
Set up AgentVault Agentic Access using https://getagentvault.app/SKILL.md - Open AgentVault in Chrome, unlock the vault, choose an access duration, and click Session.
- Click Copy Agent Instructions and paste them into your local AI tool.
Manual Start Commands
If Agent Session is disabled after setup, start the companion manually from the folder used by the hosted setup skill.
Windows: cd "$env:LOCALAPPDATA\AgentVaultCompanion\companion" node server.js Mac: cd "$HOME/Library/Application Support/AgentVaultCompanion/companion" node server.js Linux: cd "$HOME/.local/share/agentvault-companion/companion" node server.js
Supported and not supported
Works with the companion
- Windows desktop AI tools
- Codex Desktop and local IDE agents
- Cursor, VS Code, Claude Desktop, Windsurf
- CLI scripts running on your computer
Not part of the MVP
- iPhone and iPad
- Cloud-only agents that cannot reach your localhost
- Locked-down work machines that block local scripts or startup services
- Native packaged desktop apps
Developer diagnostic
For local extension development, the repo includes docs/agent-test.html to exercise the direct Chrome messaging path. Normal users should follow the setup skill or manual companion guide instead.