-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheureka_installation_guide.html
More file actions
483 lines (427 loc) · 15.2 KB
/
eureka_installation_guide.html
File metadata and controls
483 lines (427 loc) · 15.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eureka — Installation Guide</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@200;300;400&family=DM+Mono:wght@400&display=swap');
:root {
--bg: #faf9f7;
--text: #2c2a28;
--text-dim: #8a8580;
--text-light: #b0aaa4;
--accent: #0078d4;
--accent-hover: #005a9e;
--border: #e8e4e0;
--surface: #f2f0ed;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
line-height: 1.7;
}
.page {
max-width: 680px;
margin: 0 auto;
padding: 6vh 2rem 8vh;
opacity: 0;
animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
position: relative;
z-index: 1;
}
h1 {
font-weight: 200;
font-size: clamp(1.6rem, 4vw, 2.4rem);
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--text);
margin-bottom: 0.3em;
}
h1::after {
content: '';
display: block;
width: 32px;
height: 1px;
background: linear-gradient(90deg, var(--border), transparent);
margin-top: 1.2em;
}
.intro {
font-weight: 300;
font-size: clamp(0.88rem, 1.3vw, 0.95rem);
color: var(--text-dim);
font-style: italic;
margin-bottom: 2rem;
line-height: 1.7;
}
h2 {
font-weight: 300;
font-size: clamp(0.85rem, 1.5vw, 1.05rem);
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--text-dim);
margin: 3rem 0 1.5rem;
}
h3 {
font-weight: 400;
font-size: clamp(1rem, 1.8vw, 1.2rem);
letter-spacing: 0.04em;
color: var(--text);
margin: 2.5rem 0 0.6rem;
}
p {
font-weight: 300;
font-size: clamp(0.88rem, 1.3vw, 0.95rem);
color: var(--text);
margin-bottom: 0.8em;
}
a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent-hover); }
code {
font-family: 'DM Mono', monospace;
font-size: 0.85em;
background: var(--surface);
padding: 0.15em 0.4em;
border-radius: 3px;
}
pre {
background: var(--surface);
padding: 1.2em 1.4em;
border-radius: 6px;
overflow-x: auto;
margin: 1em 0 1.5em;
border: 1px solid var(--border);
}
pre code {
background: none;
padding: 0;
font-size: 0.82rem;
line-height: 1.6;
color: var(--text);
}
.callout {
background: var(--surface);
border-left: 3px solid var(--accent);
padding: 1em 1.4em;
border-radius: 4px;
margin: 0 0 2rem;
font-weight: 300;
font-size: clamp(0.84rem, 1.2vw, 0.92rem);
color: var(--text-dim);
line-height: 1.7;
}
.callout strong { color: var(--text); }
.callout.tip {
border-left-color: #2ea043;
}
ul, ol {
font-weight: 300;
font-size: clamp(0.88rem, 1.3vw, 0.95rem);
margin: 0.5em 0 1.2em 1.5em;
color: var(--text);
}
li { margin-bottom: 0.4em; }
.steps {
counter-reset: step;
list-style: none;
margin-left: 0;
padding-left: 0;
}
.steps li {
counter-increment: step;
position: relative;
padding-left: 2.4em;
margin-bottom: 2em;
}
.steps li::before {
content: counter(step);
position: absolute;
left: 0;
top: 0.05em;
width: 1.6em;
height: 1.6em;
border-radius: 50%;
background: var(--surface);
border: 1px solid var(--border);
text-align: center;
line-height: 1.6em;
font-size: 0.78rem;
font-weight: 400;
color: var(--text-dim);
}
.screenshot {
display: block;
max-width: 100%;
border-radius: 8px;
border: 1px solid var(--border);
margin: 1em 0 1.5em;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.screenshot-caption {
font-size: 0.78rem;
color: var(--text-light);
font-weight: 300;
margin-top: -1em;
margin-bottom: 1.2em;
font-style: italic;
}
.copy-wrap {
position: relative;
}
.copy-wrap pre {
padding-right: 3em;
white-space: pre-wrap;
word-break: break-all;
background: #012456;
border-color: #1b3a6b;
}
.copy-wrap pre code {
color: #e8e8e8;
}
.copy-btn {
position: absolute;
top: 0.6em;
right: 0.6em;
background: #1b3a6b;
border: 1px solid #2a5599;
border-radius: 4px;
padding: 0.25em 0.5em;
cursor: pointer;
font-family: 'DM Mono', monospace;
font-size: 0.7rem;
color: #8cb4e0;
transition: all 0.2s;
line-height: 1;
}
.copy-btn:hover {
color: #fff;
border-color: #5b9bd5;
}
.copy-btn.copied {
color: #58d68d;
border-color: #58d68d;
}
.badge {
display: inline-block;
font-family: 'DM Mono', monospace;
font-size: 0.7rem;
padding: 0.15em 0.5em;
border-radius: 3px;
background: var(--accent);
color: #fff;
letter-spacing: 0.04em;
vertical-align: middle;
margin-left: 0.4em;
}
.badge.bonus {
background: #6b4fbb;
}
.anchor { text-decoration: none; color: var(--text-light); margin-left: 0.3em; opacity: 0; transition: opacity 0.3s; font-weight: 200; }
h1:hover .anchor, h2:hover .anchor, h3:hover .anchor, h4:hover .anchor { opacity: 1; }
.anchor:hover { color: var(--accent); }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(18px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<div class="page">
<h1 id="eureka">Eureka</h1>
<p style="font-size: 0.75rem; color: var(--text-light); font-weight: 200; margin-bottom: 2rem;">Installation Guide — Apr 1, 2026</p>
<p class="intro">Get up and running with Eureka in 5 minutes. Connect to M365, install the CLI, and start automating your workflow.</p>
<!-- STEP 1: INSTALL EUREKA -->
<h2 id="install">Install Eureka</h2>
<ol class="steps">
<li>
<strong>Open Windows PowerShell as Administrator</strong>
<p>Search for "Windows PowerShell" in the Start menu, then click <strong>Run as Administrator</strong>.</p>
<img class="screenshot" src="images/CleanShot_2026-04-01_at_09.44.16_at_2x.png" alt="Search for Windows PowerShell and click Run as Administrator">
</li>
<li>
<strong>Run the install command</strong>
<p>Paste the following command into the PowerShell window and press Enter:</p>
<div class="copy-wrap">
<button class="copy-btn" onclick="copyCmd(this)">copy</button>
<pre><code>irm https://arenas.blob.core.windows.net/dists/install.ps1 | iex</code></pre>
</div>
<img class="screenshot" src="images/CleanShot_2026-04-01_at_09.45.31_at_2x.png" alt="Running the install command in PowerShell">
</li>
</ol>
<!-- STEP 2: M365 CONNECTOR -->
<h2 id="m365-connector">Set up M365 Connector</h2>
<ol class="steps">
<li>
<strong>Install the browser extension</strong>
<p>Install the M365 Connector extension to your Edge browser from the Chrome Web Store:</p>
<p><a href="https://chromewebstore.google.com/detail/m365-connector/igchbccebjlcdogcboebgldjdihkdmbb" target="_blank" rel="noopener">Get M365 Connector extension</a></p>
<img class="screenshot" src="images/CleanShot_2026-04-01_at_09.48.04_at_2x.png" alt="Install M365 Connector extension in Edge">
</li>
<li>
<strong>Complete the setup wizard</strong>
<p>Follow the instructions in the browser to set up the M365 Connector. You'll be prompted to log in to <a href="https://m365.cloud.microsoft/search" target="_blank" rel="noopener">M365 Copilot</a> and <a href="https://developer.microsoft.com/en-us/graph/graph-explorer" target="_blank" rel="noopener">Graph Explorer</a> — click Next a few times. The trickiest part: on the Graph Explorer page, find the sign-in button shown below and click it.</p>
<img class="screenshot" src="images/image.png" alt="Click the sign-in button in Graph Explorer">
<p class="screenshot-caption">Look for the profile icon in the top-right corner of Graph Explorer</p>
</li>
</ol>
<!-- STEP 3: OPEN EUREKA -->
<h2 id="get-started">Get started</h2>
<ol class="steps">
<li>
<strong>Open Eureka and sign in</strong>
<p>Launch the Eureka app and log in with your GitHub account (<code>alias_microsoft</code>).</p>
</li>
<li>
<strong>Enable M365 Connector</strong>
<p>If you need access to M365 data (emails, Teams, calendar, files), enable the M365 Connector from the <strong>+</strong> menu in the chat input bar.</p>
<img class="screenshot" src="images/CleanShot_2026-04-01_at_09.53.00_at_2x.png" alt="Enable M365 Connector in Eureka">
</li>
<li>
<strong>Start using it</strong>
<p>Ask any question or have it perform tasks for you — research, writing docs, creating slides, and more.</p>
</li>
</ol>
<!-- BONUS: M365 CLI -->
<h2 id="m365-cli">M365 CLI <span class="badge bonus">bonus</span></h2>
<p>Want Eureka to automate things like sending Teams messages, composing emails, and scheduling meetings on your behalf? Install the M365 CLI:</p>
<ol class="steps">
<li>
<strong>Ask Eureka to install it for you</strong>
<p>Paste this into Eureka's chat:</p>
<div class="callout">Install the m365 cli and skill following: <a href="https://github.com/ttthree/m365-cli-docs/blob/main/skills/m365-cli/SKILL.md" target="_blank" rel="noopener">https://github.com/ttthree/m365-cli-docs/blob/main/skills/m365-cli/SKILL.md</a></div>
<p>Eureka will download and install the CLI, then walk you through authentication. Follow its instructions.</p>
</li>
<li>
<strong>Restart Eureka</strong>
<p>After the CLI and skill are installed, close and reopen Eureka so the new skill gets loaded.</p>
</li>
<li>
<strong>Try it out</strong>
<p>You can now ask Eureka to interact with M365 directly:</p>
<pre><code>> Say hi to Alex on Teams
> Schedule a 30min 1:1 with Sarah for 3PM tomorrow
> What emails did I get from my manager today?
> Read the agenda in this spreadsheet and schedule the meetings</code></pre>
</li>
</ol>
<!-- BONUS: CUSTOMIZATION -->
<h2 id="customize">Customization <span class="badge bonus">bonus</span></h2>
<p>You can customize Eureka's behavior via <strong>Settings → Preferences → Notes</strong>. Some useful examples:</p>
<ul>
<li>Append "(Sent by Eureka, might not be accurate)" to every message/email/calendar event sent on your behalf</li>
<li>Wait for approval before sending any Teams message, email, or calendar event unless explicitly told to send directly</li>
</ul>
<div class="callout tip"><strong>Need help?</strong> Ask Eureka itself — it can explain its own capabilities, troubleshoot issues, and guide you through advanced configuration.</div>
</div>
<script>
// Anchor links
document.querySelectorAll('h1, h2, h3, h4').forEach(function(h) {
if (!h.id) h.id = h.textContent.trim().toLowerCase().replace(/[^\w]+/g, '-').replace(/-$/, '');
var a = document.createElement('a');
a.href = '#' + h.id;
a.className = 'anchor';
a.textContent = '#';
h.appendChild(a);
});
// Copy button
function copyCmd(btn) {
const code = btn.parentElement.querySelector('code').textContent;
navigator.clipboard.writeText(code).then(() => {
btn.textContent = 'copied';
btn.classList.add('copied');
setTimeout(() => { btn.textContent = 'copy'; btn.classList.remove('copied'); }, 1500);
});
}
</script>
<!-- Ambient nebula effect -->
<script>
(() => {
const PALETTE = [
[0, 120, 212],
[0, 99, 177],
[16, 110, 190],
[0, 150, 214],
[80, 40, 170],
[0, 90, 158],
[50, 130, 200],
[30, 60, 150],
];
const canvas = document.createElement('canvas');
canvas.style.cssText =
'position:fixed;top:0;left:0;width:100%;height:100%;z-index:0;pointer-events:none';
document.body.prepend(canvas);
const ctx = canvas.getContext('2d');
let W, H, cx, cy;
function measure() {
W = canvas.width = innerWidth;
H = canvas.height = innerHeight;
const h1 = document.querySelector('h1');
if (h1) {
const r = h1.getBoundingClientRect();
cx = r.left + r.width / 2;
cy = r.top + scrollY + r.height / 2;
} else {
cx = W / 2;
cy = H * 0.12;
}
}
class Wisp {
constructor() { this.reset(true); }
reset(init) {
this.x = cx + (Math.random() - 0.5) * Math.min(W * 0.5, 480);
this.y = cy + (Math.random() - 0.5) * 100;
this.radius = 70 + Math.random() * 150;
this.life = init ? Math.random() * 550 : 0;
this.maxLife = 420 + Math.random() * 480;
this.vx = (Math.random() - 0.5) * 0.13;
this.vy = (Math.random() - 0.5) * 0.04;
this.angle = Math.random() * Math.PI * 2;
this.aSpeed = 0.0014 + Math.random() * 0.0028;
this.color = PALETTE[(Math.random() * PALETTE.length) | 0];
this.baseA = 0.038 + Math.random() * 0.05;
}
update() {
if (++this.life > this.maxLife) { this.reset(false); return; }
this.angle += this.aSpeed;
this.x += this.vx + Math.sin(this.angle) * 0.15;
this.y += this.vy + Math.cos(this.angle * 0.7) * 0.055;
this.radius += 0.05;
}
draw() {
const p = this.life / this.maxLife;
let a = this.baseA;
if (p < 0.15) a *= p / 0.15;
else if (p > 0.6) a *= (1 - p) / 0.4;
const [r, g, b] = this.color;
const rad = this.radius;
const gr = ctx.createRadialGradient(this.x, this.y, 0, this.x, this.y, rad);
gr.addColorStop(0, `rgba(${r},${g},${b},${a * 2.4})`);
gr.addColorStop(0.25, `rgba(${r},${g},${b},${a * 1.4})`);
gr.addColorStop(0.6, `rgba(${r},${g},${b},${a * 0.35})`);
gr.addColorStop(1, `rgba(${r},${g},${b},0)`);
ctx.fillStyle = gr;
ctx.fillRect(this.x - rad, this.y - rad, rad * 2, rad * 2);
}
}
measure();
addEventListener('resize', measure);
const wisps = Array.from({ length: 12 }, () => new Wisp());
(function render() {
const fade = Math.max(0, 1 - Math.max(0, scrollY - 40) / 240);
ctx.clearRect(0, 0, W, H);
if (fade > 0.002) {
ctx.globalAlpha = fade;
for (const w of wisps) { w.update(); w.draw(); }
ctx.globalAlpha = 1;
} else {
for (const w of wisps) w.update();
}
requestAnimationFrame(render);
})();
})();
</script>
</body>
</html>