# Send Newrelic Cli Skills 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "newrelic-cli-skills",
    "name": "Newrelic Cli Skills",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vince-winkintel/newrelic-cli-skills",
    "canonicalUrl": "https://clawhub.ai/vince-winkintel/newrelic-cli-skills",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/newrelic-cli-skills",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=newrelic-cli-skills",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "alerts/SKILL.md",
      "apm/SKILL.md",
      "deployments/SKILL.md",
      "diagnostics/SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/newrelic-cli-skills"
    },
    "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/newrelic-cli-skills",
    "downloadUrl": "https://openagent3.xyz/downloads/newrelic-cli-skills",
    "agentUrl": "https://openagent3.xyz/skills/newrelic-cli-skills/agent",
    "manifestUrl": "https://openagent3.xyz/skills/newrelic-cli-skills/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/newrelic-cli-skills/agent.md"
  }
}
```
## Documentation

### Quick Decision Tree

Performance issue reported? → apm/SKILL.md
Need to query data with NRQL? → nrql/SKILL.md
Recording a deployment? → deployments/SKILL.md
Alert management? → alerts/SKILL.md
Infrastructure/host issues? → infrastructure/SKILL.md
Agent not reporting? → diagnostics/SKILL.md

### Setup & Auth

# Install
curl -Ls https://download.newrelic.com/install/newrelic-cli/scripts/install.sh | bash

# Configure profile
newrelic profile add \\
  --profile default \\
  --apiKey $NEW_RELIC_API_KEY \\
  --accountId $NEW_RELIC_ACCOUNT_ID \\
  --region US   # or EU

newrelic profile default --profile default

# Verify
newrelic profile list

### Common One-Liners

# Search for an entity by name
newrelic entity search --name "my-app"

# Run a NRQL query
newrelic nrql query --accountId $NEW_RELIC_ACCOUNT_ID \\
  --query "SELECT average(duration) FROM Transaction WHERE appName='my-app' SINCE 1 hour ago"

# Record a deployment
newrelic apm deployment create \\
  --applicationId <APP_ID> \\
  --revision "v1.2.3" \\
  --description "Feature: user auth"

# Run diagnostics
newrelic diagnose run

### Entity Reference

Find entity GUIDs (needed for API calls and deployment markers):

# List all APM apps
newrelic entity search --name "" --type APPLICATION --domain APM

# Get specific entity details
newrelic entity get --guid <GUID>

# List all hosts
newrelic entity search --name "" --type HOST

### Environment Variables

VariableDescriptionNEW_RELIC_API_KEYUser key (NRAK-...)NEW_RELIC_ACCOUNT_IDNumeric account IDNEW_RELIC_REGIONUS or EU

### Sub-Skills

Sub-skillWhen to useapm/Performance triage, slow transactions, error analysisnrql/Custom queries, dashboards, ad-hoc data explorationdeployments/Mark releases, correlate deploys with performancealerts/Alert policies, conditions, notification channelsinfrastructure/Host metrics, CPU/memory, process monitoringdiagnostics/Agent health, config validation, connectivity

### Scripts

ScriptPurposescripts/check-performance.shQuick health check across all appsscripts/deployment-marker.shRecord a deployment eventscripts/top-slow-transactions.shFind the 10 slowest transactionsscripts/error-report.shRecent errors with stack traces

### References

references/nrql-patterns.md — Common NRQL query patterns
references/performance-triage.md — Step-by-step triage guide
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vince-winkintel
- Version: 1.0.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/newrelic-cli-skills)
- [Send to Agent page](https://openagent3.xyz/skills/newrelic-cli-skills/agent)
- [JSON manifest](https://openagent3.xyz/skills/newrelic-cli-skills/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/newrelic-cli-skills/agent.md)
- [Download page](https://openagent3.xyz/downloads/newrelic-cli-skills)