Node Server Orchestrator — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Node Server Orchestrator (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A CLI tool for orchestrating Node.js development servers across multiple projects. Start, stop, and monitor backend, frontend, database, and other Node.js-based development servers with a unified interface.
start <server-id> - Start a specific project serverstop <server-id> - Stop a running serverstatus <server-id> - Get detailed server status with uptimelist - List all configured serversstart-all - Start all servers simultaneouslystop-all - Stop all running serversnpm install -g node-server-orchestratorOr use directly:
npx node-server-orchestratorCreate a configuration file at ~/.config/node-server-orchestrator/config.json:
{
"projects": {
"my-backend": {
"name": "My Backend API",
"type": "backend",
"command": ["npm", "run", "dev"],
"cwd": "/path/to/my-project",
"port": 3000,
"healthPath": "/health",
"startupTimeout": 10000,
"description": "My project backend server"
},
"my-frontend": {
"name": "My Frontend App",
"type": "frontend",
"command": ["npm", "start"],
"cwd": "/path/to/my-project/frontend",
"port": 3001,
"healthPath": "/",
"startupTimeout": 15000,
"description": "My project frontend development server"
}
}
}# List all available servers
node-server-orchestrator list
# Start a specific server
node-server-orchestrator start example-backend
# Stop a specific server
node-server-orchestrator stop example-backend
# Check server status
node-server-orchestrator status example-backend
# Start all servers
node-server-orchestrator start-all
# Stop all servers
node-server-orchestrator stop-all
# Show help
node-server-orchestrator --help 📋 Available Servers:
My Backend API (my-backend) - My project backend server
My Frontend App (my-frontend) - My project frontend development server ✅ My Backend API started successfully
📊 PID: 12345
🌐 Port: 3000
⏰ Started: 2:30:45 PM 🟢 My Backend API is running
📊 PID: 12345
🌐 Port: 3000
⏰ Started: 2:30:45 PM
⏱️ Uptime: 5m 23sEach server configuration supports:
name: Human-readable server nametype: Server type (backend, frontend, database, etc.)command: Command array to start the servercwd: Working directory for the serverport: Port number for health checkshealthPath: HTTP path for health checksstartupTimeout: Maximum startup wait time in millisecondsdescription: Server descriptionServers are considered healthy when they respond with HTTP 200/304 on the specified port and health path.
The CLI tool includes comprehensive security measures:
npm, node, yarn, pnpm, bun) can be executedshell: false to prevent command injection../ directory traversal in configuration filesThe MCP server provides clear error messages for:
Contributions are welcome! Please feel free to submit pull requests or open issues for bugs and feature requests.
git clone https://github.com/swong-fcsllc/node-server-orchestrator.git
cd node-server-orchestrator
npm install
npm run build
npm testMIT License - see LICENSE file for details.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.