CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
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 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | /**
* Command Center — the live dashboard.
*
* This is the developer's mission control. One screen that shows:
* - All your repos with health scores at a glance
* - Live push feed (what just happened, risk scores, repairs)
* - CI status for every repo
* - Security alerts
* - Quick actions (rollback, repair, deploy)
*
* Plus intelligence settings — toggle auto-repair, scanning, etc.
*
* GitHub gives you a feed of stars and follows.
* gluecron gives you a COMMAND CENTER.
*/
import { Hono } from "hono";
import { eq, desc, and } from "drizzle-orm";
import { db } from "../db";
import {
repositories,
users,
activityFeed,
issues,
pullRequests,
} from "../db/schema";
import { Layout } from "../views/layout";
import { LiveFeed } from "../views/live-feed";
import { softAuth, requireAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";
import {
computeHealthScore,
detectCIConfig,
} from "../lib/intelligence";
import {
repoExists,
getDefaultBranch,
listCommits,
listBranches,
} from "../git/repository";
const dashboard = new Hono<AuthEnv>();
dashboard.use("*", softAuth);
// ─── COMMAND CENTER ──────────────────────────────────────────
dashboard.get("/dashboard", requireAuth, async (c) => {
const user = c.get("user")!;
// Get all user's repos
const repos = await db
.select()
.from(repositories)
.where(eq(repositories.ownerId, user.id))
.orderBy(desc(repositories.updatedAt));
// Compute health scores for all repos (in parallel)
const repoData = await Promise.all(
repos.map(async (repo) => {
let healthScore = 0;
let healthGrade = "?" as string;
let recentCommits = 0;
let branchCount = 0;
let ciConfig = null;
try {
if (await repoExists(user.username, repo.name)) {
const ref =
(await getDefaultBranch(user.username, repo.name)) || "main";
const [health, commits, branches, ci] = await Promise.all([
computeHealthScore(user.username, repo.name).catch(() => null),
listCommits(user.username, repo.name, ref, 5).catch(() => []),
listBranches(user.username, repo.name).catch(() => []),
detectCIConfig(user.username, repo.name, ref).catch(() => null),
]);
if (health) {
healthScore = health.score;
healthGrade = health.grade;
}
recentCommits = commits.length;
branchCount = branches.length;
ciConfig = ci;
}
} catch {
// best effort
}
return {
repo,
healthScore,
healthGrade,
recentCommits,
branchCount,
ciConfig,
};
})
);
// Get recent activity
let recentActivity: Array<{
action: string;
repoName: string;
metadata: string | null;
createdAt: Date;
}> = [];
try {
const repoIds = repos.map((r) => r.id);
if (repoIds.length > 0) {
const activity = await db
.select({
action: activityFeed.action,
metadata: activityFeed.metadata,
createdAt: activityFeed.createdAt,
repoId: activityFeed.repositoryId,
})
.from(activityFeed)
.where(eq(activityFeed.userId, user.id))
.orderBy(desc(activityFeed.createdAt))
.limit(20);
recentActivity = activity.map((a) => ({
action: a.action,
repoName: repos.find((r) => r.id === a.repoId)?.name || "unknown",
metadata: a.metadata,
createdAt: a.createdAt,
}));
}
} catch {
// DB not required for dashboard
}
const gradeColor = (grade: string) =>
grade === "A+" || grade === "A"
? "var(--green)"
: grade === "B"
? "#58a6ff"
: grade === "C"
? "var(--yellow)"
: grade === "?"
? "var(--text-muted)"
: "var(--red)";
return c.html(
<Layout title="Command Center" user={user}>
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px">
<div>
<h1 style="font-size: 28px; margin-bottom: 4px">Command Center</h1>
<p style="color: var(--text-muted); font-size: 14px">
Real-time overview of all your repositories
</p>
</div>
<div style="display: flex; gap: 8px">
<a href="/new" class="btn btn-primary">+ New repo</a>
<a href="/settings" class="btn">Settings</a>
</div>
</div>
{/* ─── Stats Bar ─── */}
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 32px">
<StatBox
label="Repositories"
value={String(repos.length)}
color="var(--text-link)"
/>
<StatBox
label="Avg Health"
value={
repos.length > 0
? String(
Math.round(
repoData.reduce((s, r) => s + r.healthScore, 0) /
Math.max(repoData.filter((r) => r.healthScore > 0).length, 1)
)
)
: "—"
}
color="var(--green)"
/>
<StatBox
label="Total Stars"
value={String(repos.reduce((s, r) => s + r.starCount, 0))}
color="var(--yellow)"
/>
<StatBox
label="Open Issues"
value={String(repos.reduce((s, r) => s + r.issueCount, 0))}
color="var(--red)"
/>
</div>
{/* ─── Repo Grid ─── */}
<h2 style="font-size: 18px; margin-bottom: 16px">Your Repositories</h2>
{repos.length === 0 ? (
<div class="empty-state" style="text-align:left;padding:24px">
<div style="text-align:center;margin-bottom:20px">
<h2 style="margin-bottom:6px">Get started</h2>
<p style="color:var(--text-muted);font-size:14px;margin:0">
Ship safer code with AI-native hosting, automated CI, and push-time gates. Pick a path:
</p>
</div>
<div class="panel" style="margin-bottom:20px;text-align:left">
<div class="panel-item" style="justify-content:space-between;padding:16px;gap:12px">
<div style="flex:1">
<div style="font-size:15px;font-weight:600">Create a new repository</div>
<div style="font-size:13px;color:var(--text-muted);margin-top:2px">
Start from scratch with green-ecosystem defaults.
</div>
</div>
<a href="/new" class="btn btn-primary">Create repo</a>
</div>
<div class="panel-item" style="justify-content:space-between;padding:16px;gap:12px">
<div style="flex:1">
<div style="font-size:15px;font-weight:600">Import from GitHub</div>
<div style="font-size:13px;color:var(--text-muted);margin-top:2px">
Mirror an existing repo — history, branches, tags.
</div>
</div>
<a href="/import" class="btn">Import repo</a>
</div>
<div class="panel-item" style="justify-content:space-between;padding:16px;gap:12px">
<div style="flex:1">
<div style="font-size:15px;font-weight:600">Browse public repos</div>
<div style="font-size:13px;color:var(--text-muted);margin-top:2px">
See what others are building, fork what you like.
</div>
</div>
<a href="/explore" class="btn">Browse</a>
</div>
</div>
<div style="background:var(--bg-secondary);border:1px solid var(--border);border-radius:var(--radius);padding:14px 16px">
<div style="font-size:12px;color:var(--text-muted);margin-bottom:6px;text-transform:uppercase;letter-spacing:0.5px">
Push an existing project (preview)
</div>
<pre style="margin:0;font-size:12px;overflow-x:auto;color:var(--text-muted)"><code># Once you create a repo, you'll see your real clone URL here.
git remote add gluecron http://localhost:3000/{user.username}/<your-repo>.git
git push -u gluecron main</code></pre>
</div>
</div>
) : (
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 16px; margin-bottom: 32px">
{repoData.map(({ repo, healthScore, healthGrade, recentCommits, branchCount, ciConfig }) => (
<div class="card" style="padding: 0; overflow: hidden">
{/* Health bar at top */}
<div
style={`height: 4px; background: ${gradeColor(healthGrade)}; width: ${healthScore}%; transition: width 0.3s`}
/>
<div style="padding: 16px">
<div style="display: flex; justify-content: space-between; align-items: start; margin-bottom: 8px">
<div>
<h3 style="font-size: 16px; margin-bottom: 2px">
<a href={`/${user.username}/${repo.name}`}>{repo.name}</a>
</h3>
{repo.description && (
<p style="font-size: 12px; color: var(--text-muted); margin-bottom: 0">
{repo.description}
</p>
)}
</div>
<div style="text-align: center; flex-shrink: 0; margin-left: 12px">
<div
style={`font-size: 20px; font-weight: 800; color: ${gradeColor(healthGrade)}`}
>
{healthGrade}
</div>
<div style="font-size: 10px; color: var(--text-muted)">
{healthScore}/100
</div>
</div>
</div>
<div style="display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-top: 8px">
<span>{branchCount} branch{branchCount !== 1 ? "es" : ""}</span>
<span>{"\u2606"} {repo.starCount}</span>
{repo.isPrivate && <span class="badge" style="font-size: 10px">Private</span>}
</div>
{ciConfig && ciConfig.commands.length > 0 && (
<div style="margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap">
{ciConfig.detected.slice(0, 3).map((d) => (
<span
class="badge"
style="font-size: 10px; background: rgba(31, 111, 235, 0.1); color: var(--text-link); border-color: var(--accent)"
>
{d}
</span>
))}
</div>
)}
<div style="display: flex; gap: 6px; margin-top: 12px">
<a
href={`/${user.username}/${repo.name}/health`}
class="btn btn-sm"
style="font-size: 11px; padding: 2px 8px"
>
Health
</a>
<a
href={`/${user.username}/${repo.name}/dependencies`}
class="btn btn-sm"
style="font-size: 11px; padding: 2px 8px"
>
Deps
</a>
<a
href={`/${user.username}/${repo.name}/coupling`}
class="btn btn-sm"
style="font-size: 11px; padding: 2px 8px"
>
Insights
</a>
<a
href={`/${user.username}/${repo.name}/settings`}
class="btn btn-sm"
style="font-size: 11px; padding: 2px 8px"
>
Settings
</a>
</div>
</div>
</div>
))}
</div>
)}
{/* ─── Activity Feed ─── */}
{recentActivity.length > 0 && (
<>
<h2 style="font-size: 18px; margin-bottom: 16px">Recent Activity</h2>
<div class="issue-list">
{recentActivity.map((a) => (
<div class="issue-item">
<div style="display: flex; gap: 8px; align-items: center">
<ActivityIcon action={a.action} />
<div>
<span style="font-size: 14px">
{formatAction(a.action)} in{" "}
<a href={`/${user.username}/${a.repoName}`}>
{a.repoName}
</a>
</span>
<div style="font-size: 12px; color: var(--text-muted)">
{formatRelative(a.createdAt)}
</div>
</div>
</div>
</div>
))}
</div>
</>
)}
{/* ─── Live Activity (SSE) ─── */}
<LiveFeed topic={`user:${user.id}`} title="Live activity" />
{/* ─── Quick Links ─── */}
<div style="margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap">
<a href="/explore" class="btn">Browse public repos</a>
<a href="/settings/tokens" class="btn">API tokens</a>
<a href="/settings/keys" class="btn">SSH keys</a>
</div>
</Layout>
);
});
// ─── INTELLIGENCE SETTINGS PER REPO ──────────────────────────
dashboard.get(
"/:owner/:repo/settings/intelligence",
requireAuth,
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const user = c.get("user")!;
const success = c.req.query("success");
return c.html(
<Layout title={`Intelligence — ${ownerName}/${repoName}`} user={user}>
<div style="max-width: 600px">
<h2 style="margin-bottom: 20px">Intelligence Settings</h2>
<p style="color: var(--text-muted); font-size: 14px; margin-bottom: 20px">
Control what gluecron does automatically when code is pushed to{" "}
<strong>{ownerName}/{repoName}</strong>.
</p>
{success && (
<div class="auth-success">{decodeURIComponent(success)}</div>
)}
<form
method="post"
action={`/${ownerName}/${repoName}/settings/intelligence`}
>
<ToggleSetting
name="auto_repair"
label="Auto-Repair"
description="Automatically fix whitespace, missing .gitignore, broken JSON, and masked secrets on every push"
defaultChecked={true}
/>
<ToggleSetting
name="security_scan"
label="Security Scanning"
description="Scan for hardcoded secrets, injection vulnerabilities, weak crypto, and other security issues"
defaultChecked={true}
/>
<ToggleSetting
name="health_score"
label="Health Score"
description="Compute and track repository health score (security, testing, complexity, deps, docs, activity)"
defaultChecked={true}
/>
<ToggleSetting
name="push_analysis"
label="Push Risk Analysis"
description="Analyze every push for breaking changes, removed exports, API changes, and compute risk score"
defaultChecked={true}
/>
<ToggleSetting
name="dep_analysis"
label="Dependency Analysis"
description="Build import graph, detect unused deps, find circular dependencies"
defaultChecked={true}
/>
<ToggleSetting
name="gatetest"
label="GateTest Integration"
description="Send push events to GateTest for external security scanning"
defaultChecked={true}
/>
<ToggleSetting
name="deploy_webhook"
label="Auto-Deploy Webhook"
description="POST to your configured deploy webhook when pushing to the default branch"
defaultChecked={true}
/>
<button
type="submit"
class="btn btn-primary"
style="margin-top: 12px"
>
Save settings
</button>
</form>
</div>
</Layout>
);
}
);
dashboard.post(
"/:owner/:repo/settings/intelligence",
requireAuth,
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
// In production, these would be saved to DB per-repo
// For now, acknowledge the settings
return c.redirect(
`/${ownerName}/${repoName}/settings/intelligence?success=Settings+saved`
);
}
);
// ─── PUSH LOG ────────────────────────────────────────────────
dashboard.get("/:owner/:repo/pushes", softAuth, async (c) => {
const { owner, repo } = c.req.param();
const user = c.get("user");
if (!(await repoExists(owner, repo))) return c.notFound();
const ref = (await getDefaultBranch(owner, repo)) || "main";
const commits = await listCommits(owner, repo, ref, 30);
return c.html(
<Layout title={`Push Log — ${owner}/${repo}`} user={user}>
<div style="max-width: 900px">
<h2 style="margin-bottom: 4px">Push Log</h2>
<p style="color: var(--text-muted); font-size: 14px; margin-bottom: 20px">
Every push analyzed in real-time — risk scores, repairs, security alerts
</p>
<div class="issue-list">
{commits.map((commit) => {
// Determine if this was an auto-repair commit
const isRepair =
commit.author === "gluecron[bot]" ||
commit.message.includes("auto-repair");
const isRollback = commit.message.startsWith("revert: rollback");
return (
<div class="issue-item" style="flex-direction: column; align-items: stretch">
<div style="display: flex; justify-content: space-between; align-items: start">
<div style="display: flex; gap: 8px; align-items: start">
{isRepair ? (
<span
style="color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px"
title="Auto-repair"
>
{"⚡"}
</span>
) : isRollback ? (
<span
style="color: var(--yellow); font-size: 16px; flex-shrink: 0; margin-top: 2px"
title="Rollback"
>
{"↩"}
</span>
) : (
<span
style="color: var(--text-link); font-size: 16px; flex-shrink: 0; margin-top: 2px"
>
{"→"}
</span>
)}
<div>
<a
href={`/${owner}/${repo}/commit/${commit.sha}`}
style="font-weight: 600; font-size: 14px"
>
{commit.message}
</a>
<div style="font-size: 12px; color: var(--text-muted); margin-top: 2px">
{commit.author} —{" "}
{new Date(commit.date).toLocaleString("en-US", {
month: "short",
day: "numeric",
hour: "2-digit",
minute: "2-digit",
})}
</div>
</div>
</div>
<a
href={`/${owner}/${repo}/commit/${commit.sha}`}
class="commit-sha"
>
{commit.sha.slice(0, 7)}
</a>
</div>
{isRepair && (
<div
style="margin-top: 8px; padding: 8px 12px; background: rgba(63, 185, 80, 0.1); border-radius: var(--radius); font-size: 12px; color: var(--green)"
>
Automatically repaired by gluecron
</div>
)}
</div>
);
})}
</div>
</div>
</Layout>
);
});
// ─── COMPONENTS ──────────────────────────────────────────────
const StatBox = ({
label,
value,
color,
}: {
label: string;
value: string;
color: string;
}) => (
<div
style="background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center"
>
<div style={`font-size: 28px; font-weight: 700; color: ${color}`}>
{value}
</div>
<div style="font-size: 12px; color: var(--text-muted); margin-top: 2px">
{label}
</div>
</div>
);
const ToggleSetting = ({
name,
label,
description,
defaultChecked,
}: {
name: string;
label: string;
description: string;
defaultChecked: boolean;
}) => (
<div
style="display: flex; justify-content: space-between; align-items: start; padding: 16px 0; border-bottom: 1px solid var(--border)"
>
<div style="flex: 1">
<div style="font-size: 15px; font-weight: 600">{label}</div>
<div style="font-size: 13px; color: var(--text-muted); margin-top: 2px">
{description}
</div>
</div>
<label class="toggle-switch">
<input type="checkbox" name={name} value="on" checked={defaultChecked} aria-label={label} />
<span class="toggle-slider" />
</label>
</div>
);
const ActivityIcon = ({ action }: { action: string }) => {
const icons: Record<string, string> = {
push: "→",
issue_open: "\u25CB",
issue_close: "\u2713",
pr_open: "\u25CB",
pr_merge: "\u2B8C",
star: "\u2605",
fork: "\u2442",
comment: "\u{1F4AC}",
};
return (
<span style="font-size: 16px; width: 20px; text-align: center; flex-shrink: 0">
{icons[action] || "•"}
</span>
);
};
function formatAction(action: string): string {
const labels: Record<string, string> = {
push: "Pushed code",
issue_open: "Opened issue",
issue_close: "Closed issue",
pr_open: "Opened pull request",
pr_merge: "Merged pull request",
star: "Starred",
fork: "Forked",
comment: "Commented",
};
return labels[action] || action;
}
function formatRelative(date: Date | string): string {
const d = typeof date === "string" ? new Date(date) : date;
const now = new Date();
const diffMs = now.getTime() - d.getTime();
const diffMins = Math.floor(diffMs / 60000);
if (diffMins < 1) return "just now";
if (diffMins < 60) return `${diffMins}m ago`;
const diffHours = Math.floor(diffMins / 60);
if (diffHours < 24) return `${diffHours}h ago`;
const diffDays = Math.floor(diffHours / 24);
if (diffDays < 30) return `${diffDays}d ago`;
return d.toLocaleDateString("en-US", {
month: "short",
day: "numeric",
});
}
export default dashboard;
|