deploy-detection

Detect deployment type, target environment, and branching strategy for a repository.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/leonardoacosta/central-claude --skill deploy-detection
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-detection
Source: https://github.com/leonardoacosta/central-claude/tree/main/skills/deploy-detection
Command: npx skills add https://github.com/leonardoacosta/central-claude --skill deploy-detection

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Detects how a project is deployed and what branching and environment strategy it uses so automation and monitoring can choose correct health checks, routing, and merge strategies without guessing.

Core Features & Use Cases

  • Live detection: Executes the deploy-detect script to produce structured JSON with deploy_type, branch_strategy, prod_url, and diagnostic signals.
  • Deterministic routing: Uses deploy_type as the routing key for downstream dispatch and prescribes monitoring and health-check actions per deployment type.
  • Fallback handling: Defines clear rules for unknown results and recommends safe defaults for CI/CD orchestration and observability setup.
  • Use case: Determine whether to watch Vercel previews, poll Docker compose, or rely on git hooks before configuring monitors and merge gates.

Quick Start

Run the deploy-detect script and return the parsed JSON describing deployment type, branch strategy, and production URL for this repository.

Frequently Asked Questions about deploy-detection

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

FAQPage Schema
How do I detect the deployment type and production URL for my repository?

To detect the deployment type and production URL, you can run a script that analyzes repository signals and outputs structured JSON containing the deploy_type, branch_strategy, and prod_url for environments like Vercel or Docker.

What is the best way to determine branching strategy for automated health checks?

Determining branching strategy for health checks involves detecting deployment configurations like GitHub Actions or git hooks, which allows automation to apply correct monitoring rules and merge gates without guessing the environment setup.

Does deployment detection work with both Vercel previews and Docker compose?

Yes, deployment detection works with Vercel previews and Docker compose by analyzing target environments and branching strategies, enabling deterministic routing for monitoring agents and health checks across different deployment types.

How do I handle unknown results when detecting deployment configurations?

Handling unknown deployment detection results involves applying clear fallback rules that recommend safe defaults for CI/CD orchestration and observability setup, ensuring the structured JSON output includes an optional error key while preserving exit semantics.

Why use automated deploy detection before configuring monitors and merge gates?

Automated deploy detection identifies how a project is deployed and its environment strategy, allowing downstream automation to choose correct health checks, routing, and merge strategies without manual Guessing or misconfigured monitoring agents.