# Send Nomad 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": "nomad",
    "name": "Nomad",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/danfedick/nomad",
    "canonicalUrl": "https://clawhub.ai/danfedick/nomad",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/nomad",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nomad",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "nomad",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T20:10:19.355Z",
      "expiresAt": "2026-05-07T20:10:19.355Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nomad",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nomad",
        "contentDisposition": "attachment; filename=\"nomad-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "nomad"
      },
      "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/nomad"
    },
    "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/nomad",
    "downloadUrl": "https://openagent3.xyz/downloads/nomad",
    "agentUrl": "https://openagent3.xyz/skills/nomad/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nomad/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nomad/agent.md"
  }
}
```
## Documentation

### Nomad Skill

Query HashiCorp Nomad clusters using the nomad CLI. Read-only operations for monitoring and troubleshooting.

### Requirements

nomad CLI installed
NOMAD_ADDR environment variable set (or defaults to http://127.0.0.1:4646)
NOMAD_TOKEN if ACLs are enabled

### Jobs

List all jobs:

nomad job status

Get job details:

nomad job status <job-id>

Job history:

nomad job history <job-id>

Job deployments:

nomad job deployments <job-id>

### Allocations

List allocations for a job:

nomad job allocs <job-id>

Allocation details:

nomad alloc status <alloc-id>

Allocation logs (stdout):

nomad alloc logs <alloc-id>

Allocation logs (stderr):

nomad alloc logs -stderr <alloc-id>

Follow logs:

nomad alloc logs -f <alloc-id>

### Nodes

List all nodes:

nomad node status

Node details:

nomad node status <node-id>

Node allocations:

nomad node status -allocs <node-id>

### Evaluations

List recent evaluations:

nomad eval list

Evaluation details:

nomad eval status <eval-id>

### Services

List services (Nomad native service discovery):

nomad service list

Service info:

nomad service info <service-name>

### Namespaces

List namespaces:

nomad namespace list

### Variables

List variables:

nomad var list

Get variable:

nomad var get <path>

### Cluster

Server members:

nomad server members

Agent info:

nomad agent-info

### JSON Output

Add -json to most commands for JSON output:

nomad job status -json
nomad node status -json
nomad alloc status -json <alloc-id>

### Filtering

Use -filter for expression-based filtering:

nomad job status -filter='Status == "running"'
nomad node status -filter='Status == "ready"'

### Find failed allocations

nomad job allocs <job-id> | grep -i failed

### Get logs from latest allocation

nomad alloc logs $(nomad job allocs -json <job-id> | jq -r '.[0].ID')

### Check cluster health

nomad server members
nomad node status

### Environment Variables

NOMAD_ADDR — Nomad API address (default: http://127.0.0.1:4646)
NOMAD_TOKEN — ACL token for authentication
NOMAD_NAMESPACE — Default namespace
NOMAD_REGION — Default region
NOMAD_CACERT — Path to CA cert for TLS
NOMAD_CLIENT_CERT — Path to client cert for TLS
NOMAD_CLIENT_KEY — Path to client key for TLS

### Notes

This skill is read-only. No job submissions, stops, or modifications.
Use nomad-tui for interactive cluster management.
For job deployment, use nomad job run <file.nomad.hcl> directly.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: danfedick
- Version: 1.0.0
## 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-04-30T20:10:19.355Z
- Expires at: 2026-05-07T20:10:19.355Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/nomad)
- [Send to Agent page](https://openagent3.xyz/skills/nomad/agent)
- [JSON manifest](https://openagent3.xyz/skills/nomad/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/nomad/agent.md)
- [Download page](https://openagent3.xyz/downloads/nomad)