List Libraries
View all libraries stored in your LanceDB database:openground ls
Output Format
Results are displayed in a formatted table:This shows libraries that have been embedded into LanceDB. To see raw extracted data, use
openground list-raw-libraries.List Raw Libraries
View libraries in the raw data directory (extracted but possibly not yet embedded):Output Format
What's the difference between list-libraries and list-raw-libraries?
What's the difference between list-libraries and list-raw-libraries?
list-libraries: Shows libraries in LanceDB (embedded and searchable)list-raw-libraries: Shows libraries in raw_data directory (extracted JSON files)
- Extraction completed but embedding was interrupted
- You manually deleted the database
- Embedding is in progress
Programmatic Library Listing
List libraries from Python code:Remove Libraries
Delete a library version from LanceDB:openground rm
Remove Options
string
required
Name of the library to remove
string
required
Version of the library to remove
boolean
Skip confirmation prompts
Remove Examples
Confirmation Dialog
By default, OpenGround shows library details and asks for confirmation:Library Statistics
Get detailed statistics for a specific library version:Stats Output
Global Statistics
View overall OpenGround statistics:Stats Output
What are tool calls?
What are tool calls?
Tool calls are tracked when using OpenGround through MCP (Model Context Protocol) integration with AI editors like Claude Code, Cursor, or OpenCode. Each time the AI uses an OpenGround tool, it’s counted here.
Reset Statistics
Clear tool call statistics:Delete All Data
OpenGround providesnuke commands to delete data:
Delete Everything
Delete both raw data and embeddings:Delete Only Raw Data
Delete extracted JSON files but keep embeddings:Delete Only Embeddings
Delete LanceDB but keep raw extracted files:Nuke Examples
Nuke Confirmation
The command shows a summary before deleting:When should I use nuke commands?
When should I use nuke commands?
Use
nuke commands when:- Starting fresh with a new configuration
- Clearing disk space
- Switching embedding models (requires re-embedding)
- Troubleshooting database corruption
- Testing or development workflows
openground update instead).Programmatic Deletion
Delete libraries from Python:Storage Locations
Understanding where data is stored:- Linux/macOS
- Windows
Best Practices
Regular Cleanup
Periodically remove old versions you no longer need:
Version Management
Keep only versions you actively use:
Monitor Disk Usage
Check storage usage regularly:
Backup Before Nuke
Back up important libraries before mass deletion:
Next Steps
Querying
Learn how to search your libraries
Updating
Keep your libraries up-to-date