What problem does it solve? Operating data in a running Lantern key-vertex-store requires knowing the exact lantern-cli grammar, flags, TTL semantics, and edge write semantics; this Skill provides the canonical command reference so agents and users issue correct data commands without reading server source code. ## Core Features & Use Cases - Vertex and Edge CRUD: get, put, delete, scan, count, and keys commands with typed values, TTLs, and prefix-based enumeration. - Graph Walks: run bfs, pagerank, and community traversals from a seed key and receive the visited subgraph as JSON. - Bulk Operations: stream NDJSON bulk loads, take whole-graph dump/restore backups, and safely purge keyspaces with the gated delete-prefix command. - Use Case: An agent asked to "find items related to user:42 and purge the tmp/ namespace" can run lantern-cli bfs user:42 --step 2 for the graph walk, then lantern-cli delete-prefix vertices tmp/ dry_run=true followed by confirm=yes for a safe cleanup. ## Quick Start Ask the assistant to fetch a vertex or run a graph walk, for example: use the lantern-ops skill to get the vertex alice and run a bfs walk from it with step 2.