
Slay Processes
- 1 installs
- Updated May 26, 2026
- ericssonxd/couple-pwa
List and manage background processes managed by the SlayZone app via the slay CLI, including logs, kill, and live output streaming.
About
Lists SlayZone-managed background processes and lets you read logs, kill them, or follow live output over SSE. A developer uses it to inspect and control automation runners and background jobs while the SlayZone app is running.
- Follow streams live output via SSE or dumps full output for finished jobs
- Requires the SlayZone app running since data comes from its HTTP API
Slay Processes by the numbers
- 1 all-time installs (skills.sh)
- Ranked #467 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Jul 8, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ericssonxd/couple-pwa --skill slay-processesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 26, 2026 |
| Repository | ericssonxd/couple-pwa ↗ |
What it does
List and manage background processes managed by the SlayZone app via the slay CLI, including logs, kill, and live output streaming.
Files
Processes are background tasks managed by the SlayZone app — distinct from PTY terminal sessions (see slay-pty). These include automation runners, background jobs, and other managed child processes.
All process commands require the SlayZone app to be running, as data comes from the app's HTTP API.
Commands
slay processes list [--json]— list all managed processes.- Shows ID, status, label, command, PID, and start time
slay processes logs <id> [-n <lines>]— print the last N lines of a process's output buffer.- Default: 50 lines
slay processes kill <id>— kill a running process.
slay processes follow <id>— stream process output in real time.- For live processes: uses SSE (Server-Sent Events) and streams indefinitely until the process exits or the connection drops
- For already-finished processes: dumps the full output as plain text and returns immediately