feat: add concise todo note cli

This commit is contained in:
Codex
2026-07-10 06:19:26 +02:00
parent 1510e800fa
commit 4e4fb61003
8 changed files with 490 additions and 24 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -eu
self_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
self_repo=$(CDPATH= cd -- "$self_dir/.." && pwd)
repo=${UNIDESK_REPO_ROOT:-$self_repo}
if [ ! -f "$repo/scripts/cli.ts" ]; then repo=/root/unidesk; fi
exec bun "$repo/scripts/cli.ts" "$@"