Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
help.tsx12.0 KB · 305 lines
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
/**
 * /help — public quickstart + API cheatsheet for owners migrating their
 * products onto gluecron. Covers the first five minutes (register, clone,
 * push), integration surfaces (SSH, import, webhooks, tokens), and the
 * AI-native extras (gates + AI review). Linked from the landing page nav.
 *
 * Uses softAuth so the nav bar renders with the signed-in user's session
 * cookie when present; the page itself is reachable without auth.
 */

import { Hono } from "hono";
import { Layout } from "../views/layout";
import { softAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";

const help = new Hono<AuthEnv>();
help.use("*", softAuth);

help.get("/help", (c) => {
  const user = c.get("user");

  return c.html(
    <Layout title="Help — gluecron" user={user}>
      <div style="max-width: 860px; margin: 0 auto; padding: 24px 16px">
        <h1 style="margin: 0 0 8px; font-size: 28px">Help & quickstart</h1>
        <p style="color: var(--text-muted); margin-bottom: 24px">
          Everything an owner migrating a product onto gluecron needs in one
          page. If something's unclear, open an issue — link at the bottom.
        </p>

        <nav
          class="panel"
          style="margin-bottom: 32px; padding: 12px 16px; font-size: 13px"
        >
          <strong
            style="display: block; margin-bottom: 6px; font-size: 12px; text-transform: uppercase; color: var(--text-muted)"
          >
            On this page
          </strong>
          <a href="#getting-started">Getting started</a> &middot;{" "}
          <a href="#git-https">Git over HTTPS</a> &middot;{" "}
          <a href="#git-ssh">Git over SSH</a> &middot;{" "}
          <a href="#import">Importing from GitHub</a> &middot;{" "}
          <a href="#webhooks">Webhooks</a> &middot;{" "}
          <a href="#tokens">Personal access tokens</a> &middot;{" "}
          <a href="#gates">Gates & AI review</a> &middot;{" "}
          <a href="#shortcuts">Keyboard shortcuts</a> &middot;{" "}
          <a href="#api">API</a>
        </nav>

        <section id="getting-started" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">Getting started</h2>
          <div class="panel">
            <div class="panel-item">
              <div>
                <strong>1. Register an account.</strong>{" "}
                Head to <a href="/register">/register</a>, pick a username, and
                set a password. Usernames are your public handle and appear in
                every repo URL.
              </div>
            </div>
            <div class="panel-item">
              <div>
                <strong>2. Verify your email.</strong>{" "}
                We send a one-time link the first time you sign in. Verified
                addresses can receive issue, PR, and gate-run notifications.
              </div>
            </div>
            <div class="panel-item">
              <div>
                <strong>3. Create your first repo.</strong>{" "}
                From the dashboard hit <strong>New repository</strong>, or
                visit <a href="/new">/new</a>. Pick public or private, add a
                README, and you're ready to clone.
              </div>
            </div>
          </div>
        </section>

        <section id="git-https" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">Git over HTTPS</h2>
          <p style="color: var(--text-muted); margin-bottom: 12px">
            HTTPS works out of the box. Authenticate with your account
            password or, better, a personal access token.
          </p>
          <div class="panel">
            <div class="panel-item">
              <div style="width: 100%">
                <strong>Clone</strong>
                <pre
                  style="margin: 6px 0 0; padding: 10px; background: var(--bg-muted, #0d1117); border-radius: 4px; font-size: 12px; overflow-x: auto"
                >
{`git clone https://<your-host>/<owner>/<repo>.git`}
                </pre>
              </div>
            </div>
            <div class="panel-item">
              <div style="width: 100%">
                <strong>Push</strong>
                <pre
                  style="margin: 6px 0 0; padding: 10px; background: var(--bg-muted, #0d1117); border-radius: 4px; font-size: 12px; overflow-x: auto"
                >
{`git push origin main`}
                </pre>
              </div>
            </div>
            <div class="panel-item">
              <div style="width: 100%">
                <strong>Pull</strong>
                <pre
                  style="margin: 6px 0 0; padding: 10px; background: var(--bg-muted, #0d1117); border-radius: 4px; font-size: 12px; overflow-x: auto"
                >
{`git pull origin main`}
                </pre>
              </div>
            </div>
          </div>
        </section>

        <section id="git-ssh" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">Git over SSH</h2>
          <p style="color: var(--text-muted); margin-bottom: 12px">
            SSH avoids typing credentials and is recommended for day-to-day
            work.
          </p>
          <div class="panel">
            <div class="panel-item">
              <div>
                <strong>1. Add your key.</strong>{" "}
                Copy your public key (usually{" "}
                <code>~/.ssh/id_ed25519.pub</code>) and paste it into{" "}
                <a href="/settings/keys">/settings/keys</a>. Keys take effect
                immediately.
              </div>
            </div>
            <div class="panel-item">
              <div style="width: 100%">
                <strong>2. Clone using the SSH URL.</strong>
                <pre
                  style="margin: 6px 0 0; padding: 10px; background: var(--bg-muted, #0d1117); border-radius: 4px; font-size: 12px; overflow-x: auto"
                >
{`git clone git@<your-host>:<owner>/<repo>.git`}
                </pre>
              </div>
            </div>
            <div class="panel-item">
              <div>
                <strong>3. Rotate or revoke</strong> any key from the same
                settings page — useful when a laptop walks off.
              </div>
            </div>
          </div>
        </section>

        <section id="import" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">
            Importing from GitHub
          </h2>
          <div class="panel">
            <div class="panel-item">
              <div>
                Visit <a href="/import">/import</a>, paste the source URL, and
                gluecron will mirror the repository — full history, branches,
                and tags. The mirror is a one-time copy; subsequent pushes
                land on gluecron, not the source. Private sources need a PAT
                on the source side.
              </div>
            </div>
          </div>
        </section>

        <section id="webhooks" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">Webhooks</h2>
          <p style="color: var(--text-muted); margin-bottom: 12px">
            Per-repo webhooks live at{" "}
            <code>/:owner/:repo/settings/webhooks</code>. Register a URL, pick
            events (push, issue, pr, star), and set a secret.
          </p>
          <div class="panel">
            <div class="panel-item">
              <div>
                <strong>HMAC signature.</strong>{" "}
                Every delivery includes{" "}
                <code>X-Gluecron-Signature: sha256=&lt;hex&gt;</code>.{" "}
                Compute HMAC-SHA256 over the raw request body using your
                secret and compare in constant time.
              </div>
            </div>
            <div class="panel-item">
              <div style="width: 100%">
                <strong>Payload shape.</strong>
                <pre
                  style="margin: 6px 0 0; padding: 10px; background: var(--bg-muted, #0d1117); border-radius: 4px; font-size: 12px; overflow-x: auto"
                >
{`{
  "event": "push",
  "repo": { "owner": "acme", "name": "api" },
  "ref": "refs/heads/main",
  "before": "<sha>",
  "after": "<sha>",
  "commits": [ /* ... */ ],
  "sender": { "username": "kit" }
}`}
                </pre>
              </div>
            </div>
            <div class="panel-item">
              <div>
                Deliveries are retried with exponential backoff; inspect the
                last N attempts from the webhook's settings page.
              </div>
            </div>
          </div>
        </section>

        <section id="tokens" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">
            Personal access tokens
          </h2>
          <p style="color: var(--text-muted); margin-bottom: 12px">
            Tokens authenticate CLI clients, CI jobs, and scripts. Create
            them at <a href="/settings/tokens">/settings/tokens</a>; the value
            is shown once, so copy it immediately. Tokens start with{" "}
            <code>glc_</code>.
          </p>
          <div class="panel">
            <div class="panel-item">
              <div style="width: 100%">
                <strong>Example: list your repos via the API.</strong>
                <pre
                  style="margin: 6px 0 0; padding: 10px; background: var(--bg-muted, #0d1117); border-radius: 4px; font-size: 12px; overflow-x: auto"
                >
{`curl -H "Authorization: Bearer glc_your_token_here" \\
  https://<your-host>/api/v2/repos`}
                </pre>
              </div>
            </div>
            <div class="panel-item">
              <div>
                Tokens can also authenticate <code>git</code> over HTTPS — use
                the token as the password in place of your account password.
              </div>
            </div>
          </div>
        </section>

        <section id="gates" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">
            Gates & AI review
          </h2>
          <div class="panel">
            <div class="panel-item">
              <div>
                Every push to the default branch (usually <code>main</code>)
                triggers a gate run: GateTest scans the diff for secrets,
                dependency advisories, and policy violations, while the AI
                reviewer reads the patch and comments on any PRs that touch
                the same files. Failing gates block the push by default;
                results appear on the commit page and in the repo's{" "}
                <em>Gate runs</em> tab. Configure gate policy per-repo in
                <strong> Settings → Gates</strong>.
              </div>
            </div>
          </div>
        </section>

        <section id="shortcuts" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">
            Keyboard shortcuts
          </h2>
          <div class="panel">
            <div class="panel-item">
              <div>
                gluecron ships a full keyboard-first mode — see{" "}
                <a href="/shortcuts">/shortcuts</a> for the complete cheat
                sheet. Press <code>?</code> on any page to pop the overlay.
              </div>
            </div>
          </div>
        </section>

        <section id="api" style="margin-bottom: 32px">
          <h2 style="margin-bottom: 12px; font-size: 20px">API</h2>
          <div class="panel">
            <div class="panel-item">
              <div>
                Full REST + GraphQL reference lives at{" "}
                <a href="/api/docs">/api/docs</a>. The GraphQL explorer is at{" "}
                <a href="/api/graphql">/api/graphql</a>.
              </div>
            </div>
          </div>
        </section>

        <p
          style="color: var(--text-muted); font-size: 13px; margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--border)"
        >
          Something missing? Open an issue on gluecron's source repo.
        </p>
      </div>
    </Layout>
  );
});

export default help;