Skip to content

Commit 402e284

Browse files
Added config for Joggr (#2088)
* Added config for Joggr * pre-commit tidy --------- Co-authored-by: Mark Sze <mark@sze.family>
1 parent f001ad6 commit 402e284

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

jog.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 0.1
2+
pull:
3+
analysis:
4+
# The status check one of 'error' or 'warning'
5+
check: error
6+
confidence_threshold: 50 # Joggr will only suggest a change if the agent is at least 70% confident in its analysis.
7+
autofix:
8+
enabled: true
9+
confidence_threshold: 80 # Joggr will only open a PR if the agent is at least 80% confident it can apply the fix correctly.
10+
11+
# Recommendation guidelines for setting thresholds:
12+
# 50 → More suggestions, though some may be less relevant. Useful for public repos or docs where freshness is critical.
13+
# 75 → Fewer suggestions, but higher quality. Best for internal repos where only significant updates matter.
14+
15+
# How the agent interprets confidence scores:
16+
# 0–50 → Documentation is still valid; at most small details may have changed.
17+
# 51-70 → Partially relevant; core ideas are still correct, but some parts may be outdated.
18+
# 71–85 → Significant changes detected; accuracy of the documentation is questionable.
19+
# 86–100 → Documentation is largely outdated and misleading.
20+
21+
# Note: The agent starts from the assumption that documentation is correct unless it finds clear evidence otherwise.
22+
# Lower scores mean "likely still accurate," while higher scores mean "more likely outdated."

0 commit comments

Comments
 (0)