templates/.claude/skills/omcustom-web/SKILL.md
Control and inspect the built-in Web UI (packages/serve) — start, stop, status, open
npx skillsauth add baekenough/oh-my-customcode omcustom:webInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Interactive control for the built-in Web UI server (packages/serve).
| Argument | Action |
|----------|--------|
| status (default) | Show server status (PID, port, URL) |
| start | Start the Web UI server in background |
| stop | Stop the running Web UI server |
| open | Open the Web UI in the default browser |
Run these checks via Bash:
PORT=${OMCUSTOM_PORT:-4321}
PID_FILE="$HOME/.omcustom-serve.pid"
PID=$(cat "$PID_FILE" 2>/dev/null)
# Process alive?
if [ -n "$PID" ] && kill -0 "$PID" 2>/dev/null; then
STATUS="running"
else
STATUS="stopped"
# Clean stale PID file
[ -f "$PID_FILE" ] && rm "$PID_FILE"
fi
# Port check
PORT_PID=$(lsof -ti :$PORT 2>/dev/null | head -1)
echo "STATUS=$STATUS PID=$PID PORT=$PORT PORT_PID=$PORT_PID"
Web UI Control
─────────────
Status: ● Running (PID {PID})
URL: http://localhost:{PORT}
Log: ~/.omcustom-serve.log
or
Web UI Control
─────────────
Status: ○ Stopped
Port: {PORT} (free)
| Subcommand | Action |
|------------|--------|
| status | Display status from Step 2, then exit |
| start | If stopped → run omcustom serve via Bash. If running → show URL |
| stop | If running → run omcustom serve-stop via Bash. If stopped → inform user |
| open | If running → open http://localhost:{PORT} (macOS). If stopped → ask to start first |
Before start, check if port is already occupied by another process:
PORT_PID=$(lsof -ti :$PORT 2>/dev/null | head -1)
if [ -n "$PORT_PID" ]; then
PROC=$(ps -p $PORT_PID -o comm= 2>/dev/null)
echo "Port $PORT is occupied by $PROC (PID $PORT_PID)"
fi
If occupied by a non-serve process, warn the user and suggest --port option.
When called without arguments (/omcustom:web):
/omcustom:web start to start the server"/omcustom:web open to open in browser"development
Generate and maintain a persistent codebase wiki — LLM-built interlinked markdown knowledge base (Karpathy LLM Wiki pattern)
development
Use the project wiki as RAG knowledge source — search wiki pages to answer codebase questions before exploring raw files
tools
Analyze task trajectories to propose reusable SKILL.md candidates from successful patterns
data-ai
hada.io RSS feed monitoring for AI agent/harness articles with automated /scout analysis