{"id":31884333,"url":"https://github.com/copilotkit/with-adk","last_synced_at":"2025-10-13T03:58:13.265Z","repository":{"id":316122876,"uuid":"1058345472","full_name":"CopilotKit/with-adk","owner":"CopilotKit","description":"Demo for using copilotkit with the ada-middleware from ag-ui","archived":false,"fork":false,"pushed_at":"2025-09-24T22:47:58.000Z","size":26,"stargazers_count":57,"open_issues_count":1,"forks_count":5,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T08:19:38.985Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CopilotKit.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":"2025-09-17T01:07:30.000Z","updated_at":"2025-10-02T14:48:08.000Z","dependencies_parsed_at":"2025-09-22T21:08:18.064Z","dependency_job_id":"3f5f07c4-b06c-4bfc-907b-06240f10582d","html_url":"https://github.com/CopilotKit/with-adk","commit_stats":null,"previous_names":["copilotkit/with-adk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CopilotKit/with-adk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CopilotKit%2Fwith-adk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CopilotKit%2Fwith-adk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CopilotKit%2Fwith-adk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CopilotKit%2Fwith-adk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CopilotKit","download_url":"https://codeload.github.com/CopilotKit/with-adk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CopilotKit%2Fwith-adk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279013508,"owners_count":26085369,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-10-13T03:58:09.049Z","updated_at":"2025-10-13T03:58:13.259Z","avatar_url":"https://github.com/CopilotKit.png","language":"Python","readme":"# CopilotKit \u003c\u003e ADK Starter\n\nThis is a starter template for building AI agents using Google's [ADK](https://google.github.io/adk-docs/) and [CopilotKit](https://copilotkit.ai). It provides a modern Next.js application with an integrated investment analyst agent that can research stocks, analyze market data, and provide investment insights.\n\n## Prerequisites\n\n- Node.js 18+\n- Python 3.12+\n- Google Makersuite API Key (for the ADK agent) (see https://makersuite.google.com/app/apikey)\n- Any of the following package managers:\n  - pnpm (recommended)\n  - npm\n  - yarn\n  - bun\n\n\u003e **Note:** This repository ignores lock files (package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb) to avoid conflicts between different package managers. Each developer should generate their own lock file using their preferred package manager. After that, make sure to delete it from the .gitignore.\n\n## Getting Started\n\n1. Install dependencies using your preferred package manager:\n```bash\n# Using pnpm (recommended)\npnpm install\n\n# Using npm\nnpm install\n\n# Using yarn\nyarn install\n\n# Using bun\nbun install\n```\n\n2. Install Python dependencies for the ADK agent:\n```bash\n# Using pnpm\npnpm install:agent\n\n# Using npm\nnpm run install:agent\n\n# Using yarn\nyarn install:agent\n\n# Using bun\nbun run install:agent\n```\n\n\u003e **Note:** This will automatically setup a `.venv` (virtual environment) inside the `agent` directory.\n\u003e\n\u003e To activate the virtual environment manually, you can run:\n\u003e ```bash\n\u003e source agent/.venv/bin/activate\n\u003e ```\n\n\n3. Set up your Google API key:\n```bash\nexport GOOGLE_API_KEY=\"your-google-api-key-here\"\n```\n\n4. Start the development server:\n```bash\n# Using pnpm\npnpm dev\n\n# Using npm\nnpm run dev\n\n# Using yarn\nyarn dev\n\n# Using bun\nbun run dev\n```\n\nThis will start both the UI and agent servers concurrently.\n\n## Available Scripts\nThe following scripts can also be run using your preferred package manager:\n- `dev` - Starts both UI and agent servers in development mode\n- `dev:debug` - Starts development servers with debug logging enabled\n- `dev:ui` - Starts only the Next.js UI server\n- `dev:agent` - Starts only the ADK agent server\n- `build` - Builds the Next.js application for production\n- `start` - Starts the production server\n- `lint` - Runs ESLint for code linting\n- `install:agent` - Installs Python dependencies for the agent\n\n## Documentation\n\nThe main UI component is in `src/app/page.tsx`. You can:\n- Modify the theme colors and styling\n- Add new frontend actions\n- Customize the CopilotKit sidebar appearance\n\n## 📚 Documentation\n\n- [ADK Documentation](https://google.github.io/adk-docs/) - Learn more about the ADK and its features\n- [CopilotKit Documentation](https://docs.copilotkit.ai) - Explore CopilotKit's capabilities\n- [Next.js Documentation](https://nextjs.org/docs) - Learn about Next.js features and API\n\n\n## Contributing\n\nFeel free to submit issues and enhancement requests! This starter is designed to be easily extensible.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Troubleshooting\n\n### Agent Connection Issues\nIf you see \"I'm having trouble connecting to my tools\", make sure:\n1. The ADK agent is running on port 8000\n2. Your Google API key is set correctly\n3. Both servers started successfully\n\n### Python Dependencies\nIf you encounter Python import errors:\n```bash\ncd agent\npip install -r requirements.txt\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcopilotkit%2Fwith-adk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcopilotkit%2Fwith-adk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcopilotkit%2Fwith-adk/lists"}