{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/newrelic-cli-skills",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=newrelic-cli-skills",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "alerts/SKILL.md",
      "apm/SKILL.md",
      "deployments/SKILL.md",
      "diagnostics/SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/newrelic-cli-skills",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Quick Decision Tree",
        "body": "Performance issue reported? → apm/SKILL.md\nNeed to query data with NRQL? → nrql/SKILL.md\nRecording a deployment? → deployments/SKILL.md\nAlert management? → alerts/SKILL.md\nInfrastructure/host issues? → infrastructure/SKILL.md\nAgent not reporting? → diagnostics/SKILL.md"
      },
      {
        "title": "Setup & Auth",
        "body": "# Install\ncurl -Ls https://download.newrelic.com/install/newrelic-cli/scripts/install.sh | bash\n\n# Configure profile\nnewrelic profile add \\\n  --profile default \\\n  --apiKey $NEW_RELIC_API_KEY \\\n  --accountId $NEW_RELIC_ACCOUNT_ID \\\n  --region US   # or EU\n\nnewrelic profile default --profile default\n\n# Verify\nnewrelic profile list"
      },
      {
        "title": "Common One-Liners",
        "body": "# Search for an entity by name\nnewrelic entity search --name \"my-app\"\n\n# Run a NRQL query\nnewrelic nrql query --accountId $NEW_RELIC_ACCOUNT_ID \\\n  --query \"SELECT average(duration) FROM Transaction WHERE appName='my-app' SINCE 1 hour ago\"\n\n# Record a deployment\nnewrelic apm deployment create \\\n  --applicationId <APP_ID> \\\n  --revision \"v1.2.3\" \\\n  --description \"Feature: user auth\"\n\n# Run diagnostics\nnewrelic diagnose run"
      },
      {
        "title": "Entity Reference",
        "body": "Find entity GUIDs (needed for API calls and deployment markers):\n\n# List all APM apps\nnewrelic entity search --name \"\" --type APPLICATION --domain APM\n\n# Get specific entity details\nnewrelic entity get --guid <GUID>\n\n# List all hosts\nnewrelic entity search --name \"\" --type HOST"
      },
      {
        "title": "Environment Variables",
        "body": "VariableDescriptionNEW_RELIC_API_KEYUser key (NRAK-...)NEW_RELIC_ACCOUNT_IDNumeric account IDNEW_RELIC_REGIONUS or EU"
      },
      {
        "title": "Sub-Skills",
        "body": "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"
      },
      {
        "title": "Scripts",
        "body": "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"
      },
      {
        "title": "References",
        "body": "references/nrql-patterns.md — Common NRQL query patterns\nreferences/performance-triage.md — Step-by-step triage guide"
      }
    ],
    "body": "New Relic CLI Skills\nQuick Decision Tree\n\nPerformance 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\n\nSetup & Auth\n# Install\ncurl -Ls https://download.newrelic.com/install/newrelic-cli/scripts/install.sh | bash\n\n# Configure profile\nnewrelic profile add \\\n  --profile default \\\n  --apiKey $NEW_RELIC_API_KEY \\\n  --accountId $NEW_RELIC_ACCOUNT_ID \\\n  --region US   # or EU\n\nnewrelic profile default --profile default\n\n# Verify\nnewrelic profile list\n\nCommon One-Liners\n# Search for an entity by name\nnewrelic entity search --name \"my-app\"\n\n# Run a NRQL query\nnewrelic nrql query --accountId $NEW_RELIC_ACCOUNT_ID \\\n  --query \"SELECT average(duration) FROM Transaction WHERE appName='my-app' SINCE 1 hour ago\"\n\n# Record a deployment\nnewrelic apm deployment create \\\n  --applicationId <APP_ID> \\\n  --revision \"v1.2.3\" \\\n  --description \"Feature: user auth\"\n\n# Run diagnostics\nnewrelic diagnose run\n\nEntity Reference\n\nFind entity GUIDs (needed for API calls and deployment markers):\n\n# List all APM apps\nnewrelic entity search --name \"\" --type APPLICATION --domain APM\n\n# Get specific entity details\nnewrelic entity get --guid <GUID>\n\n# List all hosts\nnewrelic entity search --name \"\" --type HOST\n\nEnvironment Variables\nVariable\tDescription\nNEW_RELIC_API_KEY\tUser key (NRAK-...)\nNEW_RELIC_ACCOUNT_ID\tNumeric account ID\nNEW_RELIC_REGION\tUS or EU\nSub-Skills\nSub-skill\tWhen to use\napm/\tPerformance triage, slow transactions, error analysis\nnrql/\tCustom queries, dashboards, ad-hoc data exploration\ndeployments/\tMark releases, correlate deploys with performance\nalerts/\tAlert policies, conditions, notification channels\ninfrastructure/\tHost metrics, CPU/memory, process monitoring\ndiagnostics/\tAgent health, config validation, connectivity\nScripts\nScript\tPurpose\nscripts/check-performance.sh\tQuick health check across all apps\nscripts/deployment-marker.sh\tRecord a deployment event\nscripts/top-slow-transactions.sh\tFind the 10 slowest transactions\nscripts/error-report.sh\tRecent errors with stack traces\nReferences\nreferences/nrql-patterns.md — Common NRQL query patterns\nreferences/performance-triage.md — Step-by-step triage guide"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/vince-winkintel/newrelic-cli-skills",
    "publisherUrl": "https://clawhub.ai/vince-winkintel/newrelic-cli-skills",
    "owner": "vince-winkintel",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}