Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
Use when managing Agentuity Cloud from the terminal. Covers deployments, deployment logs, environment variables and secrets, regions, project resource linking, cloud resource commands, SSH, SCP, monitoring snapshots, and agent-friendly CLI workarounds.
license
Apache-2.0
metadata
{"author":"agentuity","version":"1.0.0"}
Agentuity Cloud Operations
Use this skill when operating Agentuity from the CLI: deployments, logs,
environment values, resources, SSH access, and live debugging. Use
agentuity-services or agentuity-database for app-code client usage.
Deployment logs are currently a snapshot command, not a follow stream. If an
agent needs to wait for new log output, poll with a bounded loop and stop when
the deploy reaches a terminal state or enough evidence is collected.
Inspect sessions when debugging request-specific behavior:
agentuity cloud session list --count=25
agentuity cloud session list --success=false --count=25
agentuity cloud session get sess_abc123xyz
agentuity cloud session logs sess_abc123xyz --no-timestamps
Agent-Friendly Workflow
For deploy-debug loops:
Run agentuity deploy --json when machine-readable output is needed.
Capture the deployment ID from output.
Run agentuity cloud deployment show <id> --json.
Inspect recent logs with agentuity cloud deployment logs <id> --limit=100.
Use agentuity cloud monitor --deployment <id> --snapshot for machine health.
Use SSH only after logs and structured status point to runtime-only evidence.
Known CLI gaps are tracked under the agentic flow GitHub label. Until
wait/follow/status primitives exist, use bounded polling and explicit timeouts
in automation.
Common Mistakes
Mistake
Better approach
Guessing URLs after deploy
Read deploy output or cloud deployment show
Expecting deployment logs to follow live
Poll with a limit until follow support exists
Managing secrets with a separate command
Use cloud env set --secret
Running destructive commands without explicit confirmation flags