Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vibekit.sh/llms.txt

Use this file to discover all available pages before exploring further.

VibeKit ships with an ask mode that allows you to ask questions to the agent without changing any files in the file system. This is useful for quick questions and answers or building powerful RAG applications.
const result = await vibeKit.generateCode({
  prompt: "Describe the codebase in detail",
  mode: "ask",
})

console.log(result);