Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.avibe.bot/llms.txt

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

Thread sessions

In Vibe Remote, a chat scope can map to an agent session. The practical rule:
Thread = session
Start five threads, run five independent jobs, and keep their context separate.

Why it works

Chat threads are a natural unit of work:
  • One production incident.
  • One feature branch.
  • One refactor.
  • One investigation.
  • One follow-up review.
The agent does not need a custom dashboard to understand the conversation boundary. The chat app already gives it one.

Best practices

  • Start a new thread for a new task.
  • Reply in the same thread to continue the same task.
  • Use short, explicit acceptance criteria.
  • Stop or archive sessions that are no longer useful.

Example

Top-level message:
Fix the login redirect bug. Reproduce it first, then patch the smallest root cause and run the relevant tests.
Thread reply:
Good. Also check whether the same redirect path affects signup.