Sign In

graphstore-cli

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphstore-cli

CLI for the Graphstore agent-first graph database

latest
Source
npmnpm
Version
0.1.5
Version published
Maintainers
1
Created
Source

graphstore-cli

The official CLI for Graphstore.

npm install -g graphstore-cli
gs auth login --email you@example.com
gs graph create "My graph"
gs --help

For CI or agents, set GRAPHSTORE_URL and GRAPHSTORE_API_KEY, or pass --url and --key.

LLMs and pipelines should send structured queries on stdin:

printf '%s' '{"type":"task","where":[{"path":"$.status","op":"eq","value":"open"}]}' | gs data query --stdin

Saved files and small inline queries also work:

gs data query query.json
gs data query --json-query '{"type":"task","limit":10}'

Hybrid search combines SQLite FTS5 with optional Cloudflare Vectorize embeddings. Enable embeddings only for text-rich node types:

gs data semantic-enable observation
gs data search "what did we decide about backups?" --mode hybrid --type observation

Graph exports and backups store the semantic type allowlist, not derived vectors. Restore regenerates embeddings from restored nodes.

FAQs

Package last updated on 15 Aug 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts