Files
Clawd BotandClaude Opus 4.6 ca9b510922 chore: align with upstream openclaw/openclaw and overlay local additions
- 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]>
2026-03-03 07:40:46 +01:00

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"