Skip to content

CLI Overview

The ArtemisKit CLI (@artemiskit/cli) is the primary way to run LLM evaluations.

Terminal window
npm install -g @artemiskit/cli
CommandDescription
artemiskit runRun scenario-based evaluations
artemiskit redteamSecurity red team testing
artemiskit stressLoad and stress testing
artemiskit compareCompare two evaluation runs
artemiskit reportGenerate reports from saved runs
artemiskit historyView run history
artemiskit initInitialize configuration

You can use akit as a shorter alias for artemiskit.

Terminal window
# Set your API key
export OPENAI_API_KEY="sk-..."
# Run a scenario (results are saved by default)
akit run scenarios/my-test.yaml
# Run without saving results
akit run scenarios/my-test.yaml --no-save

Create artemis.config.yaml for default settings:

provider: openai
model: gpt-5
providers:
openai:
apiKey: ${OPENAI_API_KEY}
timeout: 60000
output:
format: json
dir: ./artemis-output