Agent-Skills-Hub web-deploy-launcher
Prepare deployment configs, final checks, and pre-launch readiness artifacts for production release.
install
source · Clone the upstream repo
git clone https://github.com/0x-Professor/Agent-Skills-Hub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/0x-Professor/Agent-Skills-Hub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/web-deploy-launcher" ~/.claude/skills/0x-professor-agent-skills-hub-web-deploy-launcher && rm -rf "$T"
manifest:
skills/web-deploy-launcher/SKILL.mdsource content
Web Deploy Launcher
Objective
Prepare deployment configuration and final production readiness checks based on
project-config.json.
Required Workflow
- Read deployment target from
.project-config.json - Generate target-specific config:
- Vercel:
vercel.json - Netlify:
netlify.toml - Fly.io:
andfly.tomlDockerfile - Railway/Render:
plus deployment instructionsDockerfile - Cloudflare Pages:
wrangler.toml
- Vercel:
- Run production build checks (
ornpm run build
) and capture errors.python -m build - Run bundle size analysis (
,@next/bundle-analyzer
, orvite-bundle-analyzer
).source-map-explorer - Verify environment variable coverage in
and flag hardcoded secrets..env.example - Generate pre-deploy checklist covering HTTPS, monitoring, logging, backups, feature flags, and rollback plan.
- Generate
.DEPLOYMENT.md - Output deployment configs and
.deploy-report.json
Execution
python skills/web-deploy-launcher/scripts/deploy_launcher.py --input <workspace> --output <out.json> --format json
References
references/tools.md