Skip to main content
aislop trend reads local scan history and prints recent scores with a small trend view.

Usage

aislop trend
aislop trends
aislop trend --limit 20
aislop trends is an alias for aislop trend.

Flags

FlagDescription
--limit <n>Number of recent score records to show

How history is written

A full-project interactive aislop scan appends one compact record to .aislop/history.jsonl. Each record includes:
FieldMeaning
TimestampWhen the scan completed
ScoreNumeric score, when scoreable
Errors and warningsDiagnostic counts
File countNumber of scanned files
CLI versionInstalled aislop version

When history is not written

History is a local side effect only. It is not written when:
  • --json is active
  • --sarif is active
  • aislop ci is running
  • AISLOP_NO_HISTORY=1 is set
This keeps machine output deterministic and avoids hidden writes in CI.

Use cases

# Show the default recent score history
aislop trend

# Show more history while debugging a regression
aislop trend --limit 30