Detect project type and recommend deployment platform. Use when deploying projects, choosing hosting platforms, analyzing project structure, or when user mentions deployment, platform selection, MCP servers, APIs, frontend apps, static sites, FastMCP Cloud, DigitalOcean, Vercel, Hostinger, Netlify, or Cloudflare.
/plugin marketplace add vanman2024/dev-lifecycle-marketplace/plugin install deployment@dev-lifecycle-marketplaceThis skill is limited to using the following tools:
examples/advanced-monorepo-detection.mdexamples/basic-detection.mdexamples/error-handling.mdexamples/integration-with-deploy-commands.mdexamples/platform-recommendation-flow.mdscripts/analyze-deployment-config.shscripts/detect-framework.shscripts/detect-project-type.shscripts/recommend-platform.shscripts/validate-platform-requirements.shtemplates/detection-rules.jsontemplates/framework-signatures.jsontemplates/platform-config/digitalocean.jsontemplates/platform-config/fastmcp-cloud.jsontemplates/platform-config/vercel.jsontemplates/platform-routing-rules.jsonAutomatically detect project type and recommend optimal deployment platforms based on project characteristics, frameworks, and hosting requirements.
This skill provides comprehensive project detection and platform recommendation capabilities:
scripts/detect-project-type.sh
mcp-server, api, frontend, static-site, or monorepobash scripts/detect-project-type.sh <project-path>scripts/detect-framework.sh
bash scripts/detect-framework.sh <project-path>scripts/recommend-platform.sh
bash scripts/recommend-platform.sh <project-path>scripts/validate-platform-requirements.sh
bash scripts/validate-platform-requirements.sh <project-path> <platform>scripts/analyze-deployment-config.sh
bash scripts/analyze-deployment-config.sh <project-path>templates/detection-rules.json
templates/platform-routing-rules.json
templates/framework-signatures.json
templates/platform-config/fastmcp-cloud.json
templates/platform-config/digitalocean.json
templates/platform-config/vercel.json
examples/basic-detection.md
examples/advanced-monorepo-detection.md
examples/platform-recommendation-flow.md
examples/error-handling.md
examples/integration-with-deploy-commands.md
/deployment:deploy command# Detect project type
PROJECT_TYPE=$(bash scripts/detect-project-type.sh /path/to/project)
echo "Detected: $PROJECT_TYPE"
# Detect framework and version
FRAMEWORK=$(bash scripts/detect-framework.sh /path/to/project)
echo "Framework: $FRAMEWORK"
# Get platform recommendation
PLATFORM=$(bash scripts/recommend-platform.sh /path/to/project)
echo "Recommended: $PLATFORM"
# Validate project for specific platform
bash scripts/validate-platform-requirements.sh /path/to/project vercel
# Full detection and recommendation
cd /path/to/project
# Step 1: Detect type
PROJECT_TYPE=$(bash scripts/detect-project-type.sh .)
echo "Project Type: $PROJECT_TYPE"
# Step 2: Detect framework
FRAMEWORK=$(bash scripts/detect-framework.sh .)
echo "Framework: $FRAMEWORK"
# Step 3: Recommend platform
PLATFORM=$(bash scripts/recommend-platform.sh .)
echo "Recommended Platform: $PLATFORM"
# Step 4: Validate requirements
bash scripts/validate-platform-requirements.sh . "$PLATFORM"
MCP Server
.mcp.json or MCP manifestAPI
Frontend
Static Site
Monorepo
FastMCP Cloud
DigitalOcean App Platform
Vercel
Hostinger / Netlify / Cloudflare Pages
This skill integrates with:
/deployment:deploy - Automatic platform selection/deployment:validate - Pre-deployment validation/deployment:configure - Platform-specific configurationSkill Location: /home/gotime2022/.claude/plugins/marketplaces/ai-dev-marketplace/plugins/deployment/skills/platform-detection/ Version: 1.0.0
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.