agentgui 1.0.908 → 1.0.909
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.
- package/package.json +1 -1
- package/site/theme.mjs +1 -90
package/package.json
CHANGED
package/site/theme.mjs
CHANGED
|
@@ -60,96 +60,7 @@ function Features() {
|
|
|
60
60
|
function Quickstart() {
|
|
61
61
|
if (!home || !home.quickstart || !home.quickstart.lines || !home.quickstart.lines.length) return null;
|
|
62
62
|
const lineNodes = home.quickstart.lines.map((l, i) => h('div', { key: 'q'+i, class: 'cli' },
|
|
63
|
-
h('span', { class: 'prompt' }, (l.kind === 'cmt' ? '#' : '
|
|
64
|
-
|
|
65
|
-
function Examples() {
|
|
66
|
-
if (!home || !home.examples || !home.examples.items || !home.examples.items.length) return null;
|
|
67
|
-
const rows = home.examples.items.map((it, i) => C.RowLink({
|
|
68
|
-
key: 'e'+i,
|
|
69
|
-
title: it.name,
|
|
70
|
-
sub: it.desc || '',
|
|
71
|
-
meta: it.cta || 'open',
|
|
72
|
-
href: it.href || '#'
|
|
73
|
-
}));
|
|
74
|
-
return C.Panel({
|
|
75
|
-
title: home.examples.heading || 'examples',
|
|
76
|
-
style: 'margin:8px',
|
|
77
|
-
children: rows
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
function Footer() {
|
|
82
|
-
return h('footer', { class: 'app-status' },
|
|
83
|
-
h('span', { class: 'item' }, 'styled with '),
|
|
84
|
-
h('a', { class: 'item', href: 'https://anentrypoint.github.io/design/' }, 'anentrypoint-design'),
|
|
85
|
-
h('span', { class: 'item' }, '·'),
|
|
86
|
-
h('a', { class: 'item', href: 'https://247420.xyz' }, '247420.xyz'),
|
|
87
|
-
h('span', { class: 'spread' }),
|
|
88
|
-
site.repo ? h('a', { class: 'item', href: site.repo }, 'source ↗') : null
|
|
89
|
-
);
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
const navItems = (nav && nav.links ? nav.links : []).map(l => [String(l.label || ''), l.href]);
|
|
93
|
-
|
|
94
|
-
const App = C.AppShell({
|
|
95
|
-
topbar: C.Topbar({
|
|
96
|
-
brand: '247420',
|
|
97
|
-
leaf: site.title || '',
|
|
98
|
-
items: navItems
|
|
99
|
-
}),
|
|
100
|
-
crumb: C.Crumb({
|
|
101
|
-
trail: ['247420'],
|
|
102
|
-
leaf: site.title || ''
|
|
103
|
-
}),
|
|
104
|
-
main: h('div', {},
|
|
105
|
-
Hero(),
|
|
106
|
-
Features(),
|
|
107
|
-
Quickstart(),
|
|
108
|
-
Examples()
|
|
109
|
-
),
|
|
110
|
-
status: Footer()
|
|
111
|
-
});
|
|
112
|
-
|
|
113
|
-
applyDiff(document.getElementById('app'), [App]);
|
|
114
|
-
`;
|
|
115
|
-
|
|
116
|
-
const html = ({ site, nav, home }) => `<!DOCTYPE html>
|
|
117
|
-
<html lang="en" class="ds-247420">
|
|
118
|
-
<head>
|
|
119
|
-
<meta charset="UTF-8" />
|
|
120
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
121
|
-
<title>${escapeHtml(site.title)}${site.tagline ? ' — ' + escapeHtml(site.tagline) : ''}</title>
|
|
122
|
-
<meta name="description" content="${escapeHtml(site.description || site.tagline || site.title)}" />
|
|
123
|
-
<meta property="og:title" content="${escapeHtml(site.title)}" />
|
|
124
|
-
<meta property="og:description" content="${escapeHtml(site.description || site.tagline || '')}" />
|
|
125
|
-
<meta property="og:url" content="${escapeHtml(site.url || '')}" />
|
|
126
|
-
<link rel="canonical" href="${escapeHtml(site.url || '')}" />
|
|
127
|
-
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctext y='26' font-size='26'%3E${encodeURIComponent(site.glyph || '◆')}%3C/text%3E%3C/svg%3E" />
|
|
128
|
-
<script type="importmap">{"imports":{"anentrypoint-design":"${SDK_URL}"}}</script>
|
|
129
|
-
<style>html,body{margin:0;padding:0}body{background:var(--app-bg,#FBF6EB);color:var(--ink,#1F1B16);font-family:var(--ff-ui,'Nunito',system-ui,sans-serif)}</style>
|
|
130
|
-
</head>
|
|
131
|
-
<body>
|
|
132
|
-
<div id="app"></div>
|
|
133
|
-
<script type="application/json" id="__site__">${escapeJson({ site, nav, home })}</script>
|
|
134
|
-
<script type="module">${clientScript}</script>
|
|
135
|
-
</body>
|
|
136
|
-
</html>
|
|
137
|
-
`;
|
|
138
|
-
|
|
139
|
-
export default {
|
|
140
|
-
render: async (ctx) => {
|
|
141
|
-
const site = ctx.readGlobal('site') || {};
|
|
142
|
-
const nav = ctx.readGlobal('navigation') || { links: [] };
|
|
143
|
-
const homeDoc = ctx.read('pages').docs.find(p => p.id === 'home');
|
|
144
|
-
if (!homeDoc) throw new Error('config/pages/home.yaml missing or has no id: home');
|
|
145
|
-
|
|
146
|
-
return [{
|
|
147
|
-
path: 'index.html',
|
|
148
|
-
html: html({ site, nav, home: homeDoc })
|
|
149
|
-
}];
|
|
150
|
-
}
|
|
151
|
-
};
|
|
152
|
-
)),
|
|
63
|
+
h('span', { class: 'prompt' }, (l.kind === 'cmt' ? '#' : '$')),
|
|
153
64
|
h('span', { class: 'cmd' }, l.text)
|
|
154
65
|
));
|
|
155
66
|
return C.Panel({
|