Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5d2532c
feat: add Helixo restaurant revenue forecasting & labor optimization …
claude Mar 25, 2026
224bdf1
feat(helixo): implement all engines, integrations, MCP tools, and plu…
claude Mar 25, 2026
05ca538
feat(helixo): add Next.js web app with dashboard, layout, and labor page
claude Mar 25, 2026
3412d6d
feat(helixo): add forecast, schedule, settings pages and demo data
claude Mar 25, 2026
856c650
fix(helixo): add missing format helpers (shortCurrency, dayLabel, tim…
claude Mar 25, 2026
402e939
fix(helixo): update schedule page with refined calendar grid
claude Mar 25, 2026
e887186
feat(helixo): restyle app to match Leonardo Operations Dashboard aest…
claude Mar 25, 2026
d3845bd
feat(helixo): restyle forecast page to Leonardo aesthetic
claude Mar 25, 2026
68a40b3
feat(helixo): restyle schedule page to Leonardo aesthetic
claude Mar 25, 2026
161c099
feat(helixo): restyle labor page to Leonardo aesthetic
claude Mar 25, 2026
aa1b0c3
feat(helixo): restyle pace monitor to Leonardo aesthetic
claude Mar 25, 2026
cb86d15
feat(helixo): restyle settings page to Leonardo aesthetic
claude Mar 25, 2026
b82661d
fix(helixo): fix invalid bg-white/8 tailwind class to bg-white/10
claude Mar 25, 2026
be00f5a
chore(helixo): add .gitignore and package-lock.json for app
claude Mar 25, 2026
cb3534f
feat(helixo): wire UI to real engines and add comprehensive tests
claude Mar 25, 2026
abc08b7
chore(helixo): add package-lock.json for plugin dependencies
claude Mar 25, 2026
eb8aca4
feat(helixo): deep improvements — accuracy tracking, Zod validation, …
claude Mar 25, 2026
75e439b
feat(helixo): add SharePoint/Excel adapters with real-time webhook sync
claude Mar 25, 2026
1c4de5d
test(helixo): add SharePoint, Excel, and webhook adapter tests (74 te…
claude Mar 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions v3/plugins/helixo/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
.next/
dist/
next-env.d.ts
5 changes: 5 additions & 0 deletions v3/plugins/helixo/app/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
transpilePackages: ['@claude-flow/plugin-helixo'],
};
export default nextConfig;
Loading
Loading