Scan a repository to surface actionable findings about agent performance. Analyzes source code, git history, GitHub data, agent logs, and agent context, then synthesizes cross-referenced findings with targeted actions informed by Tessl product awareness. Supports incremental multi-developer contributions and produces a self-contained HTML report.
70
88%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
Scan a repository to surface actionable findings about coding agent performance, each with a targeted action recommendation.
This plugin analyzes five data sources in parallel — source code, git history, GitHub PRs/CI, agent conversation logs, and agent configuration files — then cross-references and synthesizes the results into:
blocked, constrained, or productiverun-insight-scanThis orchestrates all five analyzers and the synthesis step, producing output in .tessl-insights-poc/ at the repo root.
gh CLI installed and authenticated (for GitHub data analysis)The scan results are designed to be committed to git so the whole team can contribute and benefit.
run-insight-scan to analyze the repo.tessl-insights-poc/report.html.tessl-insights-poc/ to git.tessl-insights-poc/ from gitcontribute-agent-logs — this analyzes your local agent logs and re-runs synthesis.tessl-insights-poc/Each developer's agent logs are saved separately (by username and date), so contributions are additive and don't overwrite each other. The synthesis step merges all available data on every run.
.tessl-insights-poc/
├── findings.json # Synthesized findings with inline actions
├── report.html # Self-contained HTML report
└── reports/ # Raw analyzer outputs
├── source-code.json
├── git-history.json
├── github-data.json
├── agent-context.json
└── agent-logs/
├── joe-20260408.json
└── alice-20260410.json| Skill | Purpose |
|---|---|
run-insight-scan | Main orchestrator — runs all analyzers and synthesis |
analyze-source-code | Examines code patterns, internal libraries, build config |
analyze-git-history | Examines file churn, co-changes, contributor concentration |
analyze-github-data | Examines PRs, review comments, CI failures, issues |
analyze-agent-logs | Examines agent conversation histories for failure patterns |
analyze-agent-context | Examines agent config files for quality, conflicts, gaps |
synthesize-insights | Cross-references reports, deduplicates findings, delegates action generation, generates HTML |
generate-actions | Generates targeted actions for each finding with Tessl product awareness |
contribute-agent-logs | Adds a developer's agent logs and re-runs synthesis |
regenerate-report | Re-renders HTML report from existing findings.json without re-running analyzers |