-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
212 lines (200 loc) · 6.83 KB
/
index.html
File metadata and controls
212 lines (200 loc) · 6.83 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<title>Context-Driven Engineering (CDE) · Symbolic Matter</title>
<meta name="description" content="Context-Driven Engineering (CDE) treats context as the primary engineering artifact and code as a derived outcome, especially in AI-assisted development." />
<style>
:root{
--bg: #fbfbfc;
--panel: #ffffff;
--text: #1a1715;
--muted: #72655a;
--line: rgba(0,0,0,.10);
--shadow: 0 1px 2px rgba(0,0,0,.06), 0 12px 40px rgba(0,0,0,.05);
--link: #ff661a;
--link-hover: #d84b0f;
--code-bg: rgba(0,0,0,.04);
--radius: 16px;
--maxw: 860px;
}
@media (prefers-color-scheme: dark){
:root{
--bg: #100d0b;
--panel: #1a1410;
--text: #f2ede9;
--muted: #bdb0a7;
--line: rgba(255,255,255,.12);
--shadow: 0 1px 2px rgba(0,0,0,.50), 0 10px 36px rgba(0,0,0,.40);
--link: #ffb07f;
--link-hover: #ffc9a8;
--code-bg: rgba(255,255,255,.06);
}
}
*{ box-sizing: border-box; }
html,body{ height:100%; }
body::before{
content:"";
position: fixed;
inset: 0;
z-index: -1;
background:
radial-gradient(1200px 600px at 25% 0%, rgba(255,102,26,.10), transparent 60%),
radial-gradient(900px 500px at 85% 15%, rgba(0,0,0,.08), transparent 60%);
}
body{
margin:0;
background:var(--bg);
color:var(--text);
font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
letter-spacing: 0.1px;
}
a{ color:var(--link); text-decoration: none; }
a:hover{ color:var(--link-hover); text-decoration: underline; }
.wrap{
max-width: var(--maxw);
margin: 0 auto;
padding: 56px 20px 36px;
}
header{
margin-bottom: 18px;
}
h1{
font-size: clamp(34px, 4.5vw, 46px);
line-height: 1.08;
margin: 14px 0 20px;
letter-spacing: -0.6px;
}
.lead{
font-size: 18px;
color: var(--muted);
margin: 0 0 22px;
max-width: 70ch;
}
.panel{
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 22px 22px;
margin: 18px 0;
}
.cta{
display:flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin: 24px 14px;
}
.btn{
display:inline-flex;
align-items:center;
gap:10px;
padding: 10px 14px;
border-radius: 12px;
border: 1px solid var(--line);
background: linear-gradient(180deg, rgba(255,102,26,.14), rgba(255,102,26,.06));
color: var(--text);
font-weight: 600;
text-decoration: none;
}
.btn:hover{
text-decoration:none;
border-color: rgba(255,102,26,.45);
}
.btn.secondary{
background: transparent;
font-weight: 600;
}
.btn svg{ width: 18px; height: 18px; opacity: .9; }
ul{
margin: 12px 0 0 18px;
padding: 0;
}
li{ margin: 6px 0; }
hr{
border: 0;
height: 1px;
background: var(--line);
margin: 18px 0;
}
code{
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 0.95em;
background: var(--code-bg);
padding: 2px 6px;
border-radius: 8px;
border: 1px solid var(--line);
}
footer{
margin-top: 24px;
color: var(--muted);
font-size: 13px;
display:flex;
flex-wrap: wrap;
gap: 12px;
justify-content: space-between;
align-items: center;
}
.section-title{
font-size: 18px;
font-weight: 600;
margin: 14px 0 8px;
}
</style>
</head>
<body>
<div class="wrap">
<header>
<h1>Context-Driven Engineering</h1>
<p class="lead">
Context-Driven Engineering (CDE) treats <strong>context as the primary engineering artifact</strong>
and code as a derived outcome, especially in AI-assisted development.
The goal is simple: make design intent explicit enough that both humans and AI agents can work reliably.
</p>
</header>
<section class="panel" aria-label="Core idea">
<h2 class="section-title">CDE focuses on:</h2>
<ul>
<li><strong>Explicit design intent</strong> (vision, specs, architecture, constraints)</li>
<li><strong>Coherent documentation</strong> that is usable as execution context</li>
<li><strong>Reliable collaboration</strong> between humans and AI coding agents</li>
</ul>
<div class="cta">
<a class="btn" href="https://github.com/SymbolicMatter/context-driven-engineering" rel="noopener">
<svg viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
<path d="M12 2C6.477 2 2 6.484 2 12.019c0 4.424 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.009-.866-.014-1.7-2.782.605-3.369-1.343-3.369-1.343-.455-1.158-1.11-1.466-1.11-1.466-.908-.621.069-.609.069-.609 1.004.071 1.532 1.033 1.532 1.033.892 1.53 2.341 1.088 2.91.833.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.112-4.555-4.944 0-1.092.39-1.987 1.029-2.687-.103-.253-.446-1.271.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0 1 12 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.748-1.026 2.748-1.026.546 1.379.203 2.397.1 2.65.64.7 1.028 1.595 1.028 2.687 0 3.842-2.338 4.687-4.566 4.935.359.309.678.919.678 1.852 0 1.336-.012 2.415-.012 2.743 0 .268.18.58.688.481A10.02 10.02 0 0 0 22 12.019C22 6.484 17.523 2 12 2z"/>
</svg>
Reference repo on GitHub
</a>
</div>
</section>
<section class="panel" id="notes" aria-label="Notes">
<p class="small">
CDE is intentionally <strong>worldview-agnostic</strong>.
The reference repository includes an <strong>Object-Centric Design Worldview</strong>
as a worked example of an explicit design worldview, plus a set of practical agent rules in <code>AGENTS.md</code>.
</p>
<hr />
<p class="small">
If you’re looking for a framework, this probably isn’t it.
If you’re looking for a way to make AI-assisted engineering safer and more coherent,
you’re in the right place.
</p>
</section>
<footer>
<span>© Copyright <span id="year"></span> Symbolic Matter</span>
<span>
<a href="https://symbolicmatter.nl/">symbolicmatter.nl</a>
·
<a href="https://github.com/SymbolicMatter/context-driven-engineering" rel="noopener">GitHub</a>
</span>
</footer>
</div>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>