Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
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.
User asks: Create and deploy a new API with a database
- 1Run jack new my-api --template api to scaffold and deploy the project
- 2Run jack services db create to add a D1 SQLite database
- 3Run jack db execute --write to create the required tables
- 4Edit src/index.ts to add routes that query the database via c.env.DB
- 5Run jack ship to deploy changes to production
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.