What problem does it solve?
This Skill removes friction from deploying and managing small web applications by automating file placement, dependency installation, port assignment, and process management so developers can publish apps quickly without manual server setup.
Core Features & Use Cases
- Create and deploy apps: Write app files to user/apps/<name>, save metadata, install dependencies if present, and start the app using PM2.
- Manage lifecycle: Update existing apps, list deployed apps with status, and delete apps (stops PM2 process and removes files).
- Multi-runtime support: Supports static sites, Node.js servers (server.js), and Python servers (server.py), running npm or pip installs when package.json or requirements.txt are detected.
- Use Case: Rapidly publish a portfolio site, a small API, or a demo dashboard on a local host or under a configured base domain as a subdomain.
Quick Start
Create and deploy a new app named my-app with a simple index.html and style.css and start it so it becomes reachable at its assigned URL.