daemon-send-command

Send commands to the AutomateLinux daemon via a Unix Domain Socket.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/yanivprusman/automateLinux --skill daemon-send-command
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: daemon-send-command
Source: https://github.com/yanivprusman/automateLinux/tree/main/.agent/skills/daemon-send-command
Command: npx skills add https://github.com/yanivprusman/automateLinux --skill daemon-send-command

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides a simple interface to issue commands to the AutomateLinux daemon over a Unix Domain Socket, enabling quick automation and testing workflows.

Core Features & Use Cases

  • Direct command delivery to the daemon via the d helper function or the daemon binary.
  • Supports common operations (e.g., ping, listPorts, setPort, simulateInput, startApp) in both interactive and scripted scenarios.
  • Use Case: automate a sequence of daemon actions in a local development environment or during system setup.

Quick Start

Use the d shorthand to send commands to the daemon, e.g.:

  • d ping
  • d listPorts
  • d setPort --key pt --value 3001 Or run the binary directly:
  • ./daemon send ping

Frequently Asked Questions about daemon-send-command

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

FAQPage Schema
How do I send commands to a daemon using a Unix domain socket from the CLI?

You can send commands to a daemon over a Unix domain socket using a CLI helper function like 'd ping' or by executing the daemon binary directly with 'send' arguments.

What operations can I automate with a Unix domain socket daemon interface?

Supported operations include ping, listPorts, setPort, simulateInput, and startApp, allowing you to automate sequences of daemon actions in local development and testing environments.

Can I use shell commands to automate daemon actions in scripted scenarios?

Yes, the CLI interface supports both interactive usage and scripted shell automation, enabling you to execute daemon operations seamlessly during system setup or testing workflows.

What is the best way to configure a daemon port using command line arguments?

You can set the daemon port by passing the appropriate arguments to the helper function, such as 'd setPort --key pt --value 3001', or by invoking the daemon binary directly.

Does the daemon command interface require any external dependencies?

No external dependencies are required to use this daemon command interface, as it operates independently through the 'd' helper function or the direct daemon binary for command delivery.

How do I verify that a local daemon is responding to CLI commands?

You can verify daemon responsiveness by sending a 'ping' command through the CLI helper function, such as 'd ping', or by running the daemon binary directly with a ping argument.