port-conflict-resolution

Installation
SKILL.md

Port Conflict Resolution

Overview

Patterns for resolving port conflicts when starting development servers. Check port availability, kill conflicting processes, and use fallback strategies.

Check Port Availability Before Starting Server

Pattern 1: Check Port Before Start

Verify port is available before starting server:

# Check if port is in use
lsof -i :3000
Installs
7
GitHub Stars
2
First Seen
Mar 18, 2026
port-conflict-resolution — pmarashian/cursor-agent-skills