> mvp
Goal: Build an LLM-based RAG App Here is the MVP Implementation Plan. MVP Scope A "second brain" application that leverages Retrieval Augmented Generation (RAG) to integrate external knowledge and data with LLM capabilities. This MVP will allow users to upload their files as a knowledge base and perform natural language queries against that data using LM Studio. Technical Stack Frontend: Streamlit Backend: FastAPI LLM Integration: LM Studio Core Features 1. File Upload Users can upload docume
curl "https://skillshub.wtf/Harmeet10000/skills/mvp?format=md"Goal: Build an LLM-based RAG App Here is the MVP Implementation Plan.
MVP Scope A "second brain" application that leverages Retrieval Augmented Generation (RAG) to integrate external knowledge and data with LLM capabilities. This MVP will allow users to upload their files as a knowledge base and perform natural language queries against that data using LM Studio.
Technical Stack Frontend: Streamlit Backend: FastAPI LLM Integration: LM Studio
Core Features
- File Upload Users can upload documents (PDFs, text files, etc.) into the system. Extract key information from the uploaded files and store them in a vector database or simple on-disk index.
- Basic Search Natural language search, powered by LM Studio. In-context learning approach with few-shot learning to enhance responses. RAG flow: Retrieve relevant segments from the knowledge base. Combine retrieved segments with user query. Generate a context-enriched answer.
Data Structure Document Schema class Document: id: str # Unique identifier title: str # File title or name content: str # Extracted text metadata: dict # Any additional metadata (e.g., upload date, tags)
Index/Vector Embeddings Depending on the chosen approach (vector DB vs. local embeddings): Vector Database: Each Document (or chunk of a document) will have an embedding vector. Local Index: Store embeddings in a local file or simple database.
Implementation Plan
- Backend Setup with FastAPI File Upload Endpoint
Accept file uploads (PDF, TXT, etc.). Extract and preprocess text (OCR if necessary). Split text into chunks for indexing. Generate embeddings via LM Studio or a compatible embedding model. Store the embeddings and metadata in a vector store local index. Search Endpoint
Accept natural language queries. Use embeddings to find the most relevant chunks from the knowledge base. Construct context from these chunks. Send context + query to LM Studio for final RAG-based answer. Data Storage
For MVP, consider a simple JSON or SQLite-based storage for metadata and a local or cloud-based vector index. Add basic error handling (invalid file format, missing data, etc.). CORS Setup
Configure CORS in FastAPI to allow calls from the Streamlit frontend.
- Frontend Development (Streamlit) File Upload Interface
Simple file upload widget. On submission, call the FastAPI file upload endpoint. Provide feedback on success/failure. Search Interface
Text input for queries. On submission, call the FastAPI search endpoint. Display the AI-generated response and (optionally) the top retrieved chunks. UX & Basic Layout
Show a list of previously uploaded files (titles, metadata, etc.). Simple and intuitive design with minimal clutter. Provide error messages or success confirmations. Error Handling & User Feedback
Show relevant messages for file upload errors, incomplete data, etc. Display a loading indicator while the system is querying or processing.
API Endpoints POST /api/files/upload
Description: Upload and store documents. Payload: File(s) + optional metadata. Response: Success message with document ID(s). GET /api/files
Description: List all uploaded documents. Response: A JSON array of documents with basic metadata. GET /api/files/{id}
Description: Fetch the details of a specific document by ID. Response: Document details (title, content if needed, metadata). POST /api/search
Description: Search the knowledge base with a natural language query. Payload: { "query": "Your question here" } Response: RAG-based answer and possibly the top chunks or references.
Future Enhancements (Beyond MVP) Authentication & Authorization for secure file sharing. Advanced File Parsing (OCR for scanned PDFs, docx parsing). Versioning & Revision History for uploaded documents. UI Improvements such as advanced filtering, summarization, or highlight features.
> related_skills --same-repo
> vibe-ppt
Convert this into a web based slide deck using reveal.js. Use the following brand colour and logo. Primary colour: #EE4822 Theme: Light Logo: https://media.licdn.com/dms/image/v2/D560BAQFeaNrDEATcKQ/company-logo_200_200/company-logo_200_200/0/1709465010800/100xengineers_logo?e=2147483647&v=beta&t=qKncqAfB_j9ckDOxOx1eN9EEPocLTbNqliLnAU3sP6c Slide Content: Vibe Coding with Gemini Canvas Slide 1: Vibe Coding with Gemini Canvas Slide 2: What is Vibe Coding? Vibe Coding: Use natural language pro
> upwork-scrape-apply
# Upwork Job Scrape & Apply Pipeline Scrape Upwork jobs matching AI/automation keywords, generate personalized cover letters and proposals, and output to a Google Sheet with one-click apply links. ## Inputs - **Keywords**: List of search terms (default: automation, ai agent, n8n, gpt, workflow, api integration, scraping, ai consultant) - **Limit**: Max jobs to fetch (default: 50) - **Days**: Only jobs from last N days (default: 1 = last 24 hours) - **Filters**: - `--verified-payment`: Only
> ui-ux-pro-max
UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: g
> typescript-magician
Designs complex generic types, refactors `any` types to strict alternatives, creates type guards and utility types, and resolves TypeScript compiler errors. Use when the user asks about TypeScript (TS) types, generics, type inference, type guards, removing `any` types, strict typing, type errors, `infer`, `extends`, conditional types, mapped types, template literal types, branded/opaque types, or utility types like `Partial`, `Record`, `ReturnType`, and `Awaited`.