Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:54:31 +08:00
commit f1496d1d0f
23 changed files with 2041 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/bash
# Initialize a new feature implementation session directory
# Usage: ./init_session.sh <feature-slug>
set -e
if [ -z "$1" ]; then
echo "Error: Feature slug required"
echo "Usage: $0 <feature-slug>"
exit 1
fi
SLUG="$1"
TIMESTAMP=$(date +"%Y%m%d")
SESSION_DIR="docs/sessions/${TIMESTAMP}-${SLUG}"
# Create session directory
mkdir -p "$SESSION_DIR"
echo "✅ Session initialized: $SESSION_DIR"