KILO is a next-generation platform designed to revolutionize international trade logistics. By bridging the gap between Importers, Suppliers, and Brokers, KILO automates the complex workflows of global commerce.
The platform leverages AI-driven document processing to turn unstructured data (PDF quotes, packing lists) into structured orders, reducing manual entry errors by 95% and accelerating the procurement cycle.
- Centralized Dashboard: Real-time view of all active shipments, financial exposure, and pending tasks.
- Smart Order Management: Track orders from
Draft->Production->Shipping->Delivered. - Document Hub: Secure repository for all trade documents (BL, Invoice, Packing List) linked to specific orders.
- Smart Order Creation: (New Feature) Drag & Drop PDF Quotes to automatically generate digital orders using AI.
- Production Tracking: Update order status milestones to keep importers informed.
- Direct Communication: Contextualized document sharing and updates.
- Customs Clearance Workflow: Streamlined access to necessary documentation for faster goods release.
KILO uses advanced LLMs (Gemini) to process trade documents.
Instead of manually typing order details, suppliers simply upload a Quote PDF.
The entire extraction process is orchestrated via a visual workflow covering webhook reception, Gemini AI processing, and Supabase database insertion.
sequenceDiagram
participant Supplier
participant UI as KILO Interface
participant AI as Gemini Engine
participant DB as Supabase
Supplier->>UI: Uploads Quote.pdf
UI->>AI: Send for extraction
AI-->>UI: Returns JSON (Products, Prices, Dates)
UI->>Supplier: Show Pre-filled Order Form
Supplier->>UI: Reviews & Confirms
UI->>DB: Creates Order with "Draft" status
DB-->>Supplier: Success!
- Framework: Next.js 14 (App Router, Server Components)
- Database: Supabase (PostgreSQL, Auth, Storage)
- Styling: Tailwind CSS + Shadcn/UI
- AI: Google Gemini Pro (via Make.com webhook)
- Language: TypeScript
├── app/
│ ├── dashboard/ # Specialized views for each role
│ │ ├── importer/ # Importer functionalities
│ │ ├── supplier/ # Supplier functionalities
│ │ └── broker/ # Broker functionalities
│ ├── auth/ # Authentication routes
│ └── api/ # Backend API routes
├── components/ # Reusable UI components
├── lib/
│ └── supabase/ # Database clients and types
├── types/ # TypeScript definitions
└── public/ # Static assets
-
Clone the repository
git clone https://github.com/ItaiRahamim/KILO.git cd KILO -
Install dependencies
npm install
-
Set up Environment Create a
.env.localfile with your credentials:NEXT_PUBLIC_SUPABASE_URL=your_url NEXT_PUBLIC_SUPABASE_ANON_KEY=your_key
-
Run Development Server
npm run dev
- Integration with Shipping Line APIs for real-time tracking
- Multi-currency financial reconciling
- Mobile App for on-the-go management
Built with ❤️ for Global Trade


