6 comments

[ 2.8 ms ] story [ 24.5 ms ] thread
Hi HN!

Maintainers are increasingly dealing with large volumes of low-context PRs, especially as AI coding tools make it easier to generate changes without the surrounding intent.

Many repos already define contribution expectations in places like .cursorrules, CONTRIBUTING.md, or internal guidelines but those rules rarely translate into something enforceable during review.

We built Watchflow to bridge that gap: an open-source GitHub check that translates repository guidelines into enforceable validation logic that runs on every PR.

The model is intentionally hybrid:

- ~95% deterministic validators (fast, predictable, pure Python)

- Optional LLM checks for semantic cases like description / diff alignment

- LLM layer fails open so merges never block on model issues

Example rules:

- Require a linked issue

- Require CODEOWNERS review

- Block PRs above a LOC threshold

- Ensure PR descriptions align with code changes

- Validate contribution patterns defined in .cursorrules or agent guidelines

The goal is to close the loop between repository intent -> code diff -> enforceable governance.

Repo: https://github.com/warestack/watchflow

If there are review patterns you’re seeing that aren’t covered yet, happy to turn them into new validators!

Is it self-hostable for private repos?
This is a great approach - catching rule violations before merge rather than relying on developers to remember them. The biggest challenge with .cursorrules adoption at scale is consistency across repos.

I maintain a collection of .cursorrules for 16+ frameworks (React, Next.js, FastAPI, Go, etc.) that could work as a baseline for these kinds of checks: https://github.com/survivorforge/cursor-rules

Curious how you handle framework-specific rules that only apply to certain parts of a monorepo?

Is it free for open-source repos? It could be really useful to lower the noise from new contributors not following contribution guidelines.