-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
156 lines (152 loc) · 5.52 KB
/
Copy pathindex.html
File metadata and controls
156 lines (152 loc) · 5.52 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>forgekit — cognitive infrastructure for AI coding agents</title>
<meta
name="description"
content="Shared memory, impact analysis, and guardrail hooks for AI coding agents — authored once, emitted as native config for Claude Code, Codex, Cursor, Gemini, Aider, and more."
/>
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#f7f3ed"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#171310"
/>
<link rel="canonical" href="https://codewithjuber.github.io/forgekit/" />
<!-- Open Graph / Twitter -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://codewithjuber.github.io/forgekit/"
/>
<meta
property="og:title"
content="forgekit — cognitive infrastructure for AI coding agents"
/>
<meta
property="og:description"
content="Shared memory, impact analysis, and guardrail hooks for AI coding agents — authored once, emitted as native config for Claude Code, Codex, Cursor, Gemini, Aider, and more."
/>
<meta
property="og:image"
content="https://codewithjuber.github.io/forgekit/og.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="forgekit — cognitive infrastructure for AI coding agents"
/>
<meta
name="twitter:description"
content="Shared memory, impact analysis, and guardrail hooks for AI coding agents — authored once, emitted as native config for Claude Code, Codex, Cursor, Gemini, Aider, and more."
/>
<meta
name="twitter:image"
content="https://codewithjuber.github.io/forgekit/og.png"
/>
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<!--
Critical CSS. The app chunks below are fetched from jsDelivr, so without this the
shell paints white until they land. These are the brand.json color tokens verbatim
(both schemes) plus the shared system font stack, so the pre-hydration paint is
already branded. Parity with brand.json is enforced by test/pages.test.js — change a
hex there and the test fails until this block is updated too.
-->
<style>
:root {
color-scheme: dark;
--bg: #171310;
--bg-2: #201a15;
--panel: #201a15;
--panel-2: #272019;
--text: #f2ede7;
--muted: #a99e90;
--faint: #8a7d6d;
--line: #372c22;
--line-strong: #4a3b2e;
--brand: #f26430;
--brand-2: #f7a072;
--ok: #67e8a5;
--sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
--mono:
ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
@media (prefers-color-scheme: light) {
:root {
color-scheme: light;
--bg: #f7f3ed;
--bg-2: #fffdf9;
--panel: #fffdf9;
--panel-2: #efe7db;
--text: #201a15;
--muted: #6b5f50;
--faint: #7e7161;
--line: #e2d6c4;
--line-strong: #cbbba3;
--brand: #ba4b1e;
--brand-2: #b8481c;
--ok: #1b7e48;
}
}
html,
body {
margin: 0;
background: var(--bg);
color: var(--text);
}
body {
font-family: var(--sans);
-webkit-font-smoothing: antialiased;
}
</style>
<!-- Fonts: Fraunces 500 (opsz auto) · Inter 400/500/600 · JetBrains Mono 400/500/600 -->
<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=Fraunces:opsz,wght@9..144,500&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@19.2.0",
"react/jsx-runtime": "https://esm.sh/react@19.2.0/jsx-runtime",
"react/jsx-dev-runtime": "https://esm.sh/react@19.2.0/jsx-dev-runtime",
"react-dom": "https://esm.sh/react-dom@19.2.0",
"react-dom/client": "https://esm.sh/react-dom@19.2.0/client",
"gsap": "https://esm.sh/gsap@3.15.0",
"gsap/ScrollTrigger": "https://esm.sh/gsap@3.15.0/ScrollTrigger",
"gsap/CustomEase": "https://esm.sh/gsap@3.15.0/CustomEase",
"framer-motion": "https://esm.sh/framer-motion@12.42.2?external=react,react-dom"
}
}
</script>
<script
type="module"
crossorigin
src="https://cdn.jsdelivr.net/gh/CodeWithJuber/forgekit@53683ed8009ff739f7c48f1d5a1ccc21a7ba5b4c/landing/assets/index-Bzzxm3eY.js"
></script>
<link
rel="stylesheet"
crossorigin
href="https://cdn.jsdelivr.net/gh/CodeWithJuber/forgekit@53683ed8009ff739f7c48f1d5a1ccc21a7ba5b4c/landing/assets/c-core-mp0_m1PM-a.css"
/>
<link
rel="stylesheet"
crossorigin
href="https://cdn.jsdelivr.net/gh/CodeWithJuber/forgekit@53683ed8009ff739f7c48f1d5a1ccc21a7ba5b4c/landing/assets/c-core-mp0_m1PM-b.css"
/>
</head>
<body>
<div id="root"></div>
</body>
</html>