An intelligent knowledge engine that transforms scattered project context from GitHub, Linear, Slack, Figma, and Notion into instant, cited answers. Designed to accelerate team onboarding and eliminate the productivity tax of knowledge transfer.
Loominal solves the silent productivity problem every development team faces: new team members have countless questions but hesitate to interrupt busy teammates. Instead of forcing slow, isolated learning through scattered documentation, Loominal creates a unified source of truth that provides contextual answers with full source citations.
This project uses a dual-application architecture:
- Next.js Frontend (
/client) - Main user interface, authentication, dashboard, and project management - Flask Backend (
/server) - AI processing specialist using Vellum Python SDK
- Node.js 18+ and npm/yarn/pnpm
- Python 3.8+ and pip
- PostgreSQL database (we recommend Neon for development)
git clone https://github.com/code-like-crazy/ht6.git
cd ht6cd client
npm install
npm run devThe frontend will be available at http://localhost:3000
In a new terminal:
cd server
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env
# Edit .env file with your configuration
python app.pyThe backend API will be available at http://localhost:5000
Create client/.env.local:
# Auth0 Configuration
AUTH0_SECRET=your-auth0-secret
AUTH0_BASE_URL=http://localhost:3000
AUTH0_ISSUER_BASE_URL=your-auth0-domain
AUTH0_CLIENT_ID=your-auth0-client-id
AUTH0_CLIENT_SECRET=your-auth0-client-secret
# Database
DATABASE_URL=your-postgresql-connection-string
# API
NEXT_PUBLIC_API_URL=http://localhost:5000Create server/.env:
FLASK_ENV=development
FLASK_DEBUG=True
# Add your Vellum AI and other service configurations here- Frontend: Next.js, TypeScript, React, TailwindCSS
- Backend: Flask (Python), Vellum AI
- Database: PostgreSQL with DrizzleORM
- Authentication: Auth0
- Integrations: GitHub, Slack, Linear, Figma, Notion APIs
- 🔐 Secure Authentication - Auth0 integration with social login
- 🏢 Organization Management - Multi-tenant workspace support
- 🔗 Tool Integration - Connect GitHub, Linear.app, Slack, Figma, Notion
- 💬 Intelligent Chat - Natural language queries with contextual answers
- 📚 Source Citations - Every answer includes clickable references
- ⚡ Real-time Responses - Fast, contextual knowledge retrieval
ht6/
├── client/ # Next.js frontend application
│ ├── src/app/ # App router pages and API routes
│ ├── src/components/ # Reusable React components
│ ├── src/lib/ # Utilities and configurations
│ └── src/server/ # Server-side database and services
├── server/ # Flask backend application
│ ├── routes/ # API endpoint blueprints
│ ├── app.py # Main Flask application
│ └── config.py # Configuration settings
└── memory-bank/ # Project documentation and context
See client/README.md for detailed Next.js development instructions.
See server/README.md for detailed Flask development instructions.
The project uses DrizzleORM for type-safe database operations. Database schema is defined in client/src/server/db/schema.ts.
"Rachel" - New Software Engineer
- Goal: Start contributing valuable code and integrate with the team quickly
- Frustration: "I have so many 'why' questions, but answers are scattered across dozens of Slack channels and hundreds of Linear tickets. I don't want to constantly ping the lead developer."