workflows

Manage persistent application workflows with lifecycle control and log access.

Updated Jan 6, 2026
One-click install
npx skills add https://github.com/bcwgames/FNaF-TVE --skill workflows-bcwgames
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflows
Source: https://github.com/bcwgames/FNaF-TVE/tree/main/Five-Nights-At-Freddys-The-Virtual-Experience/.local/skills/workflows
Command: npx skills add https://github.com/bcwgames/FNaF-TVE --skill workflows-bcwgames

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Managing long-running processes and background services within a project, automatically restarting after installs and exposing logs when active.

Core Features & Use Cases

  • Binds a shell command to a persistent workflow that runs until stopped.
  • Automatically restarts after package or module installation and supports monitoring via logs.
  • Useful for web servers, background services, TUIs, and other persistent tasks.

Quick Start

Configure a workflow to start your main server and keep it running from npm run dev.

Frequently Asked Questions about workflows

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage persistent background daemons and web servers in a development environment?

To manage persistent background daemons, you can bind a shell command to a persistent workflow that runs until explicitly stopped. This supports lifecycle management like start, restart, and removal for active background processes.

Why does my web server process stop running after installing new npm packages?

Web server processes often stop after installations due to environment changes. This workflow orchestration automatically restarts persistent processes after package or module installations, ensuring continuous uptime during development.

Can I bind an interactive terminal or TUI to a persistent workflow?

Yes, you can bind an interactive terminal or TUI to a persistent workflow. The orchestration tool supports persistent tasks across development and production environments, allowing you to manage interactive sessions alongside background services.

What is the best way to access logs for active background services?

The best way to access logs for active background services is through the workflow's built-in log monitoring. It exposes logs for active workflows, allowing you to monitor persistent processes and track their output during execution.

Does this workflow orchestration support automatic restarts for long-running processes?

Yes, this workflow orchestration supports automatic restarts for long-running processes. It automatically restarts persistent workflows after installations and provides lifecycle management to manually start, restart, or remove tasks as needed.

How do I configure a workflow to keep my main dev server running continuously?

You can configure a workflow to keep your main dev server running by binding your npm run dev command to a persistent workflow. This ensures the process remains active and automatically restarts after module installations.