-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
618 lines (586 loc) · 26.5 KB
/
Copy pathindex.html
File metadata and controls
618 lines (586 loc) · 26.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta name="description" content="PickleShell gives ChatGPT a secure path to a local OpenCode agent. A controlled bridge, not a public shell.">
<title>PickleShell — ChatGPT to OpenCode</title>
<link rel="icon" href="favicon.ico" sizes="48x48">
<link rel="icon" href="favicon-32x32.png" type="image/png" sizes="32x32">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<style>
:root {
--pickle: #7cb342;
--pickle-light: #aed581;
--pickle-dark: #558b2f;
--teal: #00796b;
--teal-deep: #004d40;
--cream: #fefcf3;
--cream-dark: #f5f0e0;
--ink: #1a1a2e;
--ink-mid: #3a3a52;
--ink-muted: #6b6b80;
--white: #ffffff;
--seed: #c5e17a;
--seed-dark: #9e9d24;
--danger: #e53935;
--max: 960px;
--radius: 16px;
--radius-sm: 10px;
--shadow: 0 2px 12px rgba(26,26,46,.07);
--shadow-lg: 0 8px 32px rgba(26,26,46,.1);
}
@media (prefers-color-scheme: dark) {
:root {
--cream: #111122;
--cream-dark: #1a1a30;
--ink: #e8e8f0;
--ink-mid: #b8b8cc;
--ink-muted: #8888a0;
--white: #1e1e34;
--shadow: 0 2px 12px rgba(0,0,0,.25);
--shadow-lg: 0 8px 32px rgba(0,0,0,.35);
}
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
color: var(--ink);
background: var(--cream);
font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
main { display: block; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration-skip-ink: auto; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--pickle); outline-offset: 3px; border-radius: 4px; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
/* ── NAV ────────────────────────────── */
header {
position: sticky; top: 0; z-index: 100;
background: color-mix(in srgb, var(--cream) 85%, transparent);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid color-mix(in srgb, var(--pickle-light) 25%, transparent);
}
nav {
display: flex; align-items: center; justify-content: space-between;
padding: 14px 0; gap: 16px;
}
.brand {
display: inline-flex; align-items: center; gap: 10px;
text-decoration: none; color: var(--ink); font-weight: 800; font-size: 1.15rem;
letter-spacing: -.02em;
}
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand span { position: relative; }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
text-decoration: none; font-size: .92rem; font-weight: 600;
padding: 6px 14px; border-radius: 999px;
transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--pickle-light); color: var(--teal-deep); }
.nav-links .gh-link {
background: var(--ink); color: var(--cream);
border: 1px solid transparent;
}
.nav-links .gh-link:hover { background: var(--teal-deep); }
/* ── HERO ────────────────────────────── */
.hero {
position: relative;
padding: 80px 0 72px;
overflow: hidden;
}
.hero > .wrap { max-width: 960px; }
.hero-inner {
display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px;
}
.hero-badge {
display: inline-flex; align-items: center; gap: 6px;
background: color-mix(in srgb, var(--pickle) 12%, transparent);
border: 1px solid color-mix(in srgb, var(--pickle) 30%, transparent);
padding: 5px 14px; border-radius: 999px;
font-size: .8rem; font-weight: 700; color: var(--pickle-dark);
letter-spacing: .04em; text-transform: uppercase;
margin-bottom: 16px;
max-width: 100%; white-space: normal; line-height: 1.35;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; background: var(--pickle); border-radius: 50%; }
.hero h1 {
font-size: clamp(2.4rem, 5.5vw, 3.8rem);
line-height: 1.08; letter-spacing: -.035em;
margin: 0 0 20px; font-weight: 900;
}
.hero h1 em {
font-style: normal;
background: linear-gradient(135deg, var(--pickle-dark), var(--teal));
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-lead {
max-width: 540px; color: var(--ink-muted); font-size: 1.15rem;
margin: 0 0 32px; line-height: 1.6;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 13px 24px; border-radius: 999px;
font: 600 .95rem/1 system-ui, sans-serif;
text-decoration: none; border: 2px solid transparent;
transition: transform .18s ease, box-shadow .18s ease, background .2s;
cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn-primary {
background: linear-gradient(135deg, var(--pickle), var(--pickle-dark));
color: var(--white); box-shadow: 0 4px 16px rgba(124,179,66,.3);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(124,179,66,.4); transform: translateY(-1px); }
.btn-secondary {
background: var(--white); color: var(--teal-deep);
border-color: var(--pickle-light);
}
@media (prefers-color-scheme: dark) {
.btn-secondary { background: var(--cream-dark); border-color: var(--teal); }
}
.btn-secondary:hover { border-color: var(--pickle); background: color-mix(in srgb, var(--pickle) 8%, var(--white)); }
.additional-repos {
padding: 34px 0 40px;
background: var(--cream-dark);
border-block: 1px solid color-mix(in srgb, var(--pickle-light) 30%, transparent);
}
.additional-repos .wrap {
display: grid; grid-template-columns: 1fr;
align-items: start; justify-items: start; gap: 14px;
}
.additional-repos-label {
margin: 0; color: var(--ink); font-size: 1rem; font-weight: 800;
letter-spacing: -.01em;
}
.repo-list { width: 100%; max-width: 620px; list-style: none; }
.repo-list li { border-bottom: 1px solid color-mix(in srgb, var(--pickle) 28%, transparent); }
.repo-list li:first-child { border-top: 1px solid color-mix(in srgb, var(--pickle) 28%, transparent); }
.repo-list a {
display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
padding: 11px 2px; color: var(--pickle-dark);
font-size: .94rem; font-weight: 750; text-decoration-thickness: 1.5px;
text-underline-offset: 3px;
transition: color .2s, padding-left .2s;
}
.repo-list a:hover {
padding-left: 6px; color: var(--teal-deep);
}
@media (prefers-color-scheme: dark) {
.repo-list a { color: var(--pickle-light); }
.repo-list a:hover { color: var(--seed); }
}
.hero-mascot {
position: relative;
width: 240px; height: 240px; flex-shrink: 0;
animation: mascot-bob 4s ease-in-out infinite;
}
.hero-mascot img {
width: 100%; height: 100%; object-fit: contain;
filter: none;
}
@keyframes mascot-bob {
0%, 100% { transform: translateY(0) rotate(0deg); }
25% { transform: translateY(-6px) rotate(1deg); }
75% { transform: translateY(4px) rotate(-1deg); }
}
/* ── Floating seed decorations ───── */
.seed-deco {
position: absolute; border-radius: 50% 50% 50% 0;
background: var(--seed); opacity: .18;
pointer-events: none; z-index: 0;
}
.seed-1 { width: 22px; height: 32px; top: 15%; right: 8%; animation: seed-drift 7s ease-in-out infinite; }
.seed-2 { width: 16px; height: 24px; bottom: 20%; left: 5%; animation: seed-drift 9s ease-in-out infinite 1s; transform: rotate(45deg); }
.seed-3 { width: 12px; height: 18px; top: 60%; right: 20%; animation: seed-drift 8s ease-in-out infinite 2s; transform: rotate(-30deg); }
@keyframes seed-drift {
0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
50% { transform: translateY(-12px) rotate(calc(var(--r, 0deg) + 10deg)); }
}
/* ── SECTION SHARED ──────────────────── */
section { padding: 80px 0; position: relative; }
.section-eyebrow {
display: inline-flex; align-items: center; gap: 8px;
font-size: .78rem; font-weight: 750; text-transform: uppercase;
letter-spacing: .08em; color: var(--pickle-dark);
margin-bottom: 12px;
}
.section-eyebrow .icon { font-size: 1.1rem; }
h2 {
font-size: clamp(1.8rem, 3.5vw, 2.6rem);
line-height: 1.12; letter-spacing: -.03em;
margin: 0 0 16px; font-weight: 850;
}
.section-lead {
max-width: 600px; color: var(--ink-muted);
font-size: 1.08rem; margin-bottom: 40px;
}
/* ── ARCHITECTURE ──────────────────── */
.arch-section { background: var(--cream-dark); }
.arch-section > .wrap,
.purpose-section > .wrap,
.usecase-section > .wrap,
.contact-section > .wrap,
.cta-section > .wrap { max-width: 960px; }
.arch-section > .wrap > h2,
.purpose-section > .wrap > h2,
.usecase-section > .wrap > h2,
.contact-section > .wrap > h2 { max-width: 760px; }
.purpose-section { background: var(--white); }
.purpose-layout {
display: grid;
grid-template-columns: 1fr auto;
gap: 48px;
align-items: start;
margin-top: 8px;
}
.purpose-text .section-lead { max-width: none; }
.purpose-image {
flex-shrink: 0;
width: 300px;
}
.purpose-image img {
width: 100%;
height: auto;
border-radius: var(--radius);
box-shadow: var(--shadow-lg);
display: block;
}
.purpose-image .image-caption {
font-size: .82rem;
color: var(--ink-muted);
text-align: center;
margin-top: 10px;
line-height: 1.3;
}
.usecase-section > .wrap { max-width: 960px; }
.usecase-layout {
display: grid;
grid-template-columns: 1fr 300px;
gap: 48px;
align-items: start;
margin-top: 8px;
}
.usecase-text .section-lead { max-width: none; }
.usecase-image {
flex-shrink: 0;
width: 300px;
}
.usecase-image img {
width: 100%;
height: auto;
display: block;
}
.contact-layout {
display: grid;
grid-template-columns: 1fr 300px;
gap: 48px;
align-items: start;
margin-top: 8px;
}
.contact-text .section-lead { max-width: none; }
.contact-image img {
width: 100%;
height: auto;
display: block;
}
.contact-section .contact-image {
width: 167px;
justify-self: center;
}
.usecase-section { background: var(--cream-dark); }
.contact-section { background: var(--white); }
.arch-flow {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0; align-items: stretch;
margin-top: 12px;
}
.arch-step {
position: relative;
background: var(--white);
border: 2px solid color-mix(in srgb, var(--pickle-light) 40%, transparent);
border-radius: var(--radius);
padding: 28px 20px;
text-align: center;
transition: transform .2s, box-shadow .2s;
box-shadow: var(--shadow);
}
.arch-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.arch-step.highlight {
border-color: var(--pickle);
background: linear-gradient(135deg, color-mix(in srgb, var(--pickle) 6%, var(--white)), var(--white));
}
.arch-step .step-icon {
width: 48px; height: 48px; margin: 0 auto 12px;
border-radius: 50%;
background: color-mix(in srgb, var(--pickle) 10%, transparent);
display: flex; align-items: center; justify-content: center;
font-size: 1.4rem;
}
.arch-step.highlight .step-icon {
background: color-mix(in srgb, var(--pickle) 15%, transparent);
}
.arch-step h3 { font-size: .95rem; margin: 0 0 6px; font-weight: 750; }
.arch-step p { font-size: .82rem; color: var(--ink-muted); margin: 0; line-height: 1.45; }
.arch-arrow {
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem; color: var(--pickle);
font-weight: 700;
}
/* ── SHOWCASE BAND ──────────────────── */
.showcase-band { background: #000; padding: 32px 0; }
.showcase-band img {
display: block;
margin: 0 auto;
width: auto;
max-width: 100%;
height: auto;
border-radius: 4px;
}
.showcase-band--example img,
.showcase-band--connect img {
margin-left: max(8px, calc((100% - 960px) / 2 - 24px));
margin-right: 0;
}
.showcase-band--example img { max-width: min(650px, 100%); }
.showcase-band--connect img { max-width: min(757px, 100%); }
/* ── CTA SECTION ──────────────────── */
.cta-section h2 { max-width: 600px; }
.cta-section .section-lead { margin-bottom: 32px; }
/* ── FOOTER ────────────────────────── */
footer {
padding: 32px 0 48px;
text-align: center;
color: var(--ink-muted);
font-size: .88rem;
border-top: 1px solid color-mix(in srgb, var(--pickle-light) 20%, transparent);
}
footer a { color: var(--pickle-dark); font-weight: 600; }
/* ── MOBILE ────────────────────────── */
@media (max-width: 860px) {
.hero-inner { grid-template-columns: 1fr; text-align: center; }
.hero-lead { margin-left: auto; margin-right: auto; }
.actions { justify-content: center; }
.hero-mascot { margin: 0 auto; width: 180px; height: 180px; order: -1; }
.arch-flow {
grid-template-columns: 1fr; gap: 12px;
}
.arch-arrow { transform: rotate(90deg); padding: 4px 0; }
.seed-deco { display: none; }
.purpose-layout { grid-template-columns: 1fr; }
.purpose-image { width: 100%; max-width: 300px; margin: 0 auto; }
.usecase-layout { grid-template-columns: 1fr; }
.usecase-image { width: 100%; max-width: 300px; margin: 24px auto 0; }
.contact-layout { grid-template-columns: 1fr; }
.contact-image { max-width: 300px; margin: 24px auto 0; }
}
@media (max-width: 540px) {
section { padding: 56px 0; }
.hero { padding: 52px 0 48px; }
.hero-mascot { width: 140px; height: 140px; }
nav ul { gap: 4px; }
.nav-links a { padding: 5px 10px; font-size: .84rem; }
.additional-repos { padding: 28px 0 34px; }
.additional-repos .wrap { grid-template-columns: 1fr; gap: 14px; }
.additional-repos-label { margin: 0; }
.repo-list { width: 100%; max-width: none; }
}
/* ── REDUCED MOTION ────────────────── */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.hero-mascot { animation: none; }
.seed-deco { animation: none; }
}
/* ── SKIP LINK ────────────────────── */
.skip-link {
position: absolute; top: -100%; left: 16px;
background: var(--pickle-dark); color: var(--white);
padding: 8px 16px; border-radius: 0 0 8px 8px;
font-weight: 700; text-decoration: none; z-index: 200;
transition: top .2s;
}
.skip-link:focus { top: 0; }
</style>
</head>
<body>
<a class="skip-link" href="#main">Skip to main content</a>
<header>
<div class="wrap">
<nav aria-label="Primary navigation">
<a class="brand" href="#top">
<img src="pickleshell-logo.png" alt="" width="36" height="36">
<span>PickleShell</span>
</a>
<ul class="nav-links">
<li><a href="#showcase">How it works</a></li>
<li><a href="#security">Security</a></li>
<li><a href="quick-notes.html">Quick Notes</a></li>
<li><a href="https://github.com/pickleshell/pickleshell" class="gh-link">GitHub</a></li>
</ul>
</nav>
</div>
</header>
<main id="main">
<!-- HERO -->
<section class="hero" id="top">
<div class="seed-deco seed-1" aria-hidden="true"></div>
<div class="seed-deco seed-2" aria-hidden="true"></div>
<div class="seed-deco seed-3" aria-hidden="true"></div>
<div class="wrap hero-inner">
<div>
<div class="hero-badge">Want to give your ChatGPT a gift? Give it PickleShell.</div>
<h1>Give ChatGPT a <em>local machine</em> to work with.</h1>
<p class="hero-lead">PickleShell connects ChatGPT Assistant to an OpenCode agent running on your machine. It can inspect repositories, edit files, run tests, transfer small files, and coordinate long-running tasks — turning ChatGPT from an advisor into an assistant that helps get the work done.</p>
<div class="actions">
<a class="btn btn-primary" href="https://github.com/pickleshell/pickleshell">View on GitHub</a>
<a class="btn btn-secondary" href="https://github.com/pickleshell/pickleshell/blob/main/docs/deployment.md">Deployment guide</a>
</div>
</div>
<div class="hero-mascot" aria-hidden="true">
<img src="pickleshell-crt-monitor.png" alt="PickleShell cucumber with CRT monitor" width="240" height="240">
</div>
</div>
</section>
<aside class="additional-repos" aria-labelledby="additional-repos-title">
<div class="wrap">
<h2 class="additional-repos-label" id="additional-repos-title">Additional repositories</h2>
<ul class="repo-list">
<li><a href="https://github.com/pickleshell/skills" target="_blank" rel="noopener noreferrer" aria-label="Skills repository on GitHub (opens in a new tab)">Skills <span aria-hidden="true">↗</span></a></li>
<li><a href="https://github.com/pickleshell/models-test" target="_blank" rel="noopener noreferrer" aria-label="Models Test repository on GitHub (opens in a new tab)">Models Test <span aria-hidden="true">↗</span></a></li>
<li><a href="model-benchmarks.html">Model benchmarks — overview and methodology</a></li>
<li><a href="model-comparison.html">Model comparison — ledger patch</a></li>
<li><a href="model-comparison-phase2-patch-current.html">Model comparison — retry-policy patch</a></li>
<li><a href="model-comparison-phase2.html">Model comparison — historical multi-task evidence (provisional)</a></li>
</ul>
</div>
</aside>
<!-- SHOWCASE -->
<section class="showcase-band showcase-band--example" id="showcase">
<img src="pickleshell-example1.png" alt="ChatGPT conversation demonstrating PickleShell creating a Git repository and README from an attached cucumber logo">
</section>
<!-- ARCHITECTURE -->
<section class="arch-section" id="architecture">
<div class="wrap">
<div class="section-eyebrow"><span class="icon">🌱</span> Architecture</div>
<h2>How PickleShell connects ChatGPT to your local machine</h2>
<p class="section-lead">ChatGPT sends a task to your local OpenCode agent, the agent works inside the selected workspace, and the results come back to ChatGPT so it can review the work and continue with the next step.</p>
<div class="arch-flow" role="list" aria-label="Request path through PickleShell">
<div class="arch-step" role="listitem">
<div class="step-icon">💬</div>
<h3>ChatGPT</h3>
<p>User prompt or file attachment</p>
</div>
<div class="arch-arrow" aria-hidden="true">➜</div>
<div class="arch-step highlight" role="listitem">
<div class="step-icon">🔒</div>
<h3>Secure MCP Tunnel</h3>
<p>Outbound-only, encrypted</p>
</div>
<div class="arch-arrow" aria-hidden="true">➜</div>
<div class="arch-step" role="listitem">
<div class="step-icon">🔧</div>
<h3>Gateway + OpenCode</h3>
<p>Authenticated, workspace-scoped execution</p>
</div>
</div>
</div>
</section>
<!-- PURPOSE -->
<section class="purpose-section" id="purpose">
<div class="wrap">
<div class="section-eyebrow"><span class="icon">💡</span> What it is for</div>
<h2>Put ChatGPT Assistant to work</h2>
<div class="purpose-layout">
<div class="purpose-text">
<p class="section-lead">PickleShell solves a practical problem: ChatGPT can analyze tasks, but it normally cannot work directly with a local repository.</p>
<p class="section-lead">Through PickleShell, ChatGPT sends instructions and small files to a local OpenCode agent, follows the execution, reads the result, and can continue in the same session when it passes the session ID.</p>
<p class="section-lead">The agent runs on your machine, inside a selected workspace, through a protected outbound-only tunnel. PickleShell removes the human relay between ChatGPT and OpenCode, while you remain the owner and observer.</p>
<p class="section-lead">PickleShell is for developers and experienced users. Installation is designed to be guided by Codex: ask it to clone the repository, read <code>AGENTS.md</code>, and walk you through the setup step by step. <code>AGENTS.md</code> covers the architecture, installation, tunnel configuration, plugin setup, and troubleshooting.</p>
</div>
<div class="purpose-image">
<img src="pickleshell-chatgpt-session.png" alt="Compact overview of a typical PickleShell session in ChatGPT" width="300" height="348">
<p class="image-caption">A typical PickleShell session in ChatGPT.</p>
</div>
</div>
</div>
</section>
<!-- USE CASE -->
<section class="usecase-section" id="use-case">
<div class="wrap">
<div class="section-eyebrow"><span class="icon">🚀</span> Use Case</div>
<h2>Let your ChatGPT Assistant control your empire</h2>
<div class="usecase-layout">
<div class="usecase-text">
<p class="section-lead">Create three PickleShell tunnels to three different machines, then give the plugins unique names: <code>PickleShell Mars</code>, <code>PickleShell Moon</code>, and <code>PickleShell Starbase</code>. The first tunnel connects to a machine on Mars, the second to a machine on the Moon, and the third to a machine at Starbase. Tell your ChatGPT Assistant which named plugin belongs to which machine, and it can route each task to the right destination.</p>
<p class="section-lead">With this setup, your ChatGPT Assistant can manage colonies on Mars and the Moon, as well as coordinate launches from Starbase to them — the big rockets Elon launches. The same pattern is useful today for everything from saving a technical specification to asking the OpenCode agent on a selected machine to carry out a complex task directly from ChatGPT.</p>
</div>
<div class="usecase-image">
<img src="pickleshell-control-your-empire.png" alt="PickleShell assistant coordinating computers, servers, browser, files, and code" width="300" height="300">
</div>
</div>
</div>
</section>
<!-- SECURITY -->
<section class="showcase-band showcase-band--connect" id="security">
<img src="pickleshell-connect.png" alt="ChatGPT connection dialog for adding the PickleShell app and reviewing its permissions">
</section>
<!-- CONTACT -->
<section class="contact-section" id="contact">
<div class="wrap">
<div class="section-eyebrow"><span class="icon">💬</span> Contact</div>
<h2>Have a question or found a problem?</h2>
<div class="contact-layout">
<div class="contact-text">
<p class="section-lead">Open an issue on GitHub to report a bug, suggest an improvement, or ask for help. Include the relevant setup details and steps to reproduce the problem.</p>
<div class="actions">
<a class="btn btn-primary" href="https://github.com/pickleshell/pickleshell/issues/new">Create an issue</a>
<a class="btn btn-secondary" href="https://github.com/pickleshell/pickleshell/issues">Browse issues</a>
</div>
</div>
<div class="contact-image">
<img src="pickleshell-support.png" alt="PickleShell assistant diagnosing a problem on a local computer" width="800" height="775">
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="cta-section">
<div class="wrap">
<div class="section-eyebrow"><span class="icon">🚀</span> Get started</div>
<h2>Ready to bridge ChatGPT and your local agent?</h2>
<div class="contact-layout">
<div class="contact-text">
<p class="section-lead">Read the deployment guide, configure the tunnel, refresh the PickleShell plugin in ChatGPT, and run the smoke checks before touching a production workspace.</p>
<div class="actions">
<a class="btn btn-primary" href="https://github.com/pickleshell/pickleshell/blob/main/docs/chatgpt.md">ChatGPT setup</a>
<a class="btn btn-secondary" href="https://github.com/pickleshell/pickleshell/blob/main/docs/deployment.md">Deployment guide</a>
<a class="btn btn-secondary" href="https://github.com/pickleshell/pickleshell/blob/main/SECURITY.md">Security model</a>
</div>
</div>
<div class="contact-image">
<img src="pickleshell-bridge.png" alt="PickleShell assistant completing a secure bridge to a local agent" width="800" height="496">
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="wrap">
PickleShell · <a href="https://github.com/pickleshell/pickleshell/blob/main/LICENSE">MIT License</a> · Pre-release 0.1.0
<br>
<small style="color:var(--ink-muted)">A secure bridge from ChatGPT to a local OpenCode agent.</small>
</div>
</footer>
</body>
</html>