smithery/aiskillstore

deployment-build

Knowledge of the Vercel deployment pipeline, hybrid build scripts, and environment configuration.

Installation

$ npx skills add smithery/aiskillstore --skill deployment-build

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/aiskillstore · top by installs.

npx skills add smithery/aiskillstore

Browse all from smithery/aiskillstore

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 968 B
  • docs SUMMARY.md 121 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Deployment & Build Pipeline

Hybrid Build Process

Our project combines a Next.js root app with a Docusaurus documentation app.

  • Build Command: npm run build
  • Logic:

1. cd textbook && npm install && npm run build (Builds Docs) 2. npx shx mkdir -p public/docs (Creates output dir) 3. npx shx cp -r textbook/build/* public/docs/ (Copies static docs to Next.js public folder) 4. next build (Builds the main Next.js app)

Vercel Configuration

  • File: backend/vercel.json
  • Python Runtime: Used for the FastAPI backend (backend/main.py).
  • Routes: Rewrites all /api/* requests to the Python function.

Environment Variables

Ensure these are set in the Vercel Dashboard:

  • GEMINIAPIKEY
  • QDRANT_URL
  • QDRANTAPIKEY
  • BETTERAUTHSECRET
  • NEXTPUBLICAPP_URL