← Back to Registry
SQLite3

SQLite3

Software

SQLite database command-line interface.

1. Install

npm install @agentos-software/sqlite3

2. Add to agentOS

Register it with your VM's software: [] so its commands are available inside the VM.

import { agentOS, setup } from "@rivet-dev/agentos";
import sqlite3 from "@agentos-software/sqlite3";

// Add the package to your VM's software so its commands are available inside the VM
const vm = agentOS({ software: [sqlite3] });

export const registry = setup({ use: { vm } });