# Send toolguard-daemon-control to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "toolguard-daemon-control",
    "name": "toolguard-daemon-control",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/johnnylambada/toolguard-daemon-control",
    "canonicalUrl": "https://clawhub.ai/johnnylambada/toolguard-daemon-control",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/toolguard-daemon-control",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=toolguard-daemon-control",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/logs.sh",
      "scripts/uninstall.sh",
      "scripts/install.sh",
      "scripts/status.sh",
      "scripts/list.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "toolguard-daemon-control",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T19:17:30.565Z",
      "expiresAt": "2026-05-19T19:17:30.565Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=toolguard-daemon-control",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=toolguard-daemon-control",
        "contentDisposition": "attachment; filename=\"toolguard-daemon-control-0.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "toolguard-daemon-control"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/toolguard-daemon-control"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/toolguard-daemon-control",
    "downloadUrl": "https://openagent3.xyz/downloads/toolguard-daemon-control",
    "agentUrl": "https://openagent3.xyz/skills/toolguard-daemon-control/agent",
    "manifestUrl": "https://openagent3.xyz/skills/toolguard-daemon-control/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/toolguard-daemon-control/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: johnnylambada
- Version: 0.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T19:17:30.565Z
- Expires at: 2026-05-19T19:17:30.565Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/toolguard-daemon-control)
- [Send to Agent page](https://openagent3.xyz/skills/toolguard-daemon-control/agent)
- [JSON manifest](https://openagent3.xyz/skills/toolguard-daemon-control/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/toolguard-daemon-control/agent.md)
- [Download page](https://openagent3.xyz/downloads/toolguard-daemon-control)