Skill

ports

by majiayu000

AI Summary

A debugging tool that identifies which processes are using Shella ports (47100-47199), helping developers quickly diagnose port conflicts and understand what services are running. Essential for anyone working with Claude Code and local development environments.

Install

# Add to your project root as SKILL.md
curl -o SKILL.md "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/ports/SKILL.md"

Description

Check what's using shella ports (47100-47199). Use when debugging port conflicts or seeing what's running.

Shella Port Check

Show what processes are using ports in the shella range.

Port Ranges

• 47100: Daemon API • 47101-47199: Plugin instances • 47200: Standalone plugin dev (npm run dt dev plugin <name>)

Command

`bash lsof -i :47100-47200 -P -n 2>/dev/null | grep LISTEN `

Output

Show a table of: • Port number • Process name • PID • What it likely is (daemon, plugin instance, standalone dev) If nothing is listening, say so. If there are unexpected processes (not node), flag them as potential conflicts.

Quality Score

B

Good

84/100

Standard Compliance75
Documentation Quality82
Usefulness78
Maintenance Signal100
Community Signal92
Scored Yesterday

GitHub Signals

Stars100
Forks15
Issues1
UpdatedYesterday
View on GitHub

Trust & Transparency

Open Source — MIT

Source code publicly auditable

Verified Open Source

Hosted on GitHub — publicly auditable

Actively Maintained

Last commit Yesterday

100 stars — Growing Community

15 forks

My Fox Den

Community Rating

Works With

Claude Code