versive
v1.0.0
Published
CLI tool for Versive API
Readme
Versive CLI
The official command-line interface for the Versive API.
Installation
You can install the CLI globally using npm:
npm install -g versive-cliQuick Start
Clone the repository:
git clone https://github.com/getversive/versive-cli.git cd versive-cliInstall dependencies:
npm installBuild the project:
npm run buildConfigure your credentials:
node dist/index.js login
Usage
Once configured, you can use the CLI to interact with the API.
Interviews
List interviews (requires a VID filter):
node dist/index.js interviews list --vid <your-vid>Get a specific interview:
node dist/index.js interviews get <interview-id>Studies
List all available studies:
node dist/index.js studies listDevelopment
To run the CLI in development mode without building:
npx ts-node src/index.ts --helpTo link the CLI globally for development:
npm link
# Now you can use the 'versive' command directly
versive --help