Use case
Install scoring heuristics without running the API server:
- CI/CD: fail the build if content scores below threshold
- Pre-commit hooks: block low-quality drafts
- Notebooks: analyze content history in bulk
- Offline: zero network required
What it would look like
pip install contentforge-score
from contentforge import score_tweet, score_linkedin_post
result = score_tweet("Just shipped a feature.")
{"score": 38, "quality_gate": "FAILED", "suggestions": [...]}
Why feasible
Pure Python, zero ML deps (stdlib + regex only). Every scorer
is already self-contained. Straightforward extraction.
Interest
Raised by lacyslab on Reddit r/webdev launch day:
"if you do spin it out as a pip package i'd use it"
+1 or comment if useful to you.
Use case
Install scoring heuristics without running the API server:
What it would look like
pip install contentforge-score
from contentforge import score_tweet, score_linkedin_post
result = score_tweet("Just shipped a feature.")
{"score": 38, "quality_gate": "FAILED", "suggestions": [...]}
Why feasible
Pure Python, zero ML deps (stdlib + regex only). Every scorer
is already self-contained. Straightforward extraction.
Interest
Raised by lacyslab on Reddit r/webdev launch day:
"if you do spin it out as a pip package i'd use it"
+1 or comment if useful to you.