Vector DB Initialization
The vector-db-init skill is an automated setup routine that prepares the environment for the Vector DBMS.
When to Use This
- When a user first installs the
vector-dbplugin. - If the user complains that
chromadbis not installed orModuleNotFoundErroris thrown. - If the Vector DB profile is missing from
.agent/learning/vector_profiles.json.
Instructions for Agent
Run the Initialization Script: You must execute the interactive initialization script located at
scripts/init.py.python3 plugins/vector-db/skills/vector-db-init/scripts/init.pyWait for Completion: The script will automatically run
pip install, then prompt the user to select their deployment architecture (In-Process or Native Server). All settings are written to.agent/learning/vector_profiles.json.Verify: After the script completes successfully, inform the user that their environment is ready, and they can now run the
vector-db-launchskill to start the background server (if they chose Option 2).