mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-16 12:14:52 +00:00
16 lines
431 B
Bash
Executable file
16 lines
431 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
cd "$REPO_ROOT"
|
|
|
|
echo "==> Installing dependencies..."
|
|
bun install
|
|
|
|
echo "==> Running validate-daily-note locally..."
|
|
bun run apps/cli/src/index.ts run \
|
|
--workspace-dir .github/agents \
|
|
--source craft-public \
|
|
--output-format stream-json \
|
|
"Read today's daily note from the Craft source and print its contents. Do not modify anything."
|