- Reset master to upstream/main (16,697 commits) - Overlay 2,271 local-only files (skills, tools, workspace, configs, apps) - Restore IDENTITY.md and USER.md templates - Build verified, gateway running, Discord working Co-Authored-By: Claude Opus 4.6 <[email protected]>
18 lines
488 B
Bash
18 lines
488 B
Bash
#!/bin/bash
|
|
# Read all home improvement projects from Google Sheet
|
|
|
|
SHEET_ID="1G6KEBQER_qBI3Hau8GUBrhEOf4FrHMtmKypPjD_8pBw"
|
|
CACHE_FILE="/tmp/husprojekt_liste.txt"
|
|
|
|
echo "📊 Fetching projects from Google Sheet..."
|
|
echo ""
|
|
|
|
# Read from MCP Google Workspace server
|
|
# sheets.getText returns formatted text directly (not JSON)
|
|
mcporter call --server google-workspace --tool sheets.getText \
|
|
spreadsheetId="$SHEET_ID" 2>&1 | \
|
|
tee "$CACHE_FILE"
|
|
|
|
echo ""
|
|
echo "✅ Cached to: $CACHE_FILE"
|