Xuda logo

xuda.io

Technical docs for Xuda Slim and Xuda CLI

Product overview
Xuda CLI

ai-agents/

This guide was generated by xuda-cli.

Xuda CLI pages

Repo-driven docs from the xuda-cli package README and generated folder guides.

Docs page

This guide was generated by xuda-cli.

You can remove all generated folder guides later with:

npm run clean:readmes

Use this folder for AI agent resources.

File rules

  • file type: .agent.json5
  • each file compiles to a Xuda ai_agent resource

What belongs here

  • agent metadata
  • provider and model settings
  • future assistant resources tied to your app domain

Important rules

  • keep agent purpose narrow and named clearly
  • store only agent configuration here, not UI
  • reference the agent from the parts of your app that need it

Example

{
  id: "class_helper",
  menuTitle: "Class Helper",
  config: {
    provider: "openai",
    model: "gpt-5"
  }
}