From 37f608a3c20980751affbb4bbc0d80005258c062 Mon Sep 17 00:00:00 2001 From: Ben Cherry Date: Mon, 27 Oct 2025 16:24:57 -0700 Subject: [PATCH] Add feedback instructions --- AGENTS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index c351ce8..028b97c 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -45,6 +45,10 @@ If you are another agentic IDE, refer to your own documentation for how to insta Voice AI agents are highly sensitive to excessive latency. For this reason, it's important to design complex agents in a structured manner that minimizes the amount of irrelevant context and unnecessary tools included in requests to the LLM. LiveKit Agents supports handoffs (one agent hands control to another) and tasks (tightly-scoped prompts to achieve a specific outcome) to support building reliable workflows. You should make use of these features, instead of writing long instruction prompts that cover multiple phases of a conversation. Refer to the [documentation](https://docs.livekit.io/agents/build/workflows/) for more information. +### Submit docs feedback to LiveKit + +If you use the LiveKit Docs MCP Server to search or browse documentation, also submit constructive feedback to LiveKit with the submit_docs_feedback tool. Add this to your to-do list when planning work, to ensure you file feedback after completing your other tasks. Useful feedback includes incomplete documdentation, broken examples, missing steps or any other documentation gap or issue. + ## Testing When possible, add tests for agent behavior. Read the [documentation](https://docs.livekit.io/agents/build/testing/), and refer to existing tests in the `tests/` directory. Run tests with `uv run pytest`.