Install
$ agentstack add skill-guaracloud-agent-skills-guara-develop ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
--jsonfor scripting. All commands support--jsonfor structured output and--quietfor minimal output (IDs only). - Use
--yesto skip prompts in CI/CD or scripted workflows. - Env var overrides are useful in CI:
GUARA_API_KEY,GUARA_PROJECT,GUARA_SERVICElet you skipguara loginandguara link.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: guaracloud
- Source: guaracloud/agent-skills
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.