38 lines
1017 B
Bash
Executable File
38 lines
1017 B
Bash
Executable File
#!/bin/bash
|
|
# Full Focus CLI - Run your planning commands from the terminal
|
|
|
|
VAULT_DIR="/Users/aj.siegel/Projects/FullFocus"
|
|
|
|
case "$1" in
|
|
daily)
|
|
echo "🌅 Generating today's daily plan..."
|
|
cd "$VAULT_DIR" && claude -p "/daily-template ${*:2}" --permission-mode bypassPermissions
|
|
;;
|
|
|
|
evening)
|
|
echo "🌙 Preparing tomorrow's plan..."
|
|
cd "$VAULT_DIR" && claude -p "/evening-prep ${*:2}" --permission-mode bypassPermissions
|
|
;;
|
|
|
|
weekly)
|
|
echo "📅 Creating weekly plan..."
|
|
cd "$VAULT_DIR" && claude -p "/weekly-template ${*:2}" --permission-mode bypassPermissions
|
|
;;
|
|
|
|
*)
|
|
echo "Full Focus Planning CLI"
|
|
echo ""
|
|
echo "Usage: full-focus <command> [args]"
|
|
echo ""
|
|
echo "Commands:"
|
|
echo " daily Generate today's daily plan"
|
|
echo " evening Prepare tomorrow's plan"
|
|
echo " weekly Create weekly plan"
|
|
echo ""
|
|
echo "Examples:"
|
|
echo " full-focus daily"
|
|
echo " full-focus evening"
|
|
echo " full-focus weekly"
|
|
;;
|
|
esac
|