Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Jack Cloud Service Integration

BSecurity

Deploy web services to the cloud with Jack. Use when: you need to create APIs, websites, or backends and deploy them live. Teaches: project creation, deployment, databases, logs, and all Jack Cloud services.

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgobashsqlnextjsgitapidatabasefrontendbackenddevops

Works with

terminalcliapimcp

Security Analysis

B80/100
mediumUses curl or wget to download content
criticalExfiltrates credentials via HTTP — exact pattern from Snyk ToxicSkills study
mediumInstalls packages at runtime which could introduce malicious dependencies

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill jack-cloud-service-integration --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Jack Cloud Service Integration?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Jack Cloud Service Integration
[![Security: B — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-jack-cloud-service-integration/badge)](https://www.skillsdirectory.com/skills/rondoflow-jack-cloud-service-integration)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: jack-cloud-service-integration
description: "Deploy web services to the cloud with Jack. Use when: you need to create APIs, websites, or backends and deploy them live. Teaches: project creation, deployment, databases, logs, and all Jack Cloud services."
category: "DevOps & Infra"
author: community
version: "0.3.1"
icon: server
---

# Jack Cloud — Deploy Anything from the Terminal

Jack deploys Cloudflare Workers projects in one command. Create an API, add a database, ship it live — all from the terminal.

## Install

```bash
npm i -g @getjack/jack
jack login
```

## External Endpoints

| Endpoint | Data Sent | Purpose |
|----------|-----------|---------|
| `auth.getjack.org` | OAuth tokens (GitHub/Google via WorkOS) | Authentication |
| `control.getjack.org` | Project metadata, source code during deploy | Project management and deployments |

## Security & Privacy

- `jack login` authenticates via browser OAuth (GitHub/Google via WorkOS). Auth token stored at `~/.config/jack/auth.json`
- No environment variables required — authentication is interactive
- Source code is uploaded during `jack ship` and deployed to Cloudflare Workers via Jack Cloud
- Project metadata (name, slug, deploy history) is stored on Jack Cloud
- No telemetry is sent without user consent (`jack telemetry` to configure)
- **npm package:** [@getjack/jack](https://www.npmjs.com/package/@getjack/jack) — open source CLI

## MCP Tools

If your agent has `mcp__jack__*` tools available, prefer those over CLI commands. They return structured JSON and are tracked automatically. The CLI equivalents are noted below for agents without MCP.

---

## Create & Deploy a Project

```bash
jack new my-api
```

This creates a project from a template, deploys it, and prints the live URL.

**Pick a template** when prompted (or pass `--template`):

| Template | What you get |
|----------|-------------|
| `api` | Hono API with example routes |
| `hello` | Minimal hello-world starter |
| `miniapp` | Full-stack app with frontend |
| `ai-chat` | AI chat app with streaming |
| `nextjs` | Next.js full-stack app |

Run `jack new` to see all available templates.

**MCP:** `mcp__jack__create_project` with `name` and `template` params.

After creation, your project is live at `https://<slug>.runjack.xyz`.

---

## Deploy Changes

After editing code, push changes live:

```bash
jack ship
```

For machine-readable output (useful in scripts and agents):

```bash
jack ship --json
```

Builds the project and deploys to production. Takes a few seconds.

**MCP:** `mcp__jack__deploy_project`

---

## Check Status

```bash
jack info
```

Shows: live URL, last deploy time, attached services (databases, storage, etc.).

**MCP:** `mcp__jack__get_project_status`

---

## Database (D1)

```bash
jack services db create                  # Add D1 database (auto-configures wrangler.jsonc)
jack db execute "SELECT * FROM users"    # Query data
jack db execute --json "SELECT ..."      # JSON output
jack db execute --write "INSERT INTO users (name, email) VALUES ('Alice', 'alice@example.com')"
jack db execute --write "CREATE TABLE posts (id INTEGER PRIMARY KEY, title TEXT, body TEXT, created_at TEXT DEFAULT CURRENT_TIMESTAMP)"
jack db execute "SELECT name FROM sqlite_master WHERE type='table'"   # View schema
jack db execute "PRAGMA table_info(users)"
```

After schema changes, redeploy with `jack ship`.

**MCP:** `mcp__jack__create_database`, `mcp__jack__execute_sql` (set `allow_write: true` for writes; DROP/TRUNCATE blocked by default).

---

## Logs

Stream production logs to debug issues:

```bash
jack logs
```

Shows real-time request/response logs. Press Ctrl+C to stop.

**MCP:** `mcp__jack__tail_logs` with `duration_ms` and `max_events` params for a bounded sample.

---

## Common Workflow: API with Database

```bash
# 1. Create project
jack new my-api --template api

# 2. Add database
jack services db create

# 3. Create tables
jack db execute --write "CREATE TABLE items (id INTEGER PRIMARY KEY, name TEXT, created_at TEXT DEFAULT CURRENT_TIMESTAMP)"

# 4. Edit src/index.ts — add routes that query the DB
#    Access DB via: c.env.DB (the D1 binding)

# 5. Deploy
jack ship

# 6. Verify
curl https://my-api.runjack.xyz/api/items
```

---

## Secrets

Store API keys and sensitive values:

```bash
# Set a secret (prompts for value)
jack secrets set STRIPE_SECRET_KEY

# Set multiple
jack secrets set API_KEY WEBHOOK_SECRET

# List secrets (names only, values hidden)
jack secrets list
```

Secrets are available in your worker as `c.env.SECRET_NAME`. Redeploy after adding secrets:

```bash
jack ship
```

---

## Project Structure

```
my-project/
├── src/
│   └── index.ts          # Worker entry point
├── wrangler.jsonc        # Config: bindings, routes, compatibility
├── package.json
└── .jack/
    └── project.json      # Links to Jack Cloud
```

- `wrangler.jsonc` defines D1 bindings, environment vars, compatibility flags
- `.jack/project.json` links the local directory to your Jack Cloud project
- `src/index.ts` is the main entry point — typically a Hono app

---

## Advanced Services

### Storage (R2)

```bash
jack services storage create          # Create R2 bucket
jack services storage list            # List buckets
jack services storage info            # Bucket details
```

Access in worker via `c.env.BUCKET` binding. Use for file uploads, images, assets.

**MCP:** `mcp__jack__create_storage_bucket`, `mcp__jack__list_storage_buckets`, `mcp__jack__get_storage_info`

### Vector Search (Vectorize)

```bash
jack services vectorize create                    # Create index (768 dims, cosine)
jack services vectorize create --dimensions 1536  # Custom dimensions
jack services vectorize list
jack services vectorize info
```

Access via `c.env.VECTORIZE_INDEX` binding. Use for semantic search, RAG, embeddings.

**MCP:** `mcp__jack__create_vectorize_index`, `mcp__jack__list_vectorize_indexes`, `mcp__jack__get_vectorize_info`

### Cron Scheduling

```bash
jack services cron create "*/15 * * * *"   # Every 15 minutes
jack services cron create "0 * * * *"      # Every hour
jack services cron list
jack services cron test "0 9 * * MON"      # Validate + show next runs
```

Your worker needs a `scheduled()` handler or `POST /__scheduled` route.

**MCP:** `mcp__jack__create_cron`, `mcp__jack__list_crons`, `mcp__jack__test_cron`

### Custom Domains

```bash
jack domain connect app.example.com      # Reserve domain
jack domain assign app.example.com       # Assign to current project
jack domain unassign app.example.com     # Unassign
jack domain disconnect app.example.com   # Fully remove
```

Follow the DNS instructions printed after `assign`. Typically add a CNAME record.

---

## List Projects

```bash
jack ls           # List all your projects
jack info my-api  # Details for a specific project
jack open my-api  # Open in browser
```

**MCP:** `mcp__jack__list_projects` with optional `filter` (all, local, deployed, cloud).

---

## Troubleshooting

| Problem | Fix |
|---------|-----|
| "Not authenticated" | Run `jack login` |
| "No wrangler config found" | Run from a jack project directory |
| "Database not found" | Run `jack services db create` |
| Deploy fails | Check `jack logs` for errors, fix code, `jack ship` again |
| Need to start over | `jack new` creates a fresh project |

---

## Reference

- [Services deep dive](reference/services-guide.md) — detailed patterns for each service
- [Jack documentation](https://docs.getjack.org)

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →