agentuity-project
CLI for managing the lifecycle of applications on the Agentuity platform.
Install
mkdir -p .claude/skills/agentuity-project && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11247" && unzip -o skill.zip -d .claude/skills/agentuity-project && rm skill.zipInstalls to .claude/skills/agentuity-project
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use when creating, importing, running, building, or deploying an Agentuity app. Covers framework-first project structure, agentuity.json, .env setup, agentuity dev, agentuity build, agentuity deploy, monorepo --dir usage, and deployment bundle inspection.Key capabilities
- →Creates and imports Agentuity applications
- →Manages local environment wiring
- →Builds and packages deployment bundles
- →Deploys projects to cloud environments
- →Wires Agentuity services to app code
How it works
The tool manages the lifecycle of Agentuity apps by injecting project metadata and cloud resource wiring into existing framework structures.
Inputs & outputs
When to use agentuity-project
- →Import an existing web app to Agentuity
- →Deploy a project to cloud environment
- →Setup local env for framework app
About this skill
Agentuity Project Lifecycle
Agentuity deploys framework apps as they are. Keep the framework's routing, pages, server functions, and config in their normal locations. Agentuity adds project metadata, local environment wiring, build packaging, deployment, and managed services.
Choose Create or Import
Use agentuity create for a new app:
agentuity create --name my-app --framework nextjs
Use agentuity project import for an existing framework app:
agentuity project import --name my-app --confirm
For monorepos, run commands from the app package or pass --dir:
agentuity project import --dir apps/web --name web --confirm
agentuity deploy --dir apps/web
What Agentuity Adds
After create/import, expect these files next to the app's package.json:
| File | Purpose |
|---|---|
agentuity.json | Project, org, region, and deployment metadata |
.env | Local SDK key and linked resource values |
.agentuity/launch.json | Build output contract produced by agentuity build |
The framework still owns dev, build, and route files. Agentuity adds deploy tooling and cloud resource wiring.
Development Loop
Use the framework's normal dev command for everyday framework work. Run through Agentuity when you want the CLI to inject linked project credentials, expose the Agentuity tunnel, or validate the deployed-like environment:
agentuity dev
Read the terminal output for the actual local URL and tunnel URL. Do not invent localhost ports or public deployment URLs.
Build and Deploy
Build locally when you need to inspect packaging:
agentuity build
Check .agentuity/launch.json after a build. It describes the process Agentuity will start after deployment.
Deploy from a linked project:
agentuity deploy
For multiple environments (same code, different cloud projects):
agentuity deploy \
--project-config agentuity.staging.json \
--env .env \
--env .env.staging
--project-config selects the project metadata file (default agentuity.json).
Global --env loads env files in order; later files override earlier keys.
The deploy flow syncs non-Agentuity env values, builds the app, packages the bundle, uploads assets, provisions the deployment, and prints the deployment ID plus URLs.
Existing App Checklist
Before deploying an existing app:
- Run
agentuity project import --validate-only. - Fix any reported framework, package, or build issues.
- Run
agentuity project import --name <name> --confirm. - Run
agentuity build. - Inspect
.agentuity/launch.json. - Run
agentuity deploy.
Working With Services
When adding Agentuity services to app code, import standalone clients in the server-side module that owns the work:
import { KeyValueClient } from '@agentuity/keyvalue';
const kv = new KeyValueClient();
export async function saveDraft(userId: string, draft: string): Promise<void> {
await kv.set('drafts', userId, { draft }, { ttl: 60 * 60 * 24 });
}
For service selection and client examples, use the agentuity-services skill.
For terminal management of resources, use the agentuity-cloud skill.
Common Mistakes
| Mistake | Better approach |
|---|---|
| Moving framework files into Agentuity-owned folders | Keep route and page files where the framework expects them |
| Creating project metadata by hand | Use agentuity create or agentuity project import |
Treating agentuity dev as mandatory | Use it only for CLI env wiring, tunnel output, or deploy-like validation |
| Guessing deployment URLs | Read agentuity deploy output or inspect deployments with the CLI |
| Importing from the repo root in a monorepo | Run from the app package or use --dir |
Useful Docs
- Project structure: https://agentuity.dev/get-started/project-structure
- Import existing app: https://agentuity.dev/get-started/import-existing-app
- Deployment: https://agentuity.dev/reference/cli/deployment
- Build configuration: https://agentuity.dev/reference/cli/build-configuration
When not to use it
- →Manual project metadata creation
- →Guessing deployment URLs
- →Moving framework files into Agentuity-owned folders
Limitations
- →Requires framework-first project structure
- →Deployment URLs must be read from CLI output
How it compares
It integrates directly with framework-specific routing and configuration, rather than requiring a proprietary project structure.
Compared to similar skills
agentuity-project side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| agentuity-project (this skill) | 0 | 1mo | Review | Intermediate |
| appdeploy | 0 | 3mo | Review | Intermediate |
| deployment-engineer | 4 | 4mo | No flags | Advanced |
| devops | 2 | 6mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
appdeploy
biztechprogramming
>
deployment-engineer
sickn33
Expert deployment engineer specializing in modern CI/CD pipelines, GitOps workflows, and advanced deployment automation. Masters GitHub Actions, ArgoCD/Flux, progressive delivery, container security, and platform engineering. Handles zero-downtime deployments, security scanning, and developer experience optimization. Use PROACTIVELY for CI/CD design, GitOps implementation, or deployment automation.
devops
mrgoonie
Deploy to Cloudflare (Workers, R2, D1), Docker, GCP (Cloud Run, GKE), Kubernetes (kubectl, Helm). Use for serverless, containers, CI/CD, GitOps, security audit.
ecs
itsmostafa
AWS ECS container orchestration for running Docker containers. Use when deploying containerized applications, configuring task definitions, setting up services, managing clusters, or troubleshooting container issues.
exa-deploy-integration
jeremylongshore
Deploy Exa integrations to Vercel, Fly.io, and Cloud Run platforms. Use when deploying Exa-powered applications to production, configuring platform-specific secrets, or setting up deployment pipelines. Trigger with phrases like "deploy exa", "exa Vercel", "exa production deploy", "exa Cloud Run", "exa Fly.io".
local-environment
polarsource
Local development environment management for Polar using Docker