deploy-agent for Openclaw

A multi-step deployment agent that orchestrates the workflow from local build and testing to GitHub hosting and Cloudflare Pages deployment.

sherajdev
v1.1.0
Jan 19, 2026
2
6.8k
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install deploy-agent

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install deploy-agent using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is deploy-agent?

The deploy-agent is a specialized automation tool designed for developers utilizing Openclaw Skills to manage complex full-stack deployment lifecycles. It provides a structured, multi-stage workflow that includes building, local testing, version control integration, and cloud hosting. By enforcing human approval at each critical stage, it ensures that only verified code reaches production environments.

This skill is particularly powerful for modern web frameworks, offering deep integration with GitHub and Cloudflare Pages. It eliminates the friction of manual deployment steps while maintaining a high degree of reliability through its persistent state management system, making it an essential component of the Openclaw Skills ecosystem.

deploy-agent Use Cases

  • Deploying Next.js or React applications to Cloudflare Pages with minimal manual configuration.
  • Standardizing CI/CD workflows for individual developers or small teams using Openclaw Skills.
  • Managing the creation and synchronization of GitHub repositories during the initial project launch.
  • Implementing manual verification gates in automated deployment pipelines to prevent broken builds in production.

How deploy-agent Works

  1. The process begins with the initialization step where the deployment name is defined and the design phase is completed.
  2. The agent executes a build command to compile the application assets.
  3. A local testing phase is triggered to verify the application's functionality before moving to remote environments.
  4. The agent uses the GitHub CLI to create a repository and push the local codebase.
  5. Finally, the agent leverages Wrangler to deploy the application to Cloudflare Pages, optionally configuring a custom domain.

deploy-agent Setup

To get started with this skill within the Openclaw Skills framework, follow these steps:

# Install the deployment agent via ClawdHub
clawdhub install deploy-agent

# Ensure you have the required CLI tools installed
# Requires: gh (GitHub CLI), wrangler (Cloudflare CLI), and git

# Configure your Cloudflare API token in ~/.wrangler.toml
# [account]
# api_token = "your-cloudflare-token"

deploy-agent Data Schema & Taxonomy

The deploy-agent maintains a persistent state for every project to ensure continuity across sessions. Data is stored in ~/.clawdbot/skills/deploy-agent/state/{deployment-name}.json using the following structure:

Field Type Description
name String The unique identifier for the deployment
step Integer The current stage in the 5-step workflow
status String Current execution status (e.g., deployed, pending)
repo_url String The link to the created GitHub repository
domain String The live URL of the application on Cloudflare

deploy-agent Advanced Features

  • Human-in-the-loop approval gates at every transition point for maximum safety.
  • Built-in support for Next.js + Cloudflare D1 database bindings and Edge runtime configurations.
  • Automated state recovery allowing users to resume interrupted deployments using the continue command.
  • Seamless integration with the C.R.A.B design pattern common in Openclaw Skills workflows.
  • Comprehensive cleanup and cancellation protocols to prevent orphaned cloud resources.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*