-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicktest.html
More file actions
57 lines (52 loc) · 3.05 KB
/
Copy pathquicktest.html
File metadata and controls
57 lines (52 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect width='64' height='64' fill='%23111111'/%3E%3Cpath transform='translate(12.4,3.9) scale(0.4)' fill='%23FFFFFF' d='M0.123047 0.183838C30.3704 -0.193155 61.5253 0.117643 91.8252 0.171143V0.215088C93.8908 0.210607 95.9524 0.201319 98.0059 0.177979L97.9932 140.018L97.999 140.376C97.2973 140.793 63.8272 140.603 60.0508 140.6C60.1153 135.259 60.1187 129.849 60.1064 124.433C52.7323 124.42 45.365 124.437 38.0879 124.55L38.0977 140.584L0.115234 140.582C-0.129765 121.528 0.0923427 141.904 0.0898438 122.793L0.123047 0.183838ZM38.0879 31.8411L38.1152 92.7961L60.0576 92.8127L60.0518 36.9084C60.0516 35.2222 60.0477 33.5277 60.043 31.8274L38.0879 31.8411Z'/%3E%3C/svg%3E">
<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=Geist:wght@300..800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="ait.css">
<script>
document.documentElement.classList.add('js');
// Apply the theme before first paint: stored choice, else system.
try {
var t = localStorage.getItem('aif-theme');
if (t === 'dark' || ((!t || t === 'system') && matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.dataset.theme = 'dark';
}
} catch (e) {}
</script>
<script src="components.js" defer></script>
<script src="shader-bg.js" defer></script>
<script src="ait-questions.js" defer></script>
<script src="ait.js" defer></script>
<title>The Agentic Interface Test — The Agentic Interface Framework</title>
<meta name="description" content="Answer yes or no about your product's agentic interface. Get a score out of 100 and a maturity level.">
<meta property="og:title" content="The Agentic Interface Test">
<meta property="og:description" content="Answer yes or no about your product's agentic interface. Get a score out of 100 and a maturity level.">
<meta property="og:type" content="website">
</head>
<body>
<site-header active="test"></site-header>
<main id="main">
<section class="page-header">
<div class="container">
<h1 class="page-title">The Agentic Interface Test</h1>
<p class="page-sub">How agentic is your product’s interface? Answer yes or no. Get one score out of 100 and a maturity level.</p>
</div>
</section>
<section class="page-body">
<div class="container">
<div id="ait-app" class="ait-app">
<!-- Replaced by the app on boot; visible if scripts fail or JS is off. -->
<p class="ait-fallback">The test runs entirely in your browser and needs JavaScript. If this message doesn’t go away, reload the page.</p>
</div>
</div>
</section>
</main>
<site-footer></site-footer>
</body>
</html>