From hex-pack
Deploy Hex integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Hex-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy hex", "hex Vercel", "hex production deploy", "hex Cloud Run", "hex Fly.io".
npx claudepluginhub flight505/skill-forge --plugin hex-packThis skill is limited to using the following tools:
Deploy Hex orchestration services that trigger project runs from web endpoints or cron jobs.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Deploy Hex orchestration services that trigger project runs from web endpoints or cron jobs.
// api/refresh.ts
export default async function handler(req, res) {
const response = await fetch(`https://app.hex.tech/api/v1/project/${process.env.HEX_PROJECT_ID}/run`, {
method: 'POST',
headers: { 'Authorization': `Bearer ${process.env.HEX_API_TOKEN}`, 'Content-Type': 'application/json' },
body: JSON.stringify({ inputParams: req.body || {}, updateCacheResult: true }),
});
res.json(await response.json());
}
vercel env add HEX_API_TOKEN production
vercel env add HEX_PROJECT_ID production
gcloud run deploy hex-orchestrator \
--image gcr.io/$PROJECT_ID/hex-orchestrator \
--set-secrets=HEX_API_TOKEN=hex-api-token:latest \
--timeout=600