@seekable/cli
v0.1.0
Published
Command-line tooling for exercising the Seekable v1 API.
Downloads
18
Readme
@seekable/cli
Internal npm CLI baseline for exercising Seekable's /v1 API from scripts, agents, and local development.
This is not a polished public CLI product yet. Its job is to keep the API honest: explicit inputs, stable JSON, bearer-token-friendly auth, and testable non-browser behavior.
Usage
Install:
npm install -g @seekable/cliRun from the repo:
npm run seekable -- --helpDefault API base URL:
http://localhost:3001/api/v1Override with SEEKABLE_API_BASE_URL or --base-url.
Example future request:
SEEKABLE_API_TOKEN="$token" npm run seekable -- request GET /meJSON mutation example:
npm run seekable -- request POST /auth/signup \
--data '{"email":"[email protected]","password":"example"}'Environment
SEEKABLE_API_BASE_URL— base URL for/v1; defaults to local frontend dev server.SEEKABLE_API_TOKEN— optional bearer token for authenticated requests.
