workflows

Manages the complete lifecycle of containerized applications, from build to deployment.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/CRAJKUMARSINGH/M3_Bridge --skill workflows-crajkumarsingh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflows
Source: https://github.com/CRAJKUMARSINGH/M3_Bridge/tree/main/.local/skills/workflows
Command: npx skills add https://github.com/CRAJKUMARSINGH/M3_Bridge --skill workflows-crajkumarsingh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Workflows automate and manage long-running shell-based processes, enabling persistent background tasks like web servers and services to run with automatic tracking and restart behavior.

Core Features & Use Cases

  • Workflows run until explicitly stopped and are automatically tracked by the system.
  • Auto-restart after package installation and module installation to keep services up-to-date.
  • Logs are accessible when a workflow is running, aiding monitoring and debugging.
  • Use cases include starting, stopping, restarting, and removing applications, or managing port-bound services in development or deployments.

Quick Start

Configure a workflow with a command, then start it to keep a persistent service running.

Frequently Asked Questions about workflows

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

FAQPage Schema
How do I keep a background web server running persistently?

You can keep a background web server running persistently by configuring a workflow that automatically tracks the process and provides auto-restart behavior. The workflow runs until explicitly stopped, ensuring your persistent service remains active.

What is the best way to manage long-running shell processes?

The best way to manage long-running shell processes is by using workflow orchestration to start, stop, and monitor them. This approach provides automatic tracking and restart behavior for persistent background tasks like services and web servers.

How do I restart a persistent background service after installing packages?

To restart a persistent background service after installing packages, workflows offer auto-restart functionality triggered automatically after package or module installation. You can also manually trigger a restart using the restartWorkflow API.

Can I view logs for a running background process?

Yes, you can view logs for a running background process. Logs are accessible while a workflow is running, which aids in monitoring the persistent service and debugging issues in your long-running tasks.

How do I configure and monitor port-bound services in development?

You can configure and monitor port-bound services in development by setting up a workflow with a specific command. Once started, the workflow tracks the process, monitors its status, and manages its lifecycle until you explicitly stop it.

When should I not use workflow orchestration for background tasks?

You should not use workflow orchestration for short-lived or one-off commands, as it is designed for long-running application workflows like web servers and persistent services that require continuous tracking and auto-restart behavior.