CLI Overview
ArtemisKit CLI
Section titled “ArtemisKit CLI”The ArtemisKit CLI (@artemiskit/cli) is the primary way to run LLM evaluations.
Installation
Section titled “Installation”npm install -g @artemiskit/cliCommands
Section titled “Commands”| Command | Description |
|---|---|
artemiskit run | Run scenario-based evaluations |
artemiskit redteam | Security red team testing |
artemiskit stress | Load and stress testing |
artemiskit compare | Compare two evaluation runs |
artemiskit report | Generate reports from saved runs |
artemiskit history | View run history |
artemiskit init | Initialize configuration |
You can use akit as a shorter alias for artemiskit.
Quick Start
Section titled “Quick Start”# Set your API keyexport OPENAI_API_KEY="sk-..."
# Run a scenario (results are saved by default)akit run scenarios/my-test.yaml
# Run without saving resultsakit run scenarios/my-test.yaml --no-saveConfiguration
Section titled “Configuration”Create artemis.config.yaml for default settings:
provider: openaimodel: gpt-5
providers: openai: apiKey: ${OPENAI_API_KEY} timeout: 60000
output: format: json dir: ./artemis-output