Add helper scripts and templates
- load-context.sh: Quickly display latest context - TEMPLATE.md: Standard format for new sessions - Ready for future projects
This commit is contained in:
15
load-context.sh
Executable file
15
load-context.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# Usage: ./load-context.sh [project-name]
|
||||
# Loads the latest conversation context for a project
|
||||
|
||||
PROJECT=${1:-"mql-trading-bots"}
|
||||
LATEST=$(ls -t 2*.md 2>/dev/null | head -1)
|
||||
|
||||
if [ -z "$LATEST" ]; then
|
||||
echo "No context files found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "=== LATEST CONTEXT: $LATEST ==="
|
||||
echo ""
|
||||
cat "$LATEST"
|
||||
Reference in New Issue
Block a user