You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lead with Claude Code conversation example, mirror the landing page
structure (zero to live URL, databases without dashboards, terminal-first
management, MCP autonomy). OpenClaw is now a one-liner under the MCP
section instead of the primary CTA.
@@ -24,53 +28,30 @@ Tell your agent what to build. It deploys, adds databases, and ships — no conf
24
28
25
29
---
26
30
27
-
## Build with Claude Code
31
+
## Claude Code deploys for you
28
32
29
-
Install the skill and your agent can deploy full-stack apps from a single prompt.
33
+
Claude already writes your code. Let it deploy too.
30
34
31
-
```bash
32
-
npx clawhub@latest install jack-cloud
33
35
```
36
+
Claude Code
37
+
> "build me a REST API for todos with a database"
34
38
35
-
Then tell Claude what you want:
36
-
39
+
✓ Created todo-api from api template
40
+
✓ Provisioned D1 database
41
+
✓ Deployed to edge
42
+
→ https://todo-api.runjack.xyz
37
43
```
38
-
You: "Build me an API with a database that stores bookmarks"
39
-
40
-
Claude: I'll create a new project, set up the database, and deploy it.
41
-
> jack new bookmarks-api --template api
42
-
> jack services db create
43
-
> jack db execute --write "CREATE TABLE bookmarks (...)"
44
-
> [writes API routes]
45
-
> jack ship
46
44
47
-
Your API is live at https://bookmarks-api.runjack.xyz
48
-
```
49
-
50
-
Your agent handles the full lifecycle — creating projects, adding services, deploying, checking logs, and iterating. [AI agents guide →](/guides/ai-agents)
51
-
52
-
### MCP Server
53
-
54
-
jack includes a built-in MCP server, configured automatically on first run. Your agent gets tools for deploying, querying databases, managing secrets, tailing logs, and more.
55
-
56
-
```
57
-
create_project name: "my-api", template: "api"
58
-
deploy_project project_path: "/projects/my-api"
59
-
execute_sql sql: "SELECT * FROM users", allow_write: false
0 commit comments