-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 2.43 KB
/
Copy pathindex.html
File metadata and controls
51 lines (51 loc) · 2.43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ccompactor — heavy machinery for light context</title>
<meta
name="description"
content="ccompactor turns a Claude Code, Codex CLI, or Pi session transcript into a compact, verified, provenance-linked handoff artifact that any other coding agent can continue from. Deterministic first: --llm none makes no network call."
/>
<meta name="theme-color" content="#FFD400" />
<!-- Small derivatives of the 1024px logo, generated with `sips -Z`; the full
mark is 390 kB and has no business being a favicon. -->
<link rel="icon" type="image/png" sizes="64x64" href="./favicon.png" />
<link rel="apple-touch-icon" sizes="192x192" href="./apple-touch-icon.png" />
<meta property="og:title" content="ccompactor — we compact your context" />
<meta
property="og:description"
content="Extract any coding agent's session into a compact, verified, provenance-linked handoff that any other agent can continue from. 103,757 events to 4,050 tokens in 2 seconds, with no model called."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ccompactor.github.io/" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap"
rel="stylesheet"
/>
<script>
// Resolve the theme before the first paint, so a reader whose OS is dark
// never sees a white flash. `src/theme.js` applies the same rule for
// changes made in the app; keep the two in step.
(function () {
try {
var preference = localStorage.getItem("ccompactor-theme") || "auto";
var dark =
preference === "dark" ||
(preference !== "light" &&
window.matchMedia("(prefers-color-scheme: dark)").matches);
document.documentElement.dataset.theme = dark ? "dark" : "light";
} catch (error) {
document.documentElement.dataset.theme = "light";
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>