Added QA process - subagent, md template, scorecards.

This commit is contained in:
2026-04-11 06:31:01 -04:00
parent 40c8b0f132
commit 794de9c721
11 changed files with 740 additions and 6 deletions

24
scripts/push.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
if [[ -z "$(git status --porcelain)" ]]; then
echo "Nothing to commit."
exit 0
fi
echo "Current changes:"
git status --short
echo ""
read -rp "Commit note: " note
if [[ -z "$note" ]]; then
echo "Aborted — empty commit message."
exit 1
fi
git add -A
git commit -m "$note"
git push -u origin main