codequiry-cli
v2.0.1
Published
Codequiry CLI - Source code similarity checker
Downloads
18
Maintainers
Readme
Codequiry CLI
Source code similarity checker from your terminal. Detect plagiarism across 65+ programming languages.
Quick Install
macOS / Linux:
curl -fsSL https://codequiry.com/install.sh | bashWindows (PowerShell):
irm https://codequiry.com/install.ps1 | iexNPM:
npm install -g codequiry-cliUsage
# Authenticate
codequiry auth
# Scan a folder (does everything in one command)
codequiry scan ./submissions
# Interactive mode
codequiryCommands
| Command | Description |
|---------|-------------|
| codequiry | Interactive TUI mode |
| codequiry scan [path] | Full scan: zip, upload, start, poll, results |
| codequiry auth | Set your API key |
| codequiry checks | List all checks |
| codequiry create | Create a new check |
| codequiry upload [path] | Upload files to a check |
| codequiry start | Start a check |
| codequiry status | Check progress |
| codequiry results | View results |
| codequiry account | Account info & quota |
| codequiry delete | Delete a check |
CI/CD
# JSON output for pipelines
codequiry scan ./src --output json
# Fail if similarity exceeds threshold
codequiry scan ./src --threshold 70
# Auth via environment variable
export CODEQUIRY_API_KEY=your-key-here
codequiry scan ./src --output jsonRequirements
- Node.js 18+
- API key from codequiry.com (Grow or Advanced plan)
