Webflow answers in seconds

Stop searching through documentation and ask Flowfind instead

Trusted by Webflow professionals

Capabilities

Everything you need to master Webflow

Semantic search that understands intent

Ask questions naturally and get results that match what you actually need.

Streaming answers delivered in real time

Watch responses appear instantly, no waiting for slow database queries.

Source citations you can trust

Every answer links back to official documentation so you verify everything.

Multi-turn conversations that remember context

Build on previous questions without repeating yourself or losing the thread.

Under the hood

Powered by Pinecone vector search and OpenAI GPT-4o-mini. Built for speed, designed for accuracy, deployed on Webflow Cloud.

TypeScript
/**
   * RAG Pipeline for Flow Find
   * Retrieval-Augmented Generation using Pinecone + OpenAI
   */

  export async function generateAnswer(
    query: string,
    options?: RAGOptions
  ): Promise {
    // 1. Generate embedding from user query
    const embedding = await getEmbedding(query);

    // 2. Search Pinecone for similar chunks
    const chunks = await searchSimilarChunks(embedding, {
      topK: options?.top_k || 5,
      filter: options?.sourceTypes
    });

    // 3. Assemble context from top matches
    const context = chunks.map(chunk => ({
      content: chunk.metadata.content,
      source: chunk.metadata.uri,
      title: chunk.metadata.title
    }));

    // 4. Stream response from GPT-4o-mini
    const stream = await openai.chat.completions.create({
      model: 'gpt-4o-mini',
      messages: [
        { role: 'system', content: SYSTEM_PROMPT },
        { role: 'user', content: buildPrompt(query, context) }
      ],
      stream: true
    });

    return streamResponse(stream, chunks);
  }

"Flowfind cut my research time in half. I used to dig through docs for years. Now I get answers in seconds."

Jordan Maslyn
Lead Solutions Architect

If you made it this far...

Flowfind is more than just a side project. I built it as a bit of a love letter to Webflow. I've been watching your growth, I believe in your product, and I want to make an impact to your Solutions Engineering team. I know the agencies and enterprise customers you're scaling to serve because I've been supporting them, selling to them, and building teams around them for years.

Professional Summary

Sales engineering leader, founder, and entrepreneur with a decade of experience in the website experience platform space. Won Sales Engineer of the Year twice while generating the highest ARR among individual contributors. Led teams of 14 SEs and SAs globally across pre-sales and post-sales, serving agencies, mid-market, and enterprise customers.

Sr. Manager, Solutions Engineering

Deployed a RAG-based AI application to 200+ global sales reps, reducing SE workload by hundreds of routine interactions. Built SE assignment systems from scratch and redesigned compensation programs. Currently leading a team of 9 in NORAM, previously managed a team of 14 globally. Led POCs for strategic deals while maintaining technical credibility and empowering senior SEs.

Sr. Solutions Engineer, Named Accounts

Worked with our Named Accounts. Supporting customers like the County of LA, Microsoft, and Ticketmaster. Created technical training programs for sales teams reducing onboarding time and Streamlined customer implementation handoffs between Sales Engineering and Customer Success. Developed technical white papers and competitive intelligence documentation to support sales and marketing initiatives. Designed and implemented scalable solutions for enterprise clients, while establishing best practices for the sales engineering team.

Side Ventures While at WP Engine

Led product development, executed company acquisition, and created multi-channel content strategy driving user growth for The Solver Sports. Acted as COO of innovative lifestyle brand leveraging blockchain technology. Led fundraising, scaled to 10 employees, and secured strategic partnerships with major retail brands including Urban Outfitters. Transitioned both ventures to Limited Partner roles in 2024.

More questions?

Reach out and lets schedule next steps