Skip to content

progress

The progress action shows your current fixing progress. Use it to check how much work remains.

{
"action": "progress",
"scope": {"rule": "ConstantValue"}
}
ParameterTypeRequiredDescription
scopeobjectNoFilter to check progress within specific scope
{
"total": 136,
"fixed": 115,
"skip": 2,
"rem": 19,
"filesOk": 25,
"filesRem": 7
}
FieldDescription
totalTotal issues in scope
fixedIssues marked as fixed
skipIssues marked as skipped
remRemaining (pending) issues
filesOkFiles with all issues resolved
filesRemRemaining files with issues
scopeApplied scope filter (present when scope was specified)
{"action": "progress"}

Response:

{
"total": 136,
"fixed": 115,
"skip": 2,
"rem": 19,
"filesOk": 25,
"filesRem": 7
}
{"action": "progress", "scope": {"rule": "ConstantValue"}}

Response:

{
"scope": {"rule": "ConstantValue"},
"total": 22,
"fixed": 19,
"skip": 0,
"rem": 3,
"filesOk": 8,
"filesRem": 2
}
{"action": "progress", "scope": {"severity": "High"}}

Before starting or after a break, check where you are:

{"action": "progress"}

After focusing on a specific rule, confirm it’s done:

{"action": "progress", "scope": {"rule": "ConstantValue"}}
// rem: 0 means all ConstantValue issues are handled

When the user asks “how much is left?”:

{"action": "progress"}
// "19 issues remaining across 7 files"
Error CodeCauseSolution
SARIF_NOT_LOADEDNo SARIF file has been loadedCall load first
INVALID_SCOPEInvalid scope filterCheck severity is High, Moderate, or Low
DB_ERRORDatabase error occurredCheck .sheriff/ directory permissions