Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vince-winkintel avatar

Newrelic Cli Skills

  • 4 installs
  • Updated July 18, 2026
  • vince-winkintel/newrelic-cli-skills

Helps with ai & agent building tasks.

About

newrelic-cli-skills is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • newrelic-cli-skills
  • AI & Agent Building
  • AI-coding skill

Newrelic Cli Skills by the numbers

  • 4 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #13,372 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vince-winkintel/newrelic-cli-skills --skill newrelic-cli-skills

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4
Last updatedJuly 18, 2026
Repositoryvince-winkintel/newrelic-cli-skills

What it does

Helps with ai & agent building tasks.

Files

alerts/SKILL.mdMarkdownGitHub ↗

Alert Management

Manage alert policies, conditions, and notification channels via CLI.

---

List Alert Policies

newrelic alerts policy list

Get a Policy

newrelic alerts policy get --policyId <ID>

Create a Policy

newrelic alerts policy create \
  --name "My App - Performance" \
  --incidentPreference "PER_CONDITION_AND_TARGET"

Incident preference options:

  • PER_POLICY — one incident per policy breach
  • PER_CONDITION — one incident per condition
  • PER_CONDITION_AND_TARGET — most granular, one per condition+entity

---

Alert Conditions

List Conditions for a Policy

newrelic alerts conditions list --policyId <POLICY_ID>

Create an APM Metric Condition

newrelic alerts apmCondition create \
  --policyId <POLICY_ID> \
  --name "High Response Time" \
  --type "apm_app_metric" \
  --metric "response_time_web" \
  --conditionScope "application" \
  --violationCloseTimer 24 \
  --threshold 2.0 \
  --thresholdDuration 5 \
  --thresholdOccurrences "ALL"

Delete a Condition

newrelic alerts conditions delete --conditionId <ID>

---

NRQL Alert Conditions

newrelic alerts nrqlCondition static create \
  --policyId <POLICY_ID> \
  --name "Error Rate > 5%" \
  --query "SELECT percentage(count(*), WHERE error IS true) FROM Transaction WHERE appName='my-app'" \
  --threshold 5 \
  --thresholdDuration 5 \
  --thresholdOccurrences "ALL" \
  --violationTimeLimitSeconds 86400

---

Notification Channels

# List channels
newrelic alerts channel list

# Create email channel
newrelic alerts channel create \
  --name "On-Call Email" \
  --type email \
  --configuration '{"recipients": "team@example.com", "include_json_attachment": false}'

---

View Open Incidents

newrelic nrql query --accountId $NEW_RELIC_ACCOUNT_ID --query "
  SELECT *
  FROM NrAiIncident
  WHERE event = 'open'
  SINCE 24 hours ago
  LIMIT 20
"

---

Check Entity Alert Severity

newrelic entity search --name "my-app" --type APPLICATION --domain APM | \
  jq '.[] | {name, alertSeverity}'

Severity values: NOT_CONFIGURED, NOT_ALERTING, WARNING, CRITICAL

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.