deployment

Configure deployment targets and retrieve filtered runtime logs.

Updated Dec 10, 2025
One-click install
npx skills add https://github.com/KhaledMKhaled/FodaStore --skill deployment-khaledmkhaled
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment
Source: https://github.com/KhaledMKhaled/FodaStore/tree/main/.local/skills/deployment
Command: npx skills add https://github.com/KhaledMKhaled/FodaStore --skill deployment-khaledmkhaled

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Deployment problems stall shipping and can break a live app, while production errors are often hard to locate quickly; this skill helps you configure deployment and diagnose runtime failures by inspecting deployment logs.

Core Features & Use Cases

  • Configure production deployment settings: Choose a deployment target (autoscale, VM, scheduled, or static) and set run/build/publicDir parameters appropriately for your app type.
  • Guide publishing readiness: Use the workflow to publish once the project is validated as working.
  • Debug production issues with logs: Fetch and analyze deployment logs to find errors and pinpoint what went wrong in production.

Use Case: Your app deploys but fails at runtime; configure the correct deployment target, then fetch production logs filtered by an error pattern to determine the failing component (startup crash, missing module, runtime exception, etc.).

Quick Start

Tell the AI: "Configure deployment for my project for an autoscale web service, then fetch the last hour of deployment logs containing ERROR so I can see why it’s broken."

Frequently Asked Questions about deployment

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I debug production errors from deployment logs?

Debug production errors by retrieving runtime logs filtered by timestamps and message regex patterns. This isolates failing components like startup crashes or missing modules to pinpoint the root cause.

What's the best way to configure deployment targets for different app types?

Configuring deployment targets involves selecting an appropriate environment like autoscale, VM, scheduled, or static. You then set run, build, and publicDir parameters to match your specific application type for successful publishing.

Can I fetch server logs for a static site or scheduled job?

Yes, server log inspection applies to static sites, scheduled jobs, web services, and bots. You retrieve runtime logs filtered by timestamps and regex patterns to inspect production misbehavior across these configurations.

Why does my app deploy successfully but break at runtime?

An app may deploy but break at runtime due to missing modules, startup crashes, or runtime exceptions. Fetch production logs filtered by error patterns to diagnose the exact failing component causing the live app failure.

When do I need to set autoscale or VM parameters for publishing?

You need to set autoscale or VM parameters when configuring production deployments for dynamic applications, whereas static sites require publicDir settings. Defining these deployment settings ensures your app runs correctly in the target environment.