Quick Start // Initial Sync Sequence
Deploy your first AgentVault entity in under 10 minutes.
Prerequisites
- Node.js 18+
dfxinstalled and reachable in PATH- AgentVault CLI installed (
npm install -g agentvault)
1. Initialize Project Vessel
agentvault init my-first-agent
cd my-first-agent
This creates a baseline project with config, source, and package metadata.
2. Activate Local ICP Runtime
dfx start --background
dfx ping
3. Package Entity Artifacts
agentvault package ./
This compiles the agent and prepares deterministic deployment output.
4. Deploy to Local Network
agentvault deploy --network local
Capture the emitted canister ID from command output.
5. Verify Operational State
agentvault status
agentvault info
agentvault health
6. Execute a Task
agentvault exec --canister-id <YOUR_CANISTER_ID> "hello world"
7. Read and Preserve State
agentvault show --canister-id <YOUR_CANISTER_ID>
agentvault backup --canister-id <YOUR_CANISTER_ID>
Divine Efficiency
Automate status, health, and backup checks in your local CI before promoting deployments.
Next Protocols
| Goal | Guide |
|---|---|
| Complete operational walkthrough | Tutorial |
| Mainnet deployment strategy | Deployment Guide |
| Multi-chain wallet operations | Wallet Guide |
| Full command surface | CLI Reference |
Common Command Set
# List all local agents
agentvault list
# View runtime logs
agentvault logs <canister-id>
# Fetch state for local reconstruction
agentvault fetch --canister-id <canister-id>
# Inspect cycle balance
agentvault cycles balance <canister-id>
Help
agentvault --help
agentvault <command> --help
See Troubleshooting when commands fail or outputs diverge.