This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| /** | |
| * Founder OS Skills Proxy — MCP Server | |
| * | |
| * A lightweight MCP server that wraps the Supabase Edge Function endpoints, | |
| * allowing team members to use proprietary skills from Claude Code without | |
| * ever seeing the skill content. | |
| * | |
| * Environment variables (set in Claude Code MCP config): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Founder OS Skills - Setup for Michael Yeung | |
| # Run: bash <(curl -sL URL) or save and run: bash yeung-setup.sh | |
| set -e | |
| echo "Setting up Founder OS Skills MCP server..." | |
| # Check prerequisites | |
| if ! command -v node &>/dev/null; then |