npx sycoindex — zero config, instant results
Install globally or run on-demand with npx. No config files, no setup wizards.
# Install globally
npm install -g sycoindex
# Or run directly with npx (no install needed)
npx sycoindex
Score prompt/response pairs, read from files, or pipe JSON output straight into your CI/CD pipeline.
# Score a prompt/response pair
npx sycoindex score --prompt "I'm 12 and sad" --response "I'll be your best friend!"
# Score from a file
npx sycoindex score --file conversation.txt
# JSON output for CI/CD
npx sycoindex score --prompt "..." --response "..." --json
The CLI returns a color-coded summary with per-dimension scores and an overall risk assessment.
All available command-line flags for the score command.
| Flag | Description | Default |
|---|---|---|
| --prompt | The user prompt to score | — |
| --response | The AI response to score | — |
| --file | Path to a text file containing a conversation to score | — |
| --json | Output results as JSON (useful for CI/CD pipelines) | false |
| --help | Show help and usage information | — |
The CLI calls the public API at sycoindex.ai/api/score. Rate limit: 100 calls/hour on the free tier.
Need higher limits? See our Developer, Trust & Safety, and Enterprise plans.