npx claudepluginhub agentuity/sdk --plugin agentuityThis skill uses the workspace's default tool permissions.
- **Never guess** flags, subcommands, or argument order
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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