{"id":46047810,"url":"https://github.com/helmcode/agent_crew","last_synced_at":"2026-03-13T18:31:03.959Z","repository":{"id":339065416,"uuid":"1160310570","full_name":"helmcode/agent_crew","owner":"helmcode","description":"Web UI for managing multi-agent AI teams","archived":false,"fork":false,"pushed_at":"2026-03-03T16:05:01.000Z","size":271,"stargazers_count":20,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-03T20:28:53.654Z","etag":null,"topics":["ai-agents","ai-team","claude-code"],"latest_commit_sha":null,"homepage":"https://agentcrew.helmcode.com/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/helmcode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-17T19:41:51.000Z","updated_at":"2026-03-03T16:11:22.000Z","dependencies_parsed_at":"2026-03-03T18:01:15.211Z","dependency_job_id":null,"html_url":"https://github.com/helmcode/agent_crew","commit_stats":null,"previous_names":["helmcode/agent_crew"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/helmcode/agent_crew","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmcode%2Fagent_crew","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmcode%2Fagent_crew/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmcode%2Fagent_crew/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmcode%2Fagent_crew/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helmcode","download_url":"https://codeload.github.com/helmcode/agent_crew/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmcode%2Fagent_crew/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30229591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","ai-team","claude-code"],"created_at":"2026-03-01T08:03:40.185Z","updated_at":"2026-03-07T20:11:00.143Z","avatar_url":"https://github.com/helmcode.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AgentCrew Frontend\n\nWeb UI for managing multi-agent AI teams. Build, configure, deploy, and monitor teams of AI agents running on Docker or Kubernetes.\n\n## Tech Stack\n\n- **React 19** with TypeScript\n- **Vite 7** for bundling and dev server\n- **Tailwind CSS 4** for styling\n- **React Router 6** for client-side routing\n- **Vitest** for unit and integration testing\n- **Testing Library** for component tests\n\n## Features\n\n- **Team Builder** — Step-by-step wizard to create agent teams with Docker or Kubernetes runtime selection\n- **Team Monitor** — Real-time activity feed via WebSocket, agent status overview, and chat interface\n- **Teams List** — Dashboard showing all teams with status badges, deploy/stop controls\n- **Settings** — Key-value configuration management for the API\n- **Runtime Support** — Visual distinction between Docker and Kubernetes teams throughout the UI\n\n## Quick Start\n\n### Prerequisites\n\n- Node.js 20+\n- npm\n\n### Development\n\n```bash\n# Install dependencies\nnpm install\n\n# Copy environment variables\ncp .env.example .env\n\n# Start dev server (default: http://localhost:5173)\nnpm run dev\n```\n\nThe frontend expects the AgentCrew API running at the URL specified in `VITE_API_URL` (defaults to `http://localhost:3000`).\n\n### Docker Compose\n\nFrom the project root (`../`):\n\n```bash\ndocker compose up\n```\n\nThis starts the full stack:\n- **NATS** message broker on port 4222\n- **API** backend on port 3000\n- **Frontend** on port 8080\n\n## Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| `VITE_API_URL` | Backend API base URL | `http://localhost:3000` |\n\n## Project Structure\n\n```\nsrc/\n  pages/           # Route-level page components\n    TeamsListPage    # Teams dashboard\n    TeamBuilderPage  # Team creation wizard\n    TeamMonitorPage  # Real-time team monitoring\n    SettingsPage     # Settings management\n  components/      # Reusable UI components\n    Layout           # App shell with navigation\n    StatusBadge      # Status indicator badges\n    LoadingSkeleton  # Loading placeholders\n    EmptyState       # Empty state illustrations\n    Toast            # Toast notification system\n  services/        # API and WebSocket clients\n    api.ts           # REST API client (teams, agents, chat, settings)\n    websocket.ts     # WebSocket client with auto-reconnect\n  types/           # TypeScript type definitions\n    index.ts         # Shared interfaces and types\n  test/            # Test utilities and mocks\n    mocks.ts         # Mock data for tests\n    setup.ts         # Vitest setup\n```\n\n## Available Scripts\n\n| Command | Description |\n|---------|-------------|\n| `npm run dev` | Start development server |\n| `npm run build` | Type-check and build for production |\n| `npm run preview` | Preview production build locally |\n| `npm run lint` | Run ESLint |\n| `npm test` | Run unit tests |\n| `npm run test:watch` | Run tests in watch mode |\n| `npm run test:coverage` | Run tests with coverage report |\n| `npm run test:integration` | Run integration tests |\n\n## API Integration\n\nThe frontend connects to the AgentCrew API via:\n\n- **REST API** (`services/api.ts`) — CRUD operations for teams, agents, settings, and chat\n- **WebSocket** (`services/websocket.ts`) — Real-time activity stream with exponential backoff reconnection\n\nAll API calls go through a centralized `request()` function that handles errors, JSON parsing, and the base URL configuration.\n\n## License\n\nThis project is licensed under the [GNU Affero General Public License v3.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmcode%2Fagent_crew","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelmcode%2Fagent_crew","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmcode%2Fagent_crew/lists"}