LaunchKit · 2026
Back to Skills

Deploy web services to the cloud with Jack.

0
1.1k downloads
by @hellno

Setup & Installation

openclaw skills install @hellno/jack-cloud

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install jack-cloud

Version History

v0.3.1Feb 16, 2026 - Version note by skill developer:

Add clawdbot metadata, security sections, fix templates, add homepage

What This Skill Does

Jack is a CLI tool that deploys Cloudflare Workers projects from the terminal. It handles project creation, databases (D1), object storage (R2), vector search, cron jobs, and custom domains. Authentication uses GitHub or Google OAuth — no API keys required.

Wraps Cloudflare Workers infrastructure into a single CLI with interactive OAuth auth, skipping manual wrangler configuration and dashboard setup.

When to use it

  • Deploying a REST API with a SQLite database in one command
  • Adding scheduled cron jobs to a Cloudflare Worker
  • Storing and querying embeddings for a semantic search or RAG pipeline
  • Connecting a custom domain to a deployed web service
  • Streaming production logs to debug a live API

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Create and deploy a new API with a database

AGENT
  1. 1Run jack new my-api --template api to scaffold and deploy the project
  2. 2Run jack services db create to add a D1 SQLite database
  3. 3Run jack db execute --write to create the required tables
  4. 4Edit src/index.ts to add routes that query the database via c.env.DB
  5. 5Run jack ship to deploy changes to production
OUTPUT

Live API available at https://my-api.runjack.xyz with database-backed routes

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Jack CLI installed globally (npm i -g @getjack/jack)Jack Cloud account, created interactively via jack login using a GitHub or Google account