AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Troubleshoot

skill-guaracloud-agent-skills-troubleshoot · by guaracloud

Diagnoses and resolves issues on GuaraCloud — failed deployments, crash loops, health check failures, image pull errors, OOM kills, and CLI errors. Use when the user reports something broken, a deployment failed, a service is unhealthy, or they see an error.

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-guaracloud-agent-skills-troubleshoot

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-guaracloud-agent-skills-troubleshoot)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Troubleshoot? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Troubleshooting GuaraCloud

First Things to Check

When something is wrong, start here:

# 1. Is the service running?
guara services info

# 2. What do the logs say?
guara logs --level error --since 1h

# 3. What's the deployment history?
guara deployments list

# 4. Is the platform itself healthy?
guara status

Health Statuses

guara services info reports these health statuses:

| Status | Meaning | Action | |---|---|---| | healthy | All replicas running and passing health checks | No action needed | | crash_loop | Container repeatedly crashing and restarting | Check logs: guara logs --level error | | image_pull_error | Cannot pull the container image | Check deployment logs, verify build succeeded | | oom_killed | Container exceeded memory limit | Reduce memory usage or upgrade tier — see guaracloud.com/docs | | degraded | Some but not all replicas healthy | Check logs, may resolve on its own during rolling updates | | unknown | Status cannot be determined | Wait a moment, then check again |

Deployment Failure Decision Tree

Deployment status is failed:

  1. Check deployment logs: guara logs --since 10m --level error
  2. If build error → fix code/Dockerfile and redeploy: guara deploy
  3. If image pull error → previous build may have failed silently. Check guara deployments list for the last healthy deployment, then guara rollback
  4. If crash on startup → app fails to start. Check logs for stack traces, missing env vars, or port mismatches

Container keeps restarting (crash_loop):

  1. Check logs: guara logs --level error --since 30m
  2. Common causes:
  • Missing environment variables → guara env list to check, guara env set to fix
  • Wrong port → service listens on a different port than configured. Check with guara services info
  • Missing dependencies → Dockerfile or buildpack not installing all deps
  • OOM → app needs more memory than tier allows
  1. If you can't determine the cause from logs, exec into the container: guara exec -- env to check runtime environment

Service stuck in deploying:

  1. Wait — deployments can take up to 10 minutes
  2. If still stuck, check guara deployments list for the status
  3. The new deployment may be waiting for health checks to pass

Tier Limit Errors

The CLI surfaces these when a tier limit is reached:

  • "Resource exceeds your tier quota" → service needs more CPU/memory than tier allows
  • "Maximum number of projects reached" → delete an unused project or upgrade
  • "Maximum number of services reached" → delete an unused service or upgrade
  • "Build minutes quota exceeded" → wait for next billing cycle or upgrade
  • "Maximum number of custom domains reached" → remove an existing domain or upgrade
  • "Account resource pool exhausted" → scale down other services or upgrade

For all tier limits, direct the user to guaracloud.com/docs to see current tier details and upgrade options.

Authentication Errors

  • "Authentication failed. API key is invalid or revoked"guara login to re-authenticate
  • "Authentication failed. API key has expired"guara login to generate a new key
  • "Not authenticated"guara login
  • "Account is suspended due to billing issues" → update payment at app.guaracloud.com
  • "Terms of Service must be accepted" → accept at app.guaracloud.com

Network and Session Errors

  • "Could not reach GuaraCloud API" → check internet connection and API URL: guara config get api-url
  • "No ready pods available" → service is not running. Start it: guara services start
  • "Session disconnected due to inactivity" → reconnect by running the command again
  • "Maximum concurrent sessions reached" → close existing exec/proxy sessions first

Common Pitfalls

  1. Forgot to deploy after creating a serviceservices create does NOT trigger a build. Run guara deploy after.
  2. Port mismatch — the --port in services create must match what the app listens on.
  3. Missing GitHub App — install at github.com/apps/guaracloud if you see "No GitHub App installation found."
  4. Env var change didn't take effectguara env set triggers a rolling restart, but check logs to confirm the new process picked up the change.
  5. DNS not propagated for custom domainguara domains list shows pending until CNAME propagates. This can take minutes to hours.

For the full error code reference, see [references/error-codes.md](../../guara-troubleshoot/references/error-codes.md).

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.