Skip to content

Commit 842ed7d

Browse files
committed
feat(crg): add crg-grade and crg-badge justfile recipes
1 parent 56739f8 commit 842ed7d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Justfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,3 +299,21 @@ help-me:
299299
@echo " https://github.com/hyperpolymath/julia-the-viper/issues/new"
300300
@echo ""
301301
@echo "Include the output of 'just doctor' in your report."
302+
303+
304+
# Print the current CRG grade (reads from READINESS.md '**Current Grade:** X' line)
305+
crg-grade:
306+
@grade=$$(grep -oP '(?<=\*\*Current Grade:\*\* )[A-FX]' READINESS.md 2>/dev/null | head -1); \
307+
[ -z "$$grade" ] && grade="X"; \
308+
echo "$$grade"
309+
310+
# Generate a shields.io badge markdown for the current CRG grade
311+
# Looks for '**Current Grade:** X' in READINESS.md; falls back to X
312+
crg-badge:
313+
@grade=$$(grep -oP '(?<=\*\*Current Grade:\*\* )[A-FX]' READINESS.md 2>/dev/null | head -1); \
314+
[ -z "$$grade" ] && grade="X"; \
315+
case "$$grade" in \
316+
A) color="brightgreen" ;; B) color="green" ;; C) color="yellow" ;; \
317+
D) color="orange" ;; E) color="red" ;; F) color="critical" ;; \
318+
*) color="lightgrey" ;; esac; \
319+
echo "[![CRG $$grade](https://img.shields.io/badge/CRG-$$grade-$$color?style=flat-square)](https://github.com/hyperpolymath/standards/tree/main/component-readiness-grades)"

0 commit comments

Comments
 (0)