โ† All skills
Tencent SkillHub ยท Developer Tools

toolguard-daemon-control

Manage macOS launchd user agents to start, stop, restart, check status, and access logs of persistent background services without sudo.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage macOS launchd user agents to start, stop, restart, check status, and access logs of persistent background services without sudo.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/logs.sh, scripts/uninstall.sh, scripts/install.sh, scripts/status.sh, scripts/list.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

toolguard-daemon-control

Manage any executable as a persistent macOS launchd user agent.

Overview

Services are installed as ~/Library/LaunchAgents/ai.toolguard.<name>.plist and run as user-level launch agents. They auto-restart on failure and log to ~/Library/Logs/toolguard/.

Scripts

All scripts are in scripts/ relative to this skill's directory. Run them with bash.

install.sh โ€” Create and start a service

bash scripts/install.sh <service-name> <command> [args...] [--workdir <dir>] [--env KEY=VALUE ...] service-name: Short identifier (e.g., toolguard-proxy). Used in plist filename and log paths. command: Absolute path to the executable. args: Arguments passed to the command. --workdir <dir>: Working directory for the process (default: $HOME). --env KEY=VALUE: Environment variables (repeatable). Example: bash scripts/install.sh toolguard-proxy /usr/local/go/bin/go run ./cmd/server --config toolguard.dev.yaml --workdir ~/Documents/toolguard

uninstall.sh โ€” Stop and remove a service

bash scripts/uninstall.sh <service-name> Unloads the service and removes the plist file. Logs are preserved.

status.sh โ€” Check service status

bash scripts/status.sh [service-name] Without arguments, lists all ai.toolguard.* services. With a name, shows detailed status for that service.

logs.sh โ€” View service logs

bash scripts/logs.sh <service-name> [--follow] [--lines <n>] Shows stdout and stderr logs. Default: last 50 lines.

list.sh โ€” List all managed services

bash scripts/list.sh Lists all installed ai.toolguard.* services with their running state.

Notes

Services run as the current user (no sudo required). Services auto-restart on crash (KeepAlive = true). To run a Go project, use the compiled binary path or wrap in a shell script โ€” launchd does not support go run directly. Use go build first, then point to the binary. Log directory: ~/Library/Logs/toolguard/<service-name>/ Plist location: ~/Library/LaunchAgents/ai.toolguard.<service-name>.plist

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/install.sh Scripts
  • scripts/list.sh Scripts
  • scripts/logs.sh Scripts
  • scripts/status.sh Scripts
  • scripts/uninstall.sh Scripts