automation-pilot-debugger

Installation
SKILL.md

SAP Automation Pilot Debugging & Troubleshooting

Debug failed Executions, check recent execution health, and investigate error patterns. Use this skill when things go wrong — not for normal operations.

Quick Diagnostics

Check Recent Executions Summary

# Last 10 executions summary
curl -s -u "$AUTOPI_USERNAME:$AUTOPI_PASSWORD" \
  "https://$AUTOPI_HOSTNAME/api/v1/executions?limit=10" | \
  jq '[.[] | {id, status, commandId, startedAt, finishedAt}]'

# Last 5 failed executions
curl -s -u "$AUTOPI_USERNAME:$AUTOPI_PASSWORD" \
  "https://$AUTOPI_HOSTNAME/api/v1/executions?status=FAILED&limit=5" | \
  jq '[.[] | {id, commandId, error: .error.message}]'
Installs
1
GitHub Stars
2
First Seen
10 days ago
automation-pilot-debugger — sap/automation-pilot-agent-skills