agentgui 1.0.910 → 1.0.911

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/site/theme.mjs +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.910",
3
+ "version": "1.0.911",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "electron/main.js",
package/site/theme.mjs CHANGED
@@ -147,6 +147,10 @@ const html = ({ site, nav, home }) => `<!DOCTYPE html>
147
147
  `;
148
148
 
149
149
  export default {
150
+ assets: {
151
+ '../docs/demo.html': 'demo.html',
152
+ '../docs/screenshots': 'screenshots',
153
+ },
150
154
  render: async (ctx) => {
151
155
  const site = ctx.readGlobal('site') || {};
152
156
  const nav = ctx.readGlobal('navigation') || { links: [] };