AgentUI is an experiment, and experiments need diverse perspectives. We value ideas, criticism, and discussion as much as code.
The most valuable contribution you can make right now is sharing your perspective:
- Start a Discussion — Share your experience with AI agents and web frameworks
- Challenge our assumptions — Think our approach is wrong? Tell us why. Constructive criticism makes better software.
- Share your pain points — What friction do you experience when AI agents work with existing frameworks?
We're serious about this: a well-articulated critique is worth more than a pull request that doesn't address the right problem.
git clone https://github.com/GiuseppeScottoLavina/AgentUI.git
cd AgentUI
bun install
bun run devThen tell us what an AI agent (Claude, Copilot, etc.) can and can't do with it.
If you want to contribute code:
- Open a Discussion first — Let's talk about the approach before you write code
- Fork the repository
- Create a feature branch (
git checkout -b feature/your-idea) - Write tests (we follow TDD —
bun run test:isolated) - Submit a Pull Request
# Install dependencies
bun install
# Start dev server
bun run dev
# Run tests (isolated — avoids cross-contamination)
bun run test:isolated
# Build the framework
bun run build:frameworkAgentUI/
├── src/
│ ├── components/ # 57 components (MD3 application + dev tools)
│ ├── core/ # AuElement base, utils, scheduler
│ └── styles/ # CSS design tokens (MD3)
├── tests/
│ ├── components/ # Unit tests (linkedom)
│ └── e2e/ # Browser tests (Puppeteer)
├── demo/ # Live demo site
└── dist/ # Build output
- JS: ES Modules, vanilla JS with JSDoc,
htmltagged template for safe rendering (orescapeHTML()for raw templates) - CSS: Custom Properties, BEM naming (
au-component__element--modifier) - Components: Extend
AuElement, Light DOM, include ARIA attributes - Commits: Conventional Commits (
feat:,fix:,docs:)
Be respectful, be constructive, be honest. We're all here to learn.
This project follows the Contributor Covenant.
Open a Discussion — we'd rather have a conversation than a formal issue.