diff --git a/apps/web/home.ts b/apps/web/home.ts index b99249f..e79589a 100644 --- a/apps/web/home.ts +++ b/apps/web/home.ts @@ -3,7 +3,7 @@ import { LitElement, html, css } from 'lit'; const AGENT_PROMPT = `Add this MCP and follow the skill so you can render real UI forms for me instead of asking in chat. MCP: https://api.pagent.link/mcp -Skill: https://raw.githubusercontent.com/blockful/pagent/main/skills/pagent/SKILL.md`; +Skill: https://pagent.link/SKILL.md`; class HomePage extends LitElement { static properties = { diff --git a/apps/web/vercel.json b/apps/web/vercel.json index ce0e80d..36293d8 100644 --- a/apps/web/vercel.json +++ b/apps/web/vercel.json @@ -4,7 +4,13 @@ "installCommand": "cd ../.. && npm install", "outputDirectory": "dist", "framework": null, - "rewrites": [{ "source": "/(.*)", "destination": "/index.html" }], + "rewrites": [ + { + "source": "/SKILL.md", + "destination": "https://raw.githubusercontent.com/blockful/pagent/main/skills/pagent/SKILL.md" + }, + { "source": "/(.*)", "destination": "/index.html" } + ], "headers": [ { "source": "/(.*)",