List, remove, and view statistics for your documentation libraries
OpenGround provides commands to manage your indexed documentation libraries, including listing available libraries, viewing statistics, and removing libraries you no longer need.
By default, OpenGround shows library details and asks for confirmation:
Copy
Library: reactVersion: v18.0.0 Chunks: 1250 Pages: 180 Sample titles: Getting Started, Hooks API Reference, Component API ReferenceAre you sure you want to delete this library version? [y/N]: yDeleted 1250 chunks for library 'react' version 'v18.0.0'.Also delete raw files at ~/.local/share/openground/raw_data/react/v18.0.0? [y/N]: yDeleted raw library files at ~/.local/share/openground/raw_data/react/v18.0.0.
Removing a library is permanent and cannot be undone. You’ll need to re-extract and re-embed the library to restore it.
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.
# Show what will be deleted (confirmation required by default)openground nuke all# Delete without confirmationopenground nuke all --yes# Delete only embeddingsopenground nuke embeddings --yes
This will permanently delete ALL data: • Raw data: 3 libraries in ~/.local/share/openground/raw_data • Embeddings: 3 libraries in ~/.local/share/openground/lancedbTip: Run 'openground list-raw-libraries' and 'openground list-libraries' to see what will be deleted.Are you sure you want to delete ALL data? This cannot be undone! [y/N]:
PERMANENT DELETION: nuke commands permanently delete data and cannot be undone. Make sure you have backups or can re-extract your libraries.
# Raw data (extracted JSON)~/.local/share/openground/raw_data/# LanceDB embeddings~/.local/share/openground/lancedb/# Configuration~/.config/openground/config.json# User sources~/.openground/sources.json
Copy
# Raw data (extracted JSON)%LOCALAPPDATA%\openground\raw_data\# LanceDB embeddings%LOCALAPPDATA%\openground\lancedb\# Configuration%LOCALAPPDATA%\openground\config.json# User sources%USERPROFILE%\.openground\sources.json
You can customize storage locations using the config file. See Configuration for details.