Thanks to visit codestin.com
Credit goes to github.com

Skip to content

agentsystems/agentsystems-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

AgentSystems UI

GitHub stars Build Status

Note

Pre-Release Software - AgentSystems is in active development. Join our Discord for updates and early access. โญ Star the main repository to show your support!

This is the web interface for AgentSystems. See the main repository for platform overview and documentation. TypeScript

A self-hostable web interface for the AgentSystems platform. Built with modern React patterns and TypeScript.

Features

๐ŸŽจ Professional Theming

  • Dark Theme: Professional dark interface with electric cyan accents
  • Light Theme: Clean, bright interface for daytime use
  • Cyber Theme: Retro terminal aesthetic with matrix effects and authentic audio feedback

๐Ÿš€ Core Functionality

  • ๐Ÿ“Š Real-time Dashboard: Live agent monitoring with system metrics
  • ๐Ÿค– Agent Management: Discover, start, stop, and invoke agents
  • ๐Ÿ“ Live Logs: Stream real-time logs with filtering and search
  • โš™๏ธ Settings: Configuration with validation and security checks
  • ๐Ÿ”„ File Uploads: Support for agent file processing workflows

๐Ÿ›ก๏ธ Security Features

  • ๐Ÿ”’ Input Sanitization: Configured with XSS protection and input filtering
  • ๐Ÿšฆ Rate Limiting: Configured for abuse prevention on forms and API calls
  • ๐Ÿ” Authentication: Token-handling practices (no hardcoded credentials)
  • ๐Ÿ“‹ Form Validation: Client-side validation with user feedback

โ™ฟ Accessibility Excellence

  • Accessibility: Aims to meet WCAG 2.1 guidelines; includes screen-reader and keyboard navigation support
  • Skip Links: Quick navigation for assistive technology users
  • ARIA Labels: Comprehensive labeling for all interactive elements
  • Semantic HTML: Proper landmark and heading structure

๐Ÿงช Quality Assurance

  • Error Boundaries: Graceful failure handling with user-friendly error messages
  • Performance Optimized: Efficient rendering and state management

๐Ÿ› ๏ธ Tech Stack

  • Frontend: React 18 + TypeScript (strict mode)
  • Build Tool: Vite with optimized production builds
  • Styling: CSS Modules + CSS Variables (theme system)
  • State Management: Zustand with persistence
  • Data Fetching: TanStack Query with caching and error handling
  • Routing: React Router v6 with lazy loading support
  • Testing: Vitest + React Testing Library
  • Security: Input sanitization and validation
  • Container: Multi-stage Docker builds with nginx Alpine
  • Audio: Web Audio API for cyber theme sound effects

Quick Start

Development

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

Docker

# Build the image
docker build -t agentsystems-ui:latest .

# Run the container
docker run -d \
  -p 3001:80 \
  -e API_GATEWAY_URL=http://localhost:18080 \
  -e WS_ENDPOINT_URL=ws://localhost:18080 \
  agentsystems-ui:latest

Docker Compose

# Start with docker-compose
docker-compose up -d

# Access the UI
open http://localhost:3001

Environment Variables

Variable Default Description
API_GATEWAY_URL http://localhost:18080 AgentSystems gateway URL
WS_ENDPOINT_URL ws://localhost:18080 WebSocket endpoint for real-time updates

Project Structure

agentsystems-ui/
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ api/            # API client and endpoints
โ”‚   โ”œโ”€โ”€ components/     # Reusable React components
โ”‚   โ”œโ”€โ”€ hooks/          # Custom React hooks
โ”‚   โ”œโ”€โ”€ pages/          # Route pages
โ”‚   โ”œโ”€โ”€ stores/         # Zustand state stores
โ”‚   โ”œโ”€โ”€ styles/         # Global styles and themes
โ”‚   โ””โ”€โ”€ types/          # TypeScript type definitions
โ”œโ”€โ”€ docker/             # Docker configuration
โ”œโ”€โ”€ public/             # Static assets
โ””โ”€โ”€ package.json

Integration with AgentSystems

The UI integrates with other AgentSystems components:

  • Agent Control Plane: Connects to the gateway API on port 18080
  • Agent Discovery: Auto-discovers and displays available agents
  • Invocation: Supports sync/async agent invocation with progress tracking
  • Artifacts: Handles file uploads and downloads through the gateway
  • Audit Logs: Displays hash-chained audit logs for operation tracking

Development

Prerequisites

  • Node.js 20+
  • npm or yarn
  • Running AgentSystems gateway (port 18080)

Commands

# Install dependencies
npm install

# Start dev server with hot reload
npm run dev

# Type checking
npm run type-check

# Linting
npm run lint

# Run test suite
npm test

# Test with UI dashboard
npm run test:ui

# Coverage report
npm run test:coverage

# Build for production
npm run build

# Preview production build
npm run preview

Testing

The application includes a test suite:

  • Component Tests: UI components include test coverage
  • Integration Tests: Page-level functionality verification
  • Security Tests: Input sanitization and validation testing
  • Accessibility tests: Automated checks against WCAG 2.1 rules
  • API Tests: Client functionality and error handling

Run npm test to execute the test suite.

๐ŸŽจ Themes & Customization

The UI supports three professionally designed themes:

Dark Theme (Default)

  • Deep space color palette with electric cyan accents
  • Subtle gradient backgrounds for depth
  • Optimized for extended use and eye comfort

Light Theme

  • Clean, bright interface perfect for daytime work
  • High contrast for excellent readability
  • Professional appearance for business environments

Cyber Theme ๐ŸŽฎ

  • Authentic retro terminal aesthetic with matrix-inspired effects
  • Dynamic scanline effects with customizable frequency (30s/90s/300s)
  • Audio feedback with synthesized terminal click sounds (Web Audio API)
  • Terminal typography with monospace fonts throughout
  • Perfect for developers who want that classic hacker movie experience

All themes use CSS custom properties for easy customization and aim to align with WCAG 2.1 accessibility guidelines.

๐Ÿ”’ Security Features

  • Input Sanitization: User inputs are sanitized to help prevent XSS attacks
  • Rate Limiting: Configured to help protect against form spam and API abuse
  • Security headers: CSRF protection and content-type validation
  • Authentication: Token handling without hardcoded credentials
  • JSON Validation: Parsing and validation of agent payloads

๐Ÿค Contributing

We welcome contributions! The codebase is designed for easy contribution with:

  • Test coverage - Changes are protected by tests
  • TypeScript strict mode - Catch errors at compile time
  • ESLint + Prettier - Consistent code formatting
  • Comprehensive documentation - JSDoc comments throughout

Development Workflow

  1. Fork the repository
  2. Install dependencies: npm install
  3. Run tests: npm test
  4. Start development: npm run dev
  5. Create feature branch: git checkout -b feature/amazing-feature
  6. Make changes with tests
  7. Verify quality: npm run lint && npm run type-check && npm test
  8. Commit changes: git commit -m 'Add amazing feature'
  9. Push to branch: git push origin feature/amazing-feature
  10. Open Pull Request

Code Standards

  • All new components must include TypeScript interfaces and JSDoc documentation
  • Add tests for new functionality
  • Follow accessibility guidelines (ARIA labels, keyboard navigation)
  • Security: Sanitize all user inputs and validate forms
  • UI: Support all three themes (Dark, Light, Cyber)

Links

License

Licensed under the Apache-2.0 license.

About

Web interface for agent management and monitoring

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages