initial creation of my full focus app
This commit is contained in:
37
full-focus.sh
Executable file
37
full-focus.sh
Executable 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
|
||||
Reference in New Issue
Block a user