Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gittensory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ gate:
duplicates: block # block | advisory | off — block obvious duplicate PRs
readiness:
mode: advisory # advisory | off — readiness score is informational and never blocks the Gate
minScore: 60
minScore: 40 # lowered from 60: 73% false-positive rate showed PRs scoring 40-59 merge freely
# aiReview: # opt-in AI maintainer review (off by default; needs the AI flags enabled)
# mode: advisory # block | advisory | off — block only blocks on a dual-model consensus defect
# byok: false # use a maintainer Anthropic/OpenAI key for the write-up; consensus stays on the free/default reviewer
Expand Down
8 changes: 4 additions & 4 deletions src/signals/slop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export const SLOP_RUBRIC_MARKDOWN = [
"# Gittensory slop assessment rubric",
"",
"- `clean`: 0",
"- `low`: 1-24",
"- `elevated`: 25-59",
"- `low`: 1-30",
"- `elevated`: 31-59",
"- `high`: 60-100",
"",
"Current deterministic signals:",
Expand Down Expand Up @@ -506,8 +506,8 @@ function ensurePublicSafeText(text: string, fallback: string): string {
// — weigh 15. Identical metadata always yields an identical band (see golden fixtures).
function slopBandFor(slopRisk: number): SlopBand {
if (slopRisk <= 0) return "clean";
if (slopRisk < 25) return "low";
if (slopRisk < 60) return "elevated";
if (slopRisk < 31) return "low"; // raised from 25: a single strong signal (30pts) is low, not elevated
if (slopRisk < 60) return "elevated"; // elevated now requires multi-signal evidence (strong+weak ≥ 45, or 3×weak = 45)
return "high";
}

Expand Down
Loading