-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
906 lines (873 loc) · 29.4 KB
/
index.html
File metadata and controls
906 lines (873 loc) · 29.4 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
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
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ANA MAX - Advanced Neural Architecture</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
:root {
--bg: #0b1020;
--panel: #111827;
--panel2: #172033;
--line: rgba(125, 154, 190, 0.22);
--line2: rgba(84, 175, 255, 0.45);
--text: #eef4ff;
--muted: #9fb0c7;
--blue: #4ea1ff;
--green: #39d98a;
--amber: #f7b955;
--red: #ff6b6b;
--violet: #a78bfa;
}
body {
margin: 0;
min-height: 100vh;
background:
radial-gradient(circle at 20% 0%, rgba(78, 161, 255, 0.14), transparent 30%),
linear-gradient(180deg, #0b1020 0%, #090d18 100%);
color: var(--text);
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.shell {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
padding: 28px 0 56px;
}
.topbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 28px;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
min-width: 0;
}
.mark {
width: 38px;
height: 38px;
border: 1px solid var(--line2);
border-radius: 8px;
display: grid;
place-items: center;
color: var(--blue);
font-weight: 800;
box-shadow: 0 0 24px rgba(78, 161, 255, 0.18);
}
.brand h1 {
margin: 0;
font-size: 20px;
letter-spacing: 0;
}
.brand p {
margin: 2px 0 0;
color: var(--muted);
font-size: 13px;
}
.nav {
display: flex;
gap: 8px;
flex-wrap: wrap;
justify-content: flex-end;
}
.nav a, .tab, .copy {
border: 1px solid var(--line);
background: rgba(17, 24, 39, 0.8);
color: var(--muted);
border-radius: 8px;
padding: 8px 12px;
font-size: 13px;
text-decoration: none;
cursor: pointer;
}
.nav a:hover, .tab:hover, .copy:hover {
border-color: var(--line2);
color: var(--text);
}
.hero {
display: grid;
grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
gap: 22px;
align-items: stretch;
}
.intro {
min-height: 520px;
display: flex;
flex-direction: column;
justify-content: center;
}
.badge {
width: fit-content;
border: 1px solid rgba(57, 217, 138, 0.35);
color: var(--green);
background: rgba(57, 217, 138, 0.08);
border-radius: 8px;
padding: 7px 10px;
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
font-size: 12px;
}
.intro h2 {
margin: 20px 0 14px;
font-size: clamp(42px, 8vw, 78px);
line-height: 0.95;
letter-spacing: 0;
}
.intro .lead {
margin: 0 0 22px;
max-width: 650px;
color: var(--muted);
font-size: 17px;
line-height: 1.65;
}
.actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.button {
border: 1px solid var(--line2);
background: rgba(78, 161, 255, 0.14);
color: var(--text);
border-radius: 8px;
padding: 11px 14px;
font-weight: 650;
text-decoration: none;
}
.button.demo-hot {
border-color: rgba(255, 107, 107, 0.9);
background: #c81e1e;
color: #ffffff;
box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 10px 28px rgba(200,30,30,0.26);
}
.button.demo-hot:hover,
.button.demo-hot:focus {
background: #ef4444;
border-color: #ffb4b4;
color: #ffffff;
}
.button.secondary {
border-color: var(--line);
background: rgba(17, 24, 39, 0.76);
color: var(--muted);
}
.stats {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin-top: 28px;
}
.stat, .panel, .card, .codebox, .demo, .promise {
background: rgba(17, 24, 39, 0.82);
border: 1px solid var(--line);
border-radius: 8px;
}
.stat {
padding: 15px;
}
.stat strong {
display: block;
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
color: var(--blue);
font-size: 26px;
}
.stat span {
display: block;
margin-top: 4px;
color: var(--muted);
font-size: 12px;
}
.panel {
min-height: 520px;
padding: 18px;
overflow: hidden;
}
.panel-head {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
margin-bottom: 14px;
}
.panel-head h3 {
margin: 0;
font-size: 14px;
}
.panel-head span {
color: var(--muted);
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
font-size: 12px;
}
svg {
display: block;
width: 100%;
height: auto;
}
.wg-node {
cursor: pointer;
transform-box: fill-box;
transform-origin: center;
transition: transform 160ms ease, filter 160ms ease;
}
.wg-node rect {
transition: stroke 160ms ease, stroke-width 160ms ease, fill 160ms ease;
}
.wg-node:hover,
.wg-node.active {
transform: scale(1.045);
filter: drop-shadow(0 0 14px rgba(78, 161, 255, 0.26));
}
.wg-node.active rect {
stroke: var(--green);
stroke-width: 2.4;
fill: rgba(57, 217, 138, 0.13);
}
.wg-node:focus {
outline: none;
}
.wg-node:focus rect {
stroke: var(--amber);
stroke-width: 2.4;
}
.l.active {
stroke: var(--green);
stroke-width: 2.6;
}
.l {
cursor: pointer;
transition: stroke 160ms ease, stroke-width 160ms ease;
}
.wg-detail {
margin-top: 14px;
border: 1px solid var(--line);
border-radius: 8px;
background: rgba(23, 32, 51, 0.62);
padding: 14px;
}
.wg-detail strong {
display: block;
color: var(--green);
font-size: 14px;
margin-bottom: 6px;
}
.wg-detail p {
margin: 0 0 10px;
color: var(--muted);
line-height: 1.5;
font-size: 13px;
}
.wg-detail code {
color: var(--text);
background: rgba(11, 16, 32, 0.7);
border: 1px solid var(--line);
border-radius: 6px;
padding: 6px 8px;
display: block;
overflow-x: auto;
white-space: nowrap;
}
.wg-controls {
display: flex;
gap: 8px;
margin-top: 12px;
}
.wg-controls button {
border: 1px solid var(--line);
border-radius: 6px;
background: rgba(78, 161, 255, 0.12);
color: var(--text);
cursor: pointer;
font-weight: 700;
padding: 8px 11px;
}
.wg-controls button:hover,
.wg-controls button:focus {
border-color: var(--blue);
outline: none;
}
.tabs {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin: 30px 0 14px;
}
.tab.active {
color: var(--blue);
border-color: var(--line2);
background: rgba(78, 161, 255, 0.12);
}
.section { display: none; }
.section.active { display: block; }
.demo {
margin-top: 30px;
padding: 18px;
}
.demo-layout {
display: grid;
grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
gap: 18px;
align-items: center;
}
.demo video {
display: block;
width: 100%;
aspect-ratio: 16 / 9;
border: 1px solid var(--line);
border-radius: 8px;
background: #050914;
}
.demo h3 {
margin: 0 0 8px;
font-size: 22px;
}
.demo p {
margin: 0 0 12px;
color: var(--muted);
line-height: 1.6;
}
.demo ol {
margin: 0;
padding-left: 20px;
color: var(--muted);
line-height: 1.7;
font-size: 14px;
}
.promise {
margin-top: 18px;
padding: 18px;
}
.promise h3 {
margin: 0 0 8px;
font-size: 20px;
}
.promise p {
margin: 0 0 14px;
color: var(--muted);
line-height: 1.65;
}
.promise-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 10px;
}
.promise-item {
border: 1px solid var(--line);
border-radius: 8px;
padding: 12px;
background: rgba(23, 32, 51, 0.58);
}
.promise-item strong {
display: block;
margin-bottom: 5px;
color: var(--text);
font-size: 13px;
}
.promise-item span {
color: var(--muted);
font-size: 12px;
line-height: 1.45;
}
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.card {
padding: 16px;
}
.card h3 {
margin: 0 0 8px;
font-size: 15px;
}
.card p, .card li {
color: var(--muted);
line-height: 1.55;
font-size: 13px;
}
.card ul {
margin: 10px 0 0;
padding-left: 18px;
}
.codebox {
margin-top: 12px;
overflow: hidden;
}
.codebar {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
padding: 10px 12px;
border-bottom: 1px solid var(--line);
background: rgba(23, 32, 51, 0.82);
}
.codebar span {
color: var(--muted);
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
font-size: 12px;
}
pre {
margin: 0;
padding: 14px;
overflow-x: auto;
color: #dce9ff;
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
font-size: 12px;
line-height: 1.6;
}
code {
font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
color: #dce9ff;
}
footer {
margin-top: 38px;
color: var(--muted);
font-size: 13px;
display: flex;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
@media (max-width: 900px) {
.hero, .grid, .demo-layout, .promise-grid { grid-template-columns: 1fr; }
.intro, .panel { min-height: auto; }
}
@media (max-width: 620px) {
.topbar { align-items: flex-start; flex-direction: column; }
.nav { justify-content: flex-start; }
.stats { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<div class="shell">
<header class="topbar">
<div class="brand">
<div class="mark">A</div>
<div>
<h1>ANA MAX</h1>
<p>Advanced Neural Architecture</p>
</div>
</div>
<nav class="nav" aria-label="Primary">
<a href="#architecture">Architecture</a>
<a href="#demo">Demo</a>
<a href="videos.html">Videos</a>
<a href="#tab-mcp" onclick="showTab('mcp')">MCP</a>
<a href="#tab-license" onclick="showTab('license')">License</a>
<a href="docs/ANA_MAX_WOW_DEMO.md">Wow Demo</a>
<a href="https://github.com/gyodragos-cell/ANA-MAX-v0.1.0-beta---Advanced-Neural-Architecture" target="_blank" rel="noreferrer">GitHub</a>
</nav>
</header>
<main>
<section class="hero" id="architecture">
<div class="intro">
<div class="badge">local QA lab / offline agents / MCP auth on</div>
<h2>Give local AI agents eyes, hands, and verification.</h2>
<p class="lead">
ANA MAX is a Windows-first MCP runtime for QA labs, private
workstations, offline LLMs, and AI coding agents that need to see the
workspace, inspect the desktop, use focused tools, instrument runtime
behavior when needed, speak status, and verify the result.
</p>
<div class="actions">
<a class="button demo-hot" href="https://www.youtube.com/watch?v=yIWILEd6glU" target="_blank" rel="noreferrer">Watch demo 1</a>
<a class="button demo-hot" href="https://youtu.be/2Ft9eRO7GzM" target="_blank" rel="noreferrer">Watch demo 2</a>
<a class="button secondary" href="docs/ANA_MAX_WOW_DEMO.md">90s proof script</a>
<a class="button secondary" href="#tab-mcp" onclick="showTab('mcp')">Connect MCP</a>
<a class="button secondary" href="#tab-checks" onclick="showTab('checks')">Run checks</a>
</div>
<div class="stats" aria-label="Release stats">
<div class="stat"><strong>64</strong><span>loaded tools</span></div>
<div class="stat"><strong>4</strong><span>premium capabilities</span></div>
<div class="stat"><strong>9</strong><span>AI Core adapters</span></div>
</div>
</div>
<div class="panel" aria-label="Architecture diagram">
<div class="panel-head">
<h3>Runtime WorkGraph</h3>
<span>observe -> act -> verify</span>
</div>
<svg viewBox="0 0 760 560" role="img" aria-label="ANA MAX architecture diagram">
<defs>
<marker id="arrow" viewBox="0 0 10 10" refX="8" refY="5" markerWidth="6" markerHeight="6" orient="auto-start-reverse">
<path d="M2 1 L8 5 L2 9" fill="none" stroke="#4ea1ff" stroke-width="1.5"/>
</marker>
<style>
.box { fill: rgba(17,24,39,.92); stroke: rgba(84,175,255,.45); stroke-width: 1.3; }
.box2 { fill: rgba(57,217,138,.09); stroke: rgba(57,217,138,.55); stroke-width: 1.3; }
.box3 { fill: rgba(247,185,85,.1); stroke: rgba(247,185,85,.58); stroke-width: 1.3; }
.box4 { fill: rgba(167,139,250,.1); stroke: rgba(167,139,250,.55); stroke-width: 1.3; }
.t { fill: #eef4ff; font: 700 16px system-ui, sans-serif; }
.s { fill: #9fb0c7; font: 12px ui-monospace, Consolas, monospace; }
.l { stroke: rgba(84,175,255,.55); stroke-width: 1.4; marker-end: url(#arrow); }
</style>
</defs>
<g class="wg-node active" data-node="clients" tabindex="0" role="button" aria-label="MCP clients">
<rect class="box2" x="230" y="18" width="300" height="58" rx="8"/>
<text class="t" x="380" y="42" text-anchor="middle">MCP Clients</text>
<text class="s" x="380" y="62" text-anchor="middle">Claude / Cursor / Windsurf</text>
</g>
<line class="l active" data-edge="clients server" x1="380" y1="76" x2="380" y2="108"/>
<g class="wg-node" data-node="server" tabindex="0" role="button" aria-label="MCP server">
<rect class="box" x="190" y="108" width="380" height="70" rx="8"/>
<text class="t" x="380" y="136" text-anchor="middle">main.py MCP Server</text>
<text class="s" x="380" y="158" text-anchor="middle">Flask / JSON-RPC 2.0 / auth required</text>
</g>
<line class="l" data-edge="server registry" x1="380" y1="178" x2="380" y2="210"/>
<g class="wg-node" data-node="registry" tabindex="0" role="button" aria-label="Tool registry and license gate">
<rect class="box3" x="210" y="210" width="340" height="62" rx="8"/>
<text class="t" x="380" y="235" text-anchor="middle">Tool Registry + License Gate</text>
<text class="s" x="380" y="255" text-anchor="middle">64 tools / runtime premium blocking</text>
</g>
<line class="l" data-edge="registry desktop" x1="300" y1="272" x2="145" y2="328"/>
<line class="l" data-edge="registry devtools" x1="350" y1="272" x2="300" y2="328"/>
<line class="l" data-edge="registry aicore" x1="410" y1="272" x2="460" y2="328"/>
<line class="l" data-edge="registry aicore" x1="460" y1="272" x2="615" y2="328"/>
<g class="wg-node" data-node="desktop" tabindex="0" role="button" aria-label="Desktop eyes">
<rect class="box2" x="40" y="328" width="210" height="76" rx="8"/>
<text class="t" x="145" y="356" text-anchor="middle">Desktop Eyes</text>
<text class="s" x="145" y="378" text-anchor="middle">capture / UIA / OCR</text>
</g>
<g class="wg-node" data-node="devtools" tabindex="0" role="button" aria-label="Developer tools">
<rect class="box" x="270" y="328" width="210" height="76" rx="8"/>
<text class="t" x="375" y="356" text-anchor="middle">Developer Tools</text>
<text class="s" x="375" y="378" text-anchor="middle">files / git / tests / shell</text>
</g>
<g class="wg-node" data-node="aicore" tabindex="0" role="button" aria-label="AI core">
<rect class="box4" x="500" y="328" width="210" height="76" rx="8"/>
<text class="t" x="605" y="356" text-anchor="middle">AI Core</text>
<text class="s" x="605" y="378" text-anchor="middle">memory / context / orchestration</text>
</g>
<line class="l" data-edge="desktop discipline" x1="145" y1="404" x2="380" y2="456"/>
<line class="l" data-edge="devtools discipline" x1="375" y1="404" x2="380" y2="456"/>
<line class="l" data-edge="aicore discipline" x1="605" y1="404" x2="380" y2="456"/>
<g class="wg-node" data-node="discipline" tabindex="0" role="button" aria-label="WorkGraph discipline">
<rect class="box3" x="180" y="456" width="400" height="66" rx="8"/>
<text class="t" x="380" y="482" text-anchor="middle">WorkGraph Discipline</text>
<text class="s" x="380" y="504" text-anchor="middle">observe first / choose useful tools / verify result</text>
</g>
</svg>
<div class="wg-detail" id="wg-detail" aria-live="polite">
<strong id="wg-title">MCP Clients</strong>
<p id="wg-desc">The coding assistant asks for real observations instead of guessing. Cursor, Windsurf, Antigravity, OpenCode, or Codex can call ANA through MCP.</p>
<code id="wg-test">Ask the agent to inspect first, then edit only after a tool result.</code>
<div class="wg-controls" aria-label="Runtime WorkGraph navigation">
<button type="button" id="wg-prev">Previous</button>
<button type="button" id="wg-next">Next</button>
</div>
</div>
</div>
</section>
<section class="promise" aria-label="Why ANA MAX is different">
<h3>Not another tool list. A workflow for local agents that should not guess.</h3>
<p>
ANA MAX combines local/offline privacy, optional online models, desktop
vision, Windows UI/API awareness, git state, tests, memory, voice, and
safe runtime instrumentation. It is meant for QA testers, lab operators,
and AI agents that must work from local facts without exposing private
work.
</p>
<div class="promise-grid">
<div class="promise-item">
<strong>Observe</strong>
<span>Read files, git state, terminal output, UIA, screenshots, and logs before acting.</span>
</div>
<div class="promise-item">
<strong>Instrument</strong>
<span>Use Frida or Windows inspection for authorized runtime facts when the task needs it.</span>
</div>
<div class="promise-item">
<strong>Act</strong>
<span>Edit code, run commands, control UI, and coordinate tools through MCP.</span>
</div>
<div class="promise-item">
<strong>Verify</strong>
<span>Run smoke tests and report what passed or failed instead of hiding uncertainty.</span>
</div>
</div>
</section>
<section class="demo" id="demo" aria-label="ANA MAX demo video">
<div class="demo-layout">
<div class="codebox">
<div class="codebar">
<span>Public demo policy</span>
</div>
<pre>Public video:
https://www.youtube.com/watch?v=yIWILEd6glU
https://youtu.be/2Ft9eRO7GzM
Do not store large videos in git.
Host future demos on YouTube or GitHub Releases.
Keep the repository source-only and public-safe.</pre>
</div>
<div>
<div class="badge">local lab workflow</div>
<h3>See what the tools prove.</h3>
<p>
The fastest way to understand ANA MAX is to watch an agent observe
the workspace, use local tools, avoid repeated mistakes, and verify
the result.
</p>
<ol>
<li>Observe the desktop, logs, terminal, and project state.</li>
<li>Use focused tools for QA, debug, and offline work.</li>
<li>Run smoke checks, speak status, and report facts.</li>
</ol>
<p>
Use the <a href="docs/ANA_MAX_WOW_DEMO.md">90-second proof script</a>
and the <a href="docs/LOCAL_QA_LAB_VISION.md">local QA lab vision</a>
to record a sharper public demo.
</p>
<p>
Current public demos:
<a href="https://www.youtube.com/watch?v=yIWILEd6glU" target="_blank" rel="noreferrer">demo 1</a>
and
<a href="https://youtu.be/2Ft9eRO7GzM" target="_blank" rel="noreferrer">demo 2</a>.
</p>
</div>
</div>
</section>
<div class="tabs" role="tablist">
<button class="tab active" type="button" onclick="showTab('mcp')">MCP setup</button>
<button class="tab" type="button" onclick="showTab('license')">Licensing</button>
<button class="tab" type="button" onclick="showTab('checks')">Verification</button>
</div>
<section class="section active" id="tab-mcp">
<div class="grid">
<div class="card">
<h3>Local server</h3>
<p>ANA MAX starts on <code>http://127.0.0.1:8765</code>. MCP requests go to <code>/mcp</code>.</p>
</div>
<div class="card">
<h3>Auth required</h3>
<p>Set <code>MCP_API_KEY</code> or <code>ANA_MCP_KEY</code>, then send <code>Authorization: Bearer ...</code>.</p>
</div>
<div class="card">
<h3>Public hygiene</h3>
<p>No private memory, logs, databases, screenshots, local paths, tokens, or license files belong in the public release.</p>
</div>
</div>
<div class="codebox">
<div class="codebar">
<span>Start ANA MAX</span>
<button class="copy" type="button" onclick="copyBlock('start')">copy</button>
</div>
<pre id="code-start">$env:MCP_API_KEY = "change-me"
python main.py</pre>
</div>
<div class="codebox">
<div class="codebar">
<span>List tools through MCP</span>
<button class="copy" type="button" onclick="copyBlock('curl')">copy</button>
</div>
<pre id="code-curl">curl -X POST http://127.0.0.1:8765/mcp `
-H "Content-Type: application/json" `
-H "Authorization: Bearer change-me" `
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'</pre>
</div>
</section>
<section class="section" id="tab-license">
<div class="grid" id="license">
<div class="card">
<h3>Free Vision AI</h3>
<p><code>desktop_capture</code> is free in this release and can be used for observe and verify workflows.</p>
</div>
<div class="card">
<h3>Premium capabilities</h3>
<p>Premium desktop automation and deep Windows inspection are blocked at runtime without a valid Pro license.</p>
<ul>
<li><code>live_desktop_viewer</code></li>
<li><code>desktop_control</code> and <code>desktop_control_tool</code></li>
<li><code>windows_insight</code> and <code>windows_insight_tool</code></li>
<li><code>windows_deep_sight</code></li>
</ul>
</div>
<div class="card">
<h3>Activation</h3>
<p>Use <code>python activate_license.py --key YOUR_KEY</code>, then restart ANA MAX.</p>
</div>
</div>
</section>
<section class="section" id="tab-checks">
<div class="grid" id="checks">
<div class="card">
<h3>Expected smoke</h3>
<p><code>python main.py --test</code> should report <code>3 PASS / 0 FAIL</code>.</p>
</div>
<div class="card">
<h3>Expected tools</h3>
<p><code>python main.py --list-tools</code> should report <code>64 loaded tools</code>.</p>
</div>
<div class="card">
<h3>Expected tests</h3>
<p><code>python -m unittest discover -s tests -v</code> should pass all tests.</p>
</div>
</div>
<div class="codebox">
<div class="codebar">
<span>Release verification</span>
<button class="copy" type="button" onclick="copyBlock('verify')">copy</button>
</div>
<pre id="code-verify">python -m compileall -q main.py core tools vscode_extension
python main.py --test
python main.py --list-tools
python -m unittest discover -s tests -v</pre>
</div>
</section>
</main>
<footer>
<span>ANA MAX v0.2.0-beta / 64 loaded tools / MCP auth on</span>
<span><a href="docs/PROJECT_MAP_AI_GUIDE.md">Project map</a> / <a href="SETUP_AND_RUN.md">Setup</a></span>
</footer>
</div>
<script>
var workGraphDetails = {
clients: {
title: "MCP Clients",
desc: "The coding assistant asks for real observations instead of guessing. Cursor, Windsurf, Antigravity, OpenCode, or Codex can call ANA through MCP.",
test: "Ask the agent to inspect first, then edit only after a tool result.",
edges: ["clients server"]
},
server: {
title: "main.py MCP Server",
desc: "The local server receives JSON-RPC requests, checks auth, and routes the request to ANA tools.",
test: "python main.py --test",
edges: ["clients server", "server registry"]
},
registry: {
title: "Tool Registry + License Gate",
desc: "The registry exposes tool schemas and blocks premium capabilities at runtime when the license is missing.",
test: "python main.py --list-tools",
edges: ["server registry", "registry desktop", "registry devtools", "registry aicore"]
},
desktop: {
title: "Desktop Eyes",
desc: "ANA can capture the screen, inspect Windows UIA controls, run OCR, and verify what is actually visible.",
test: "Use desktop_capture before desktop_control.",
edges: ["registry desktop", "desktop discipline"]
},
devtools: {
title: "Developer Tools",
desc: "ANA reads files, checks git state, runs terminal commands, executes tests, and edits only after evidence.",
test: "python -m compileall -q main.py core tools",
edges: ["registry devtools", "devtools discipline"]
},
aicore: {
title: "AI Core",
desc: "Memory, context, orchestration, and proactive checks help the agent remember the task and avoid blind work.",
test: "Use workspace_situational_awareness before large changes.",
edges: ["registry aicore", "aicore discipline"]
},
discipline: {
title: "WorkGraph Discipline",
desc: "The workflow is observe, choose the right tool, act narrowly, verify, then explain what passed or failed.",
test: "Observe -> act -> verify -> report.",
edges: ["desktop discipline", "devtools discipline", "aicore discipline"]
}
};
var workGraphOrder = ["clients", "server", "registry", "desktop", "devtools", "aicore", "discipline"];
var activeWorkGraphNode = "clients";
function selectWorkGraphNode(name) {
var detail = workGraphDetails[name];
if (!detail) return;
activeWorkGraphNode = name;
document.querySelectorAll(".wg-node").forEach(function (node) {
node.classList.toggle("active", node.getAttribute("data-node") === name);
});
document.querySelectorAll(".l").forEach(function (edge) {
var edgeName = edge.getAttribute("data-edge");
edge.classList.toggle("active", detail.edges.indexOf(edgeName) !== -1);
});
document.getElementById("wg-title").textContent = detail.title;
document.getElementById("wg-desc").textContent = detail.desc;
document.getElementById("wg-test").textContent = detail.test;
}
function moveWorkGraph(step) {
var index = workGraphOrder.indexOf(activeWorkGraphNode);
var nextIndex = (index + step + workGraphOrder.length) % workGraphOrder.length;
selectWorkGraphNode(workGraphOrder[nextIndex]);
}
document.querySelectorAll(".wg-node").forEach(function (node) {
node.addEventListener("click", function () {
selectWorkGraphNode(node.getAttribute("data-node"));
});
node.addEventListener("keydown", function (event) {
if (event.key === "Enter" || event.key === " ") {
event.preventDefault();
selectWorkGraphNode(node.getAttribute("data-node"));
}
});
});
document.querySelectorAll(".l").forEach(function (edge) {
edge.addEventListener("click", function () {
var edgeName = edge.getAttribute("data-edge") || "";
var target = edgeName.split(" ")[1];
selectWorkGraphNode(target);
});
});
document.getElementById("wg-prev").addEventListener("click", function () {
moveWorkGraph(-1);
});
document.getElementById("wg-next").addEventListener("click", function () {
moveWorkGraph(1);
});
function showTab(name) {
document.querySelectorAll(".tab").forEach(function (tab) {
var action = tab.getAttribute("onclick") || "";
tab.classList.toggle("active", action.indexOf("'" + name + "'") !== -1);
});
document.querySelectorAll(".section").forEach(function (section) {
section.classList.toggle("active", section.id === "tab-" + name);
});
}
function showTabFromHash() {
var hash = window.location.hash || "";
if (hash.indexOf("#tab-") === 0) {
showTab(hash.replace("#tab-", ""));
}
}
showTabFromHash();
window.addEventListener("hashchange", showTabFromHash);
function copyText(text) {
if (navigator.clipboard && window.isSecureContext) {
return navigator.clipboard.writeText(text);
}
return new Promise(function (resolve, reject) {
var area = document.createElement("textarea");
area.value = text;
area.setAttribute("readonly", "");
area.style.position = "fixed";
area.style.left = "-9999px";
document.body.appendChild(area);
area.select();
try {
document.execCommand("copy") ? resolve() : reject(new Error("copy failed"));
} catch (err) {
reject(err);
} finally {
document.body.removeChild(area);
}
});
}
function copyBlock(name) {
var el = document.getElementById("code-" + name);
if (!el) return;
copyText(el.innerText).then(function () {
document.querySelectorAll(".copy").forEach(function (button) {
if (button.getAttribute("onclick").includes("'" + name + "'")) {
var old = button.textContent;
button.textContent = "copied";
setTimeout(function () { button.textContent = old; }, 1200);
}
});
}).catch(function () {
alert("Copy failed. Select the command text manually.");
});
}
</script>
</body>
</html>