agentbridge-cli 0.1.11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,160 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>{% block title %}agentbridge{% endblock %}</title>
7
+ {% block head_scripts %}{% endblock %}
8
+ <style>
9
+ :root {
10
+ --bg: #f7f8f8;
11
+ --surface: #ffffff;
12
+ --surface-muted: #f1f3f3;
13
+ --text: #1f2424;
14
+ --muted: #667070;
15
+ --border: #dfe4e4;
16
+ --accent: #168575;
17
+ --accent-strong: #0f6f62;
18
+ --danger: #b42318;
19
+ --danger-border: #f5c6c1;
20
+ --warn: #a15c07;
21
+ --ok: #1b806a;
22
+ --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
23
+ --mono: "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
24
+ --header-height: 64px;
25
+ --topbar-bg: rgba(255, 255, 255, 0.92);
26
+ }
27
+
28
+ *, *::before, *::after { box-sizing: border-box; }
29
+
30
+ html, body {
31
+ margin: 0;
32
+ padding: 0;
33
+ min-height: 100%;
34
+ background: var(--bg);
35
+ color: var(--text);
36
+ font-family: var(--font);
37
+ font-size: 14px;
38
+ }
39
+
40
+ body {
41
+ height: 100vh;
42
+ overflow: hidden;
43
+ }
44
+
45
+ button, input, select, textarea {
46
+ font: inherit;
47
+ }
48
+
49
+ .app {
50
+ height: 100vh;
51
+ display: grid;
52
+ }
53
+
54
+ .topbar {
55
+ min-height: var(--header-height);
56
+ background: var(--topbar-bg);
57
+ border-bottom: 1px solid var(--border);
58
+ display: grid;
59
+ grid-template-columns: auto 1fr auto;
60
+ align-items: center;
61
+ gap: 18px;
62
+ padding: 0 20px;
63
+ }
64
+
65
+ .brand {
66
+ display: inline-flex;
67
+ align-items: center;
68
+ gap: 10px;
69
+ color: var(--text);
70
+ font-size: 21px;
71
+ font-weight: 750;
72
+ letter-spacing: 0;
73
+ text-decoration: none;
74
+ }
75
+
76
+ .brand-mark {
77
+ flex: none;
78
+ width: 28px;
79
+ height: 21px;
80
+ }
81
+
82
+ .main-nav {
83
+ justify-self: start;
84
+ height: 42px;
85
+ display: inline-flex;
86
+ align-items: stretch;
87
+ border: 1px solid var(--border);
88
+ border-radius: 7px;
89
+ background: var(--surface);
90
+ overflow: hidden;
91
+ box-shadow: 0 1px 0 rgba(18, 27, 27, 0.03);
92
+ }
93
+
94
+ .nav-item {
95
+ appearance: none;
96
+ min-width: 112px;
97
+ display: inline-flex;
98
+ align-items: center;
99
+ justify-content: center;
100
+ padding: 0 18px;
101
+ color: var(--muted);
102
+ background: transparent;
103
+ text-decoration: none;
104
+ border: 0;
105
+ border-bottom: 3px solid transparent;
106
+ font-weight: 550;
107
+ cursor: pointer;
108
+ }
109
+
110
+ .nav-item.active {
111
+ color: var(--accent-strong);
112
+ border-bottom-color: var(--accent);
113
+ background: #fbfefe;
114
+ }
115
+
116
+ .nav-item:focus-visible {
117
+ outline: 2px solid rgba(22, 133, 117, 0.35);
118
+ outline-offset: -2px;
119
+ }
120
+
121
+ .nav-item:hover {
122
+ color: var(--text);
123
+ background: var(--surface-muted);
124
+ }
125
+
126
+ .header-actions {
127
+ display: flex;
128
+ align-items: center;
129
+ gap: 12px;
130
+ }
131
+
132
+ {% block page_styles %}{% endblock %}
133
+ </style>
134
+ </head>
135
+ <body>
136
+ <div class="app">
137
+ <header class="topbar">
138
+ <a class="brand" href="/dashboard">
139
+ <svg class="brand-mark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 24" fill="none" stroke="#f04438" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
140
+ <line x1="2" y1="16" x2="30" y2="16"></line>
141
+ <path d="M4 16 Q16 4 28 16"></path>
142
+ <line x1="10" y1="16" x2="10" y2="11.2" stroke-opacity="0.5" stroke-width="1.5"></line>
143
+ <line x1="16" y1="16" x2="16" y2="7" stroke-opacity="0.5" stroke-width="1.5"></line>
144
+ <line x1="22" y1="16" x2="22" y2="11.2" stroke-opacity="0.5" stroke-width="1.5"></line>
145
+ </svg>
146
+ AgentBridge
147
+ </a>
148
+ <nav class="main-nav" aria-label="Dashboard views">
149
+ <a class="nav-item{% if active_view == 'monitor' %} active{% endif %}" href="/dashboard">Monitor</a>
150
+ <a class="nav-item{% if active_view == 'chat' %} active{% endif %}" href="/dashboard/chat">Chat</a>
151
+ </nav>
152
+ <div class="header-actions">
153
+ {% block header_actions %}{% endblock %}
154
+ </div>
155
+ </header>
156
+ {% block content %}{% endblock %}
157
+ </div>
158
+ {% block scripts %}{% endblock %}
159
+ </body>
160
+ </html>