Files
hermes-workspace/src/components/connection-overlay.tsx
Eric fb17b5f86f feat: v1.0.0 — profiles, knowledge browser, MCP settings, skills hub upgrade, eslint, security contact update
New features:
- Multi-profile management (create, switch, rename, delete)
- Knowledge browser with document viewer
- MCP server settings screen
- Skills hub with marketplace search fallback
- Context usage tracking and display

Improvements:
- eslint added and auto-fixed (69 issues resolved)
- Settings dialog restructured (Agent, Smart Routing, Voice, Display sections)
- Navigation updated with Profiles tab across desktop/mobile
- Security contact updated to GitHub advisories + X DM
- .gitignore hardened (.runtime/, internal dev docs)
- Version bumped to 1.0.0

Build: clean | TypeScript: 0 errors | Tests: 4/4 passing
2026-04-10 01:49:13 -04:00

17 lines
316 B
TypeScript

// Stub — connection overlay (not used in Hermes Workspace)
export function useConnectionRestart() {
return {
triggerRestart: async (fn: () => Promise<void>) => {
await fn()
},
}
}
export function ConnectionProvider({
children,
}: {
children: React.ReactNode
}) {
return <>{children}</>
}