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

Guara Develop

skill-guaracloud-agent-skills-guara-develop · by guaracloud

Integrates GuaraCloud into local development workflows — project linking, remote shell access, port forwarding, log streaming, and environment management. Use when the user wants to connect their local environment to GuaraCloud, tail logs, exec into a container, or forward ports.

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

Install

$ agentstack add skill-guaracloud-agent-skills-guara-develop

✓ 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 Used
  • 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-guara-develop)

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 Guara Develop? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Local Development with GuaraCloud

Project Linking

Link your working directory to a GuaraCloud project so commands automatically know which project/service to target:

guara link                                    # Interactive picker
guara link --project my-app --service api     # Direct link

This creates .guara.json in the current directory:

{
  "project": "my-app",
  "service": "api"
}

The CLI walks upward from the current directory to find this file. Add .guara.json to .gitignore if it contains developer-specific choices.

Remove a link:

guara unlink

Remote Shell (exec)

Open an interactive shell in a running service container:

guara exec                          # Default shell (/bin/sh)
guara exec --shell /bin/bash        # Use bash

Run a one-shot command:

guara exec -- ls -la /app
guara exec -- cat /etc/hostname
guara exec -- env                   # Check runtime env vars
guara exec -- node -e "console.log(process.env.DATABASE_URL)"

JSON mode buffers output and returns structured result:

guara exec --json -- whoami
# Returns: { "exitCode": 0, "output": "node\n", "command": ["whoami"] }

Requirements: Service must be running with at least one healthy pod. If you get "No ready pods available", start the service first: guara services start.

Port Forwarding (proxy)

Forward a local port to the service's container port:

guara proxy                         # Random local port assigned
guara proxy --local-port 8080       # Forward localhost:8080 -> container

Use cases:

  • Connect to a database running in the service
  • Test API endpoints locally
  • Debug with local tools

Press Ctrl+C to stop. Only one TCP connection at a time per proxy session.

Log Streaming

View recent logs:

guara logs                          # Last 100 lines
guara logs --lines 500              # More lines

Stream in real time:

guara logs --follow                 # Polls every 2.5s
guara logs -f --level error         # Only errors, streaming

Filter logs:

guara logs --level error            # By level: trace|debug|info|warn|error|fatal
guara logs --since 1h               # Last hour (also: 30m, 2d, 90s)
guara logs --search "connection refused"  # Text search
guara logs --since 2h --level warn --search "timeout"  # Combined

Time range query:

guara logs --since 2026-04-01T00:00:00Z --until 2026-04-01T12:00:00Z

Environment Management

List current env vars (values masked):

guara env list
guara env list --json               # Full values in JSON

Set variables:

guara env set KEY=value
guara env set KEY1=val1 KEY2=val2   # Multiple at once
guara env set NPM_TOKEN=xxx --build # Available during Docker build

Remove variables:

guara env unset KEY
guara env unset KEY1 KEY2

Important: env set and env unset trigger a rolling restart of the service. The new process picks up the updated environment.

CLI Configuration

guara config list                   # Show api-url and api-key status
guara config get api-url            # Get specific value
guara config set api-url https://api.guaracloud.com
guara config reset                  # Reset to defaults

Tips

  • Use --json for scripting. All commands support --json for structured output and --quiet for minimal output (IDs only).
  • Use --yes to skip prompts in CI/CD or scripted workflows.
  • Env var overrides are useful in CI: GUARA_API_KEY, GUARA_PROJECT, GUARA_SERVICE let you skip guara login and guara link.

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.