Scrubby

scrubby_get_findings

Retrieve commit and domain activity history for a repository — change velocity, hot domains, recent commits.

Returns historical activity data for the repository: which domains are most active, change velocity, and recent commit patterns. Useful for understanding where the codebase is evolving.

Parameters

Name Type Required Description
repo_id number No Scrubby repository ID. Auto-detected if omitted.
repo_name string No Repository name (e.g. api). Used to auto-resolve in remote mode when multiple repos are indexed.

Response

Object with:

  • domain_activity — for each domain: commit count, change velocity (commits/week trend), contributors touching it.
  • recent_commits — the last N commits, with the domains they touched.
  • hot_domains — domains with abnormally high recent change rates.

Typical usage

In your AI editor:

"Which domains have been most active lately?"
"What's the change velocity for the billing domain?"
"Show me Scrubby's view of recent commit activity."

This is also surfaced on the dashboard’s repository detail view.

See also

Last updated