initial creation of my full focus app

This commit is contained in:
aj.siegel
2025-12-12 16:00:11 -05:00
commit 0eeb41ed07
8 changed files with 339 additions and 0 deletions

37
full-focus.sh Executable file
View File

@@ -0,0 +1,37 @@
#!/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