Help us improve
Share bugs, ideas, or general feedback.
From agentuity
Guides Agentuity CLI for deploying apps, managing databases/sandboxes, configuring storage/queues/cron/email/cloud resources, SSH debugging, env vars, and non-interactive automation.
npx claudepluginhub agentuity/sdk --plugin agentuityHow this skill is triggered — by the user, by Claude, or both
Slash command
/agentuity:agentuity-opsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- **Never guess** flags, subcommands, or argument order
Provides Agentuity options for managed PostgreSQL databases, KV/vector/object storage, queues, sandboxes, cron jobs, email, webhooks, and compute in TypeScript/Bun projects.
Deploys ADK agents to Agent Runtime, Cloud Run, or GKE. Covers CI/CD, secrets, service accounts, rollbacks, and production infrastructure using the agents-cli tool.
Guides developers to create new AgentCore agent projects on AWS: framework selection (Strands, LangGraph), project scaffolding, first deploy, and invocation. For beginners or 'agentcore create'.
Share bugs, ideas, or general feedback.
agentuity <cmd> --helpagentuity ai schema showbun (never npm/pnpm) — check for agentuity.json or .agentuity/--region flags (~/.config/agentuity/config.json and agentuity.json)/home/agentuity (not /app)When running CLI commands programmatically (in Claude Code, CI, or scripts), skip confirmation prompts:
| Flag | Short | Behavior |
|---|---|---|
--confirm | -y | Skip confirmation prompts |
--force | — | Alias for --confirm (when command doesn't have its own --force) |
These work on any command with a confirmation prompt (deploy, create, delete, etc.).
Special cases:
agentuity project import — requires BOTH --name and -y (or --confirm) for non-interactive useagentuity cloud env push — has its own --force flag (overwrites remote values); --force does NOT alias --confirm hereagentuity cloud deployment remove/undeploy — has its own --force flag for the same reason| Purpose | Command |
|---|---|
| Create project | agentuity create |
| Start dev server | agentuity dev or bun run dev |
| Deploy | agentuity deploy |
| Check auth | agentuity auth whoami |
| List regions | agentuity region list |
| Get help | agentuity <command> --help |
| Full CLI schema | agentuity ai schema show |
| Migrate to v2 | npx @agentuity/migrate |
| Service | CLI Prefix | Documentation |
|---|---|---|
| KV Storage | agentuity cloud kv | https://agentuity.dev/reference/cli/storage.md |
| Vector Search | agentuity cloud vector | https://agentuity.dev/reference/cli/storage.md |
| Object Storage | agentuity cloud storage | https://agentuity.dev/reference/cli/storage.md |
| Sandbox | agentuity cloud sandbox | https://agentuity.dev/reference/cli/sandbox.md |
| Database | agentuity cloud db | https://agentuity.dev/services/database.md |
| SSH | agentuity cloud ssh | https://agentuity.dev/reference/cli/debugging.md |
| Deployments | agentuity deploy | https://agentuity.dev/reference/cli/deployment.md |
| Topic | Link |
|---|---|
| CLI Getting Started | https://agentuity.dev/reference/cli/getting-started.md |
| Build Configuration | https://agentuity.dev/reference/cli/build-configuration.md |
| Deployment | https://agentuity.dev/reference/cli/deployment.md |
| Local Development | https://agentuity.dev/reference/cli/development.md |
| Debugging | https://agentuity.dev/reference/cli/debugging.md |
| Storage Commands | https://agentuity.dev/reference/cli/storage.md |
| Sandbox Commands | https://agentuity.dev/reference/cli/sandbox.md |
| Configuration | https://agentuity.dev/reference/cli/configuration.md |
| Git Integration | https://agentuity.dev/reference/cli/git-integration.md |
| GitHub App | https://agentuity.dev/reference/github-app.md |
| Migration Guide | https://agentuity.dev/reference/migration-guide.md |
| Mistake | Better Approach | Why |
|---|---|---|
Blindly adding --region flag | Check config first | Region may already be configured |
| Using npm for Agentuity projects | Always use bun | Agentuity is Bun-native |
Hardcoding sandbox paths as /app | Use /home/agentuity | That's the default working directory |
| Making up CLI flags | Run --help first | Flags change between versions |
| Fabricating deployment URLs | Read actual output | URLs are generated dynamically |
Using expect/yes piping for prompts | Use -y or --confirm flag | Built-in flag support is cleaner and more reliable |
| Running v1 project without migrating | Run npx @agentuity/migrate first | v2 requires explicit agent/router wiring |
If you're unsure about any CLI command, flag, or service, check first rather than guessing:
agentuity <command> --help for flag detailsagentuity ai schema show