freddie 0.0.79 → 0.0.80

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freddie",
3
- "version": "0.0.79",
3
+ "version": "0.0.80",
4
4
  "type": "module",
5
5
  "description": "Open JS agent harness built on pi-mono, floosie, xstate, and anentrypoint-design",
6
6
  "bin": {
@@ -26,8 +26,8 @@
26
26
  "plugsdk": "^1.0.15",
27
27
  "xstate": "^5.31.0",
28
28
  "zod": "^4.0.0",
29
- "anentrypoint-design": "^0.0.70",
30
- "acptoapi": "^1.0.48"
29
+ "anentrypoint-design": "^0.0.82",
30
+ "acptoapi": "^1.0.50"
31
31
  },
32
32
  "optionalDependencies": {
33
33
  "@libsql/darwin-arm64": "0.3.19",
package/src/web/app.js CHANGED
@@ -14,7 +14,7 @@ root.innerHTML = '';
14
14
  const state = { active: 'home', ts: new Date().toLocaleTimeString(), body: null, error: null };
15
15
 
16
16
  function buildSide() {
17
- return Side({ sections: [{ group: 'FREDDIE', items: ROUTES.map(r => ({
17
+ return Side({ sections: [{ group: 'freddie', items: ROUTES.map(r => ({
18
18
  glyph: r.glyph, label: r.label, href: '#fd-' + r.path,
19
19
  active: state.active === r.path,
20
20
  onClick: ev => { ev.preventDefault(); setActive(r.path); },
@@ -51,7 +51,7 @@ async function loadActive() {
51
51
  if (state.active !== active) return;
52
52
  state.error = String(e && e.stack || e);
53
53
  const { Panel } = components;
54
- state.body = Panel({ title: 'page error', children: h('pre', { class: 'fd-pre', style: 'max-height:200px;overflow-y:auto' }, state.error) });
54
+ state.body = Panel({ title: 'page error', children: h('pre', { class: 'fd-pre fd-page-error' }, state.error) });
55
55
  }
56
56
  state.ts = new Date().toLocaleTimeString();
57
57
  applyDiff(root, view());
package/src/web/state.js CHANGED
@@ -63,13 +63,14 @@ export async function fetchHost() {
63
63
  export const ROUTES = [
64
64
  { path: 'home', label: 'home', glyph: '⌂' },
65
65
  { path: 'chat', label: 'chat', glyph: '⌨' },
66
+ { path: 'voice', label: 'voice', glyph: '◍' },
66
67
  { path: 'sessions', label: 'sessions', glyph: '✉' },
67
68
  { path: 'projects', label: 'projects', glyph: '◆' },
68
69
  { path: 'agents', label: 'agents', glyph: '◈' },
69
70
  { path: 'analytics', label: 'analytics', glyph: '◉' },
70
71
  { path: 'models', label: 'models', glyph: '◎' },
71
72
  { path: 'cron', label: 'cron', glyph: '◷' },
72
- { path: 'skills', label: 'skills', glyph: '' },
73
+ { path: 'skills', label: 'skills', glyph: '' },
73
74
  { path: 'config', label: 'config', glyph: '⚙' },
74
75
  { path: 'env', label: 'keys', glyph: '⚿' },
75
76
  { path: 'tools', label: 'tools', glyph: '⚒' },