feat: atomic extract-and-connect + stale PR monitor + response audit #4

Merged
m3taversal merged 70 commits from epimetheus/atomic-connect-and-stale-monitor into main 2026-03-30 11:03:35 +00:00
Showing only changes of commit 4b5c5841ce - Show all commits

View file

@ -414,6 +414,10 @@ def _classify_commit_type(diff: str) -> str:
Knowledge: claims, decisions, core, foundations (full CI weight)
Pipeline: inbox, entities, agents, archive (zero CI weight)
Mixed PRs (knowledge + pipeline files) classify as 'knowledge'
if a PR adds a claim, it gets attribution even if it also moves
source files. Knowledge takes priority. (Ganymede review)
"""
knowledge_prefixes = ("domains/", "core/", "foundations/", "decisions/")
pipeline_prefixes = ("inbox/", "entities/", "agents/")