chore: add AGENTS.md, helper scripts, codex templates, and CI

This commit is contained in:
JiWoong Sul
2025-09-07 19:33:11 +09:00
parent 9f1d29c99d
commit 2a90e7c377
6 changed files with 210 additions and 0 deletions

19
scripts/check.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -euo pipefail
echo "==> Formatting check"
if command -v dart >/dev/null 2>&1; then
dart format --output=none --set-exit-if-changed .
else
echo "dart not found in PATH" >&2
exit 1
fi
echo "==> Static analysis"
flutter analyze
echo "==> Tests"
flutter test
echo "\nAll checks passed."