appdeploy
Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.
npx skills add sickn33/agentic-awesome-skills --skill appdeploy --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# AppDeploy Skill Deploy web apps to AppDeploy via HTTP API. ## When to Use This Skill - Use when planning or building apps and web apps - Use when deploying an app to a public URL - Use when publishing a website or web app - Use when the user says "deploy this", "make this live", or "give me a URL" - Use when updating an already-deployed app ## Setup (First Time Only) 1. **Check for existing API key:** - Look for a `.appdeploy` file in the project root - If it exists and contains a valid `api_key`, skip to Usage 2. **If no API key exists, register and get one:** ```bash curl -X POST https://api-v2.appdeploy.ai/mcp/api-key \ -H "Content-Type: application/json" \ -d '{"client_name": "claude-code"}' ``` Response: ```json { "api_key": "ak_...", "user_id": "agent-claude-code-a1b2c3d4", "created_at": 1234567890, "message": "Save this key securely - it cannot be retrieved later" } ``` 3. **Save credentials to `.appdeploy`:** ```json { "api_key": "ak_...", "endpoint": "https://api-v2.appdeploy.ai/mcp" } ``` Add `.appdeploy` to `.gitignore` if not already present. ## Usage Make JSON-RPC calls to the MCP endpoint: ```bash curl -X POST {endpoint} \ -H "Content-Type: application/json" \ -H "A
- When to Use This Skill
- Setup (First Time Only)
- Usage
- Workflow
- Available Tools
- getdeployinstructions
- deployapp
- getapptemplate
- getappstatus
- deleteapp
- getappversions
- applyappversion
- srcglob
- srcgrep
curl -X POST https://api-v2.appdeploy.ai/mcp/api-key \
curl -X POST {endpoint} \What does the appdeploy skill do?
Deploy web apps with backend APIs, database, and file storage. Use when the user asks to deploy or publish a website or web app and wants a public URL. Uses HTTP API via curl.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill appdeploy --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.