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
|
import { Hono } from "hono";
import { eq } from "drizzle-orm";
import { db } from "../db";
import { repositories } from "../db/schema";
import type { Repository } from "../db/schema";
import { Layout } from "../views/layout";
import { RepoHeader } from "../views/components";
import { softAuth, requireAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";
import { requireRepoAccess } from "../middleware/repo-access";
import {
getAutomationSettings,
upsertAutomationSettings,
normalizeMode,
type AutomationMode,
type AutomationSettings,
} from "../lib/automation-settings";
const automationSettings = new Hono<AuthEnv>();
automationSettings.use("*", softAuth);
const automationStyles = `
.automation-container { max-width: 1080px; margin: 0 auto; padding: 0 var(--space-3) var(--space-8); }
.automation-hero {
position: relative;
margin: var(--space-5) 0;
padding: var(--space-5) var(--space-6);
background: var(--bg-elevated);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
}
.automation-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--border-strong);
pointer-events: none;
}
.automation-hero-eyebrow {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 6px;
}
.automation-hero-title {
font-family: var(--font-display);
font-size: clamp(26px, 4vw, 36px);
font-weight: 800;
letter-spacing: -0.028em;
line-height: 1.05;
margin: 0 0 var(--space-2);
color: var(--text-strong);
}
.automation-hero-sub {
font-size: 14.5px;
color: var(--text-muted);
margin: 0;
line-height: 1.55;
max-width: 680px;
}
.automation-hero-sub code {
font-family: var(--font-mono);
font-size: 12.5px;
background: var(--bg-tertiary);
padding: 1px 5px;
border-radius: 4px;
}
.automation-banner {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 16px;
border-radius: 12px;
font-size: 13.5px;
margin-bottom: var(--space-4);
line-height: 1.5;
}
.automation-banner-success {
background: rgba(52,211,153,0.08);
color: #6ee7b7;
box-shadow: inset 0 0 0 1px rgba(52,211,153,0.30);
}
.automation-banner-error {
background: rgba(248,113,113,0.08);
color: #fca5a5;
box-shadow: inset 0 0 0 1px rgba(248,113,113,0.30);
}
.automation-card {
background: var(--bg-elevated);
border: 1px solid var(--border);
border-radius: 14px;
overflow: hidden;
margin-bottom: var(--space-5);
}
.automation-table { width: 100%; border-collapse: collapse; }
.automation-table th {
text-align: left;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-muted);
padding: 12px var(--space-5);
border-bottom: 1px solid var(--border);
}
.automation-table td {
padding: 14px var(--space-5);
border-bottom: 1px solid var(--border);
vertical-align: top;
}
.automation-table tr:last-child td { border-bottom: none; }
.automation-feature-name {
font-weight: 600;
font-size: 13.5px;
color: var(--text-strong);
white-space: nowrap;
}
.automation-feature-desc {
font-size: 12.5px;
color: var(--text-muted);
line-height: 1.5;
max-width: 520px;
}
.automation-feature-desc code {
font-family: var(--font-mono);
font-size: 11.5px;
background: var(--bg-tertiary);
padding: 1px 4px;
border-radius: 4px;
}
.automation-select {
background: var(--bg-tertiary);
color: var(--text-strong);
border: 1px solid var(--border);
border-radius: 8px;
padding: 6px 10px;
font-size: 13px;
min-width: 150px;
}
.automation-env-pill {
display: inline-block;
font-size: 11px;
font-weight: 600;
padding: 2px 8px;
border-radius: 9999px;
background: rgba(91,110,232,0.12);
color: #5b6ee8;
white-space: nowrap;
}
.automation-foot {
padding: var(--space-3) var(--space-5);
border-top: 1px solid var(--border);
background: rgba(255,255,255,0.012);
display: flex;
justify-content: flex-end;
align-items: center;
gap: var(--space-3);
}
.automation-foot-hint {
margin-right: auto;
font-size: 12.5px;
color: var(--text-muted);
}
.automation-cta {
display: inline-flex;
align-items: center;
gap: 7px;
padding: 9px 18px;
background: var(--accent);
color: #fff;
border: none;
border-radius: 9px;
font-size: 13.5px;
font-weight: 600;
cursor: pointer;
}
.automation-cta:hover { filter: brightness(1.08); }
`;
function ModeSelect(props: {
name: string;
value: AutomationMode;
modes: AutomationMode[];
labels?: Partial<Record<AutomationMode, string>>;
}) {
const defaultLabels: Record<AutomationMode, string> = {
off: "Off",
suggest: "Suggest (manual)",
auto: "Automatic",
};
return (
<select class="automation-select" name={props.name} aria-label={props.name}>
{props.modes.map((m) => (
<option value={m} selected={m === props.value}>
{props.labels?.[m] ?? defaultLabels[m]}
</option>
))}
</select>
);
}
automationSettings.get(
"/:owner/:repo/settings/automation",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const user = c.get("user")!;
const repo = c.get("repository" as never) as Repository;
const success = c.req.query("success");
const error = c.req.query("error");
const settings = await getAutomationSettings(repo.id);
return c.html(
<Layout title={`Automation — ${ownerName}/${repoName}`} user={user}>
<RepoHeader owner={ownerName} repo={repoName} />
<style dangerouslySetInnerHTML={{ __html: automationStyles }} />
<div class="automation-container">
<div class="automation-hero">
<div class="automation-hero-eyebrow">Repository settings</div>
<h1 class="automation-hero-title">Automation</h1>
<p class="automation-hero-sub">
Every automation on this repository in one place. <strong>Off</strong>{" "}
disables a feature, <strong>Suggest</strong> posts advisory
comments and leaves the action to you, <strong>Automatic</strong>{" "}
lets Gluecron act on its own. Server-level kill-switches (e.g. a
missing <code>ANTHROPIC_API_KEY</code>) always win — a feature
disabled in the environment stays off no matter what you pick
here.
</p>
</div>
{success && (
<div class="automation-banner automation-banner-success">
{decodeURIComponent(success)}
</div>
)}
{error && (
<div class="automation-banner automation-banner-error">
{decodeURIComponent(error)}
</div>
)}
<form method="post" action={`/${ownerName}/${repoName}/settings/automation`}>
<div class="automation-card" style="margin-bottom: var(--space-4);">
<div style="padding: 14px var(--space-5); border-bottom: 1px solid var(--border);">
<div style="font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;">Direct actions — these automations modify your repository</div>
<div style="font-size: 12.5px; color: var(--text-muted);">These three automations commit code or open PRs/issues on your behalf. Off by default.</div>
</div>
<div style="display: flex; gap: var(--space-4); padding: var(--space-4) var(--space-5); flex-wrap: wrap;">
<label style="display: flex; align-items: center; gap: 10px; cursor: pointer; min-width: 200px;">
<input type="checkbox" name="auto_repair_quick" value="suggest"
checked={settings.autoRepairMode !== "off"}
onChange="this.form.querySelector('[name=auto_repair_mode]').value = this.checked ? 'suggest' : 'off'"
style="width: 16px; height: 16px; cursor: pointer;" />
<div>
<div style="font-size: 13px; font-weight: 600; color: var(--text-strong);">Auto-repair</div>
<div style="font-size: 11.5px; color: var(--text-muted);">Commits fixes to your branch</div>
</div>
</label>
<label style="display: flex; align-items: center; gap: 10px; cursor: pointer; min-width: 200px;">
<input type="checkbox" name="auto_issues_quick" value="suggest"
checked={settings.autoIssuesMode !== "off"}
onChange="this.form.querySelector('[name=auto_issues_mode]').value = this.checked ? 'suggest' : 'off'"
style="width: 16px; height: 16px; cursor: pointer;" />
<div>
<div style="font-size: 13px; font-weight: 600; color: var(--text-strong);">Auto-issues</div>
<div style="font-size: 11.5px; color: var(--text-muted);">Opens issues for TODOs and security patterns</div>
</div>
</label>
<label style="display: flex; align-items: center; gap: 10px; cursor: pointer; min-width: 200px;">
<input type="checkbox" name="doc_drift_quick" value="suggest"
checked={settings.docDriftMode !== "off"}
onChange="this.form.querySelector('[name=doc_drift_mode]').value = this.checked ? 'suggest' : 'off'"
style="width: 16px; height: 16px; cursor: pointer;" />
<div>
<div style="font-size: 13px; font-weight: 600; color: var(--text-strong);">Doc-drift PRs</div>
<div style="font-size: 11.5px; color: var(--text-muted);">Opens PRs when docs drift from source</div>
</div>
</label>
</div>
</div>
<div class="automation-card">
<table class="automation-table">
<thead>
<tr>
<th>Automation</th>
<th>What it does</th>
<th>Mode</th>
</tr>
</thead>
<tbody>
<tr>
<td class="automation-feature-name">AI code review</td>
<td class="automation-feature-desc">
Claude reviews every non-draft PR diff on open and posts
a summary plus inline findings. Review comments are
always advisory.
</td>
<td>
<ModeSelect
name="ai_review_mode"
value={settings.aiReviewMode}
modes={["off", "suggest"]}
labels={{ suggest: "Suggest (on)" }}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">PR triage</td>
<td class="automation-feature-desc">
Suggests labels, reviewers, priority, and a risk area as
a comment when a PR opens. Nothing is applied for you.
</td>
<td>
<ModeSelect
name="pr_triage_mode"
value={settings.prTriageMode}
modes={["off", "suggest"]}
labels={{ suggest: "Suggest (on)" }}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">Issue triage</td>
<td class="automation-feature-desc">
Suggests labels, priority, and possible duplicates as a
comment when an issue is created.
</td>
<td>
<ModeSelect
name="issue_triage_mode"
value={settings.issueTriageMode}
modes={["off", "suggest"]}
labels={{ suggest: "Suggest (on)" }}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">Auto-merge</td>
<td class="automation-feature-desc">
Merges a PR once every branch-protection gate is green.
Still default-deny per branch — a rule with{" "}
<a href={`/${ownerName}/${repoName}/settings#branch-protection`}>
auto-merge enabled
</a>{" "}
must match the base branch. <em>Suggest</em> evaluates
and records the decision but leaves the Merge click to a
human.
</td>
<td>
<ModeSelect
name="auto_merge_mode"
value={settings.autoMergeMode}
modes={["off", "suggest", "auto"]}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">CI auto-fix</td>
<td class="automation-feature-desc">
When a gate run fails on a PR, posts a ready-to-apply
patch (repair-cache first, then Claude). <em>Suggest</em>{" "}
stops at the comment with an Apply Fix button;{" "}
<em>Automatic</em> also applies the patch onto a{" "}
<code>fix/</code> branch.
</td>
<td>
<ModeSelect
name="ci_autofix_mode"
value={settings.ciAutofixMode}
modes={["off", "suggest", "auto"]}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">AI test generation</td>
<td class="automation-feature-desc">
Writes tests for new code when a PR opens and commits
them onto the same branch. Acts on its own once enabled.
</td>
<td>
<ModeSelect
name="auto_generate_tests"
value={repo.autoGenerateTests ? "auto" : "off"}
modes={["off", "auto"]}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">Dependency updates</td>
<td class="automation-feature-desc">
Daily patch/minor dependency bumps; auto-merges when the
gate passes, opens a PR with an AI migration guide when
it fails. Also needs <code>DEP_UPDATER_ENABLED=1</code>{" "}
on the server.{" "}
<a href={`/${ownerName}/${repoName}/settings/dep-updater`}>
Run history →
</a>
</td>
<td>
<ModeSelect
name="dep_updater_enabled"
value={
(repo as { depUpdaterEnabled?: boolean })
.depUpdaterEnabled
? "auto"
: "off"
}
modes={["off", "auto"]}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">Auto-repair</td>
<td class="automation-feature-desc">
After every push, the bot scans the diff for common
issues (hardcoded secrets, insecure patterns, whitespace)
and <strong>commits fixes directly to your branch</strong>.{" "}
Set to <strong>Off</strong> to prevent the bot from
modifying your branch.
</td>
<td>
<ModeSelect
name="auto_repair_mode"
value={settings.autoRepairMode}
modes={["off", "suggest"]}
labels={{ suggest: "On (auto-commit)" }}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">Auto-issues</td>
<td class="automation-feature-desc">
Scans the diff on each push for TODO/FIXME comments,
hardcoded secrets, and SQL injection patterns. Opens one
issue per finding type per file (capped at 5 per push).
Requires <code>AI_AUTO_ISSUES=1</code> server-side.
</td>
<td>
<ModeSelect
name="auto_issues_mode"
value={settings.autoIssuesMode}
modes={["off", "suggest"]}
labels={{ suggest: "On" }}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">Doc-drift PRs</td>
<td class="automation-feature-desc">
After each push, checks whether docs marked with{" "}
<code>{""}</code> have drifted
from their referenced source. Opens a PR labelled{" "}
<code>ai:doc-update</code> when they have.
</td>
<td>
<ModeSelect
name="doc_drift_mode"
value={settings.docDriftMode}
modes={["off", "suggest"]}
labels={{ suggest: "On" }}
/>
</td>
</tr>
<tr>
<td class="automation-feature-name">AI loop (issue → PR → merge)</td>
<td class="automation-feature-desc">
The fully-autonomous build loop. Controlled by the
server-level <code>AI_LOOP_ENABLED=1</code> flag — there
is no per-repo dial for it today.
</td>
<td>
<span class="automation-env-pill">env-controlled</span>
</td>
</tr>
</tbody>
</table>
<div class="automation-foot">
<span class="automation-foot-hint">
Defaults match prior behavior — saving without changes
changes nothing.
</span>
<button type="submit" class="automation-cta">
Save automation settings <span>→</span>
</button>
</div>
</div>
</form>
</div>
</Layout>
);
}
);
automationSettings.post(
"/:owner/:repo/settings/automation",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const repo = c.get("repository" as never) as Repository;
const body = await c.req.parseBody();
const base = `/${ownerName}/${repoName}/settings/automation`;
try {
await upsertAutomationSettings(repo.id, {
aiReviewMode: normalizeMode(body["ai_review_mode"], "suggest"),
prTriageMode: normalizeMode(body["pr_triage_mode"], "suggest"),
issueTriageMode: normalizeMode(body["issue_triage_mode"], "suggest"),
autoMergeMode: normalizeMode(body["auto_merge_mode"], "off"),
ciAutofixMode: normalizeMode(body["ci_autofix_mode"], "suggest"),
autoRepairMode: normalizeMode(body["auto_repair_mode"], "off"),
autoIssuesMode: normalizeMode(body["auto_issues_mode"], "off"),
docDriftMode: normalizeMode(body["doc_drift_mode"], "off"),
});
await db
.update(repositories)
.set({
autoGenerateTests: body["auto_generate_tests"] === "auto",
depUpdaterEnabled: body["dep_updater_enabled"] === "auto",
updatedAt: new Date(),
})
.where(eq(repositories.id, repo.id));
} catch (err) {
console.error(
"[automation-settings] save failed:",
err instanceof Error ? err.message : err
);
return c.redirect(
`${base}?error=${encodeURIComponent("Could not save automation settings. Please try again.")}`
);
}
return c.redirect(
`${base}?success=${encodeURIComponent("Automation settings saved.")}`
);
}
);
export default automationSettings;
|