@getjack/jack 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +103 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,103 @@
1
+ <p align="center">
2
+ <h1 align="center">jack</h1>
3
+ <p align="center"><strong>Ship before you forget why you started.</strong></p>
4
+ </p>
5
+
6
+ <p align="center">
7
+ <a href="https://www.npmjs.com/package/@getjack/jack"><img src="https://img.shields.io/npm/v/@getjack/jack" alt="npm"></a>
8
+ <a href="https://github.com/getjack-org/jack/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-blue" alt="license"></a>
9
+ <a href="https://docs.getjack.org"><img src="https://img.shields.io/badge/docs-getjack.org-green" alt="docs"></a>
10
+ <a href="https://discord.gg/fb64krv48R"><img src="https://img.shields.io/badge/discord-community-5865F2" alt="discord"></a>
11
+ </p>
12
+
13
+ ---
14
+
15
+ <p align="center">
16
+ <img src="https://docs.getjack.org/jack-demo.gif" alt="jack demo" width="600">
17
+ </p>
18
+
19
+ ---
20
+
21
+ You're vibecoding. Ideas are flowing. You want to ship.
22
+
23
+ But first: config files, deployment setup, secret management, debugging infrastructure errors...
24
+
25
+ **30 minutes later, the spark is gone.**
26
+
27
+ jack removes the friction between your idea and a live URL.
28
+
29
+ ```bash
30
+ bunx @getjack/jack new my-app # → deployed. live. done.
31
+ ```
32
+
33
+ That's it. Write code. Ship again with `jack ship`. Stay in flow.
34
+
35
+ ---
36
+
37
+ ## Why jack
38
+
39
+ **Instant deployment** — `jack new` creates AND deploys. You have a live URL before your first commit.
40
+
41
+ **Works with your agent** — Claude Code, Cursor, Codex, whatever. Every project includes AI context files so your agent understands the stack from prompt one.
42
+
43
+ **Roaming secrets** — Configure once, use across all projects. No more per-project secret ceremony.
44
+
45
+ **Project tracking** — 100 experiments scattered everywhere? `jack ls` finds them all.
46
+
47
+ **No lock-in** — Standard config files, standard TypeScript. Your projects work without jack installed.
48
+
49
+ ---
50
+
51
+ ## Quick Start
52
+
53
+ ```bash
54
+ # One command to create and deploy
55
+ bunx @getjack/jack new my-app
56
+
57
+ # Or install globally
58
+ bun add -g @getjack/jack
59
+ jack new my-app
60
+ ```
61
+
62
+ You'll need [Bun](https://bun.sh) and a Cloudflare account (free tier works).
63
+
64
+ ---
65
+
66
+ ## Commands
67
+
68
+ | Command | What it does |
69
+ |---------|--------------|
70
+ | `jack new <name>` | Create and deploy a new project |
71
+ | `jack ship` | Deploy current project |
72
+ | `jack ls` | Show all your projects |
73
+ | `jack open` | Open project in browser |
74
+ | `jack secrets` | Manage project secrets |
75
+ | `jack feedback` | Share feedback or report issues |
76
+
77
+ Full documentation at **[docs.getjack.org](https://docs.getjack.org)**
78
+
79
+ ---
80
+
81
+ ## Who This Is For
82
+
83
+ Builders who ship constantly. You spin up new projects all the time, and suddenly you have dozens scattered across your machine—each with its own env vars, secrets, and deploy setup you've already forgotten.
84
+
85
+ jack keeps you organized. One command to ship, one place to find everything, zero setup overhead. Stay creative, skip the ceremony.
86
+
87
+ ---
88
+
89
+ ## Philosophy
90
+
91
+ In Gibson's *Neuromancer*, "jacking in" means plugging directly into cyberspace. The body becomes irrelevant—you're pure thought in the matrix.
92
+
93
+ jack handles the infrastructure so you stay in creative flow. The boring parts disappear. You just build.
94
+
95
+ ---
96
+
97
+ ## License
98
+
99
+ Apache-2.0
100
+
101
+ <p align="center">
102
+ <i>Every deployment friction point is a creative thought lost.</i>
103
+ </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getjack/jack",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Ship before you forget why you started. The vibecoder's deployment CLI.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",