Agent skill · DevOps & Cloud

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.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill appdeploy --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/appdeploy/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Setup (First Time Only)
  3. Usage
  4. Workflow
  5. Available Tools
  6. getdeployinstructions
  7. deployapp
  8. getapptemplate
  9. getappstatus
  10. deleteapp
  11. getappversions
  12. applyappversion
  13. srcglob
  14. srcgrep
Commands it runs
curl -X POST https://api-v2.appdeploy.ai/mcp/api-key \
curl -X POST {endpoint} \
More from agentic-awesome-skills
All skills →
About this skill
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.

Keep going