{"id":38603371,"url":"https://github.com/zerdos/agent.spike.land","last_synced_at":"2026-01-17T08:35:44.350Z","repository":{"id":325270150,"uuid":"1100504847","full_name":"zerdos/agent.spike.land","owner":"zerdos","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-20T12:49:37.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-20T13:19:15.688Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zerdos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-11-20T11:18:52.000Z","updated_at":"2025-11-20T12:49:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zerdos/agent.spike.land","commit_stats":null,"previous_names":["zerdos/agent.spike.land"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/zerdos/agent.spike.land","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Fagent.spike.land","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Fagent.spike.land/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Fagent.spike.land/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Fagent.spike.land/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zerdos","download_url":"https://codeload.github.com/zerdos/agent.spike.land/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zerdos%2Fagent.spike.land/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504367,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"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":[],"created_at":"2026-01-17T08:35:44.268Z","updated_at":"2026-01-17T08:35:44.341Z","avatar_url":"https://github.com/zerdos.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Agent Control Panel\n\nA modern web application for controlling and monitoring AI agents powered by Claude. Built with React, TypeScript, and the Anthropic SDK.\n\n## Features\n\n- 🎯 **Dashboard**: View all your projects and agent statistics at a glance\n- 🤖 **Real-time Agent Control**: Send messages to Claude agents and see responses stream in real-time\n- 💬 **Interactive Console**: Chat-style interface for agent interaction\n- 🔄 **WebSocket Communication**: Low-latency bidirectional communication\n- 🧪 **Test-Driven Development**: Comprehensive test coverage with Vitest\n- 🎨 **Premium Dark Theme**: Beautiful, modern UI with smooth animations\n\n## Prerequisites\n\n- Node.js 18+ \n- npm or yarn\n- **Claude CLI** installed and authenticated (`npm install -g @anthropic-ai/claude-code`)\n\n## Getting Started\n\n### 1. Clone and Install\n\n```bash\ngit clone \u003cyour-repo-url\u003e\ncd agent.spike.land\nnpm install\ncd server \u0026\u0026 npm install \u0026\u0026 cd ..\n```\n\n### 2. Configure Environment\n\nCreate a `.env` file in the root directory:\n\n```bash\nPORT=3001\nFRONTEND_URL=http://localhost:5173\n```\n\n### 3. Authenticate Claude\n\nEnsure you have authenticated the Claude CLI on your machine:\n\n```bash\nclaude login\n```\n\n### 3. Run the Application\n\n**Option A: Run both frontend and backend (recommended)**\n\nFrom the root directory:\n```bash\n# Terminal 1: Start backend\ncd server \u0026\u0026 npm run dev\n\n# Terminal 2: Start frontend\nnpm run dev\n```\n\n**Option B: Use concurrently (WIP)**\n```bash\nnpm run dev:all # Coming soon\n```\n\n### 4. Open the Application\n\nNavigate to http://localhost:5173 in your browser.\n\n## Usage\n\n1. **View Dashboard**: See your projects and agent statistics\n2. **Connect to Agent**: Click on any project card\n3. **Chat with Agent**: Type messages in the console and get real-time responses\n4. **Close Console**: Click the × button to return to the dashboard\n\n## Project Structure\n\n```\nagent.spike.land/\n├── src/                        # Frontend React application\n│   ├── components/             # React components\n│   │   ├── Dashboard/          # Main dashboard\n│   │   ├── AgentConsole/       # Agent chat interface\n│   │   ├── AgentStats/         # Statistics display\n│   │   └── ProjectCard/        # Project information cards\n│   ├── hooks/                  # Custom React hooks\n│   │   └── useAgent.ts         # Agent connection management\n│   ├── services/               # Frontend services\n│   │   └── AgentService.ts     # WebSocket client\n│   └── types/                  # TypeScript type definitions\n│\n├── server/                     # Backend Node.js application\n│   └── src/\n│       ├── index.ts            # Express server + WebSocket setup\n│       ├── AgentManager.ts     # Claude SDK integration\n│       └── WebSocketHandler.ts # WebSocket message handling\n│\n├── features/                   # E2E tests (Cucumber + Playwright)\n└── .github/workflows/          # CI/CD pipelines\n```\n\n## Development\n\n### Running Tests\n\n```bash\n# Frontend unit tests\nnpm test\n\n# Frontend tests (watch mode)\nnpm test -- --watch\n\n# E2E tests\nnpm run e2e\n\n# Type checking\nnpm run type-check\n\n# Linting\nnpm run lint\n```\n\n### Building for Production\n\n```bash\n# Build frontend\nnpm run build\n\n# Build backend\ncd server \u0026\u0026 npm run build\n```\n\n## Technology Stack\n\n- **Frontend**: React 19, TypeScript, Vite\n- **Backend**: Node.js, Express, WebSocket\n- **AI**: Anthropic Claude SDK\n- **Testing**: Vitest, React Testing Library, Playwright, Cucumber\n- **CI/CD**: GitHub Actions\n\n## Architecture\n\nThe application uses a client-server architecture:\n\n1. **Frontend (React)**: \n   - Modern SPA with component-based architecture\n   - WebSocket client for real-time communication\n   - State management with React hooks\n\n2. **Backend (Node.js)**:\n   - Express server for HTTP endpoints\n   - WebSocket server for real-time messaging\n   - AgentManager wraps Anthropic SDK\n   - Streaming responses from Claude\n\n3. **Communication Flow**:\n   ```\n   Browser → WebSocket → Backend → Anthropic API\n              ← Stream ←         ← Claude Response\n   ```\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'feat: add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Commit Convention\n\nWe follow conventional commits:\n- `feat:` New features\n- `fix:` Bug fixes\n- `docs:` Documentation changes\n- `test:` Test updates\n- `refactor:` Code refactoring\n\n## License\n\nOpen Source - MIT License\n\n## Roadmap\n\n- [ ] User authentication\n- [ ] Agent persistence across sessions\n- [ ] Multi-agent conversations\n- [ ] Agent tool permissions UI\n- [ ] Project creation and management\n- [ ] Real-time collaboration\n- [ ] Agent performance metrics\n- [ ] Export conversation history\n\n## Support\n\nFor issues and questions, please open an issue on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerdos%2Fagent.spike.land","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzerdos%2Fagent.spike.land","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerdos%2Fagent.spike.land/lists"}