{"id":49232256,"url":"https://github.com/thaletto/kite","last_synced_at":"2026-04-24T12:20:51.121Z","repository":{"id":311669263,"uuid":"1036750571","full_name":"thaletto/kite","owner":"thaletto","description":"AG-UI Explorer","archived":false,"fork":false,"pushed_at":"2026-04-14T19:10:59.000Z","size":3072,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-14T20:24:14.040Z","etag":null,"topics":["ai-chatbot","ai-sdk","drizzle-orm","opensource","postgresql","typescript"],"latest_commit_sha":null,"homepage":"https://kite-agui.netlify.app","language":"TypeScript","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/thaletto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["thaletto"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"thaletto","thanks_dev":null,"custom":null}},"created_at":"2025-08-12T14:27:29.000Z","updated_at":"2026-04-14T19:10:54.000Z","dependencies_parsed_at":"2026-03-23T04:03:24.679Z","dependency_job_id":null,"html_url":"https://github.com/thaletto/kite","commit_stats":null,"previous_names":["thaletto/opengpt","thaletto/ai"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/thaletto/kite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaletto%2Fkite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaletto%2Fkite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaletto%2Fkite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaletto%2Fkite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thaletto","download_url":"https://codeload.github.com/thaletto/kite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thaletto%2Fkite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32222992,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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-chatbot","ai-sdk","drizzle-orm","opensource","postgresql","typescript"],"created_at":"2026-04-24T12:20:50.341Z","updated_at":"2026-04-24T12:20:51.116Z","avatar_url":"https://github.com/thaletto.png","language":"TypeScript","funding_links":["https://github.com/sponsors/thaletto","https://buymeacoffee.com/thaletto"],"categories":[],"sub_categories":[],"readme":"# [Kite](https://kite.netlify.app)\n\nKite is an AI-powered data exploration assistant that helps you discover and visualize information about any topic. Ask questions about weather, crypto prices, GitHub repositories, or news, and Kite fetches real-time data and builds interactive dashboards.\n\n## Architecture\n\n```mermaid\nflowchart LR\n    subgraph Client[\"Client (React 19)\"]\n        UI[Chat UI]\n        Renderer[JSON Renderer]\n    end\n\n    subgraph Server[\"Server (TanStack Start)\"]\n        API[API Handler]\n        RateLimit[Rate Limiter]\n        Tools[Tool Functions]\n    end\n\n    subgraph AI[\"AI Layer\"]\n        Agent[ToolLoopAgent]\n        Gateway[AI Gateway]\n    end\n\n    subgraph External[\"External APIs\"]\n        Weather[WeatherAPI]\n        GitHub[GitHub]\n        Crypto[CoinGecko]\n        HN[Hacker News]\n        Search[Exa Search]\n    end\n\n    UI --\u003e|messages| API\n    API --\u003e RateLimit\n    RateLimit --\u003e Agent\n    Agent --\u003e Gateway\n    Gateway --\u003e|tool calls| Agent\n    Agent --\u003e|calls| Tools\n    Tools --\u003e|fetch| External\n    Agent --\u003e|JSON spec| Renderer\n    Renderer --\u003e UI\n```\n\n- **Client**: React 19 UI with streaming chat. Renders AI responses as JSON-defined UI components.\n- **Server**: TanStack Start server functions handle requests, rate limiting, and proxy to the AI.\n- **AI**: ToolLoopAgent orchestrates tool calls, formats responses as JSON UI specs.\n- **Tools**: Server-side functions fetch real data (weather APIs, GitHub, crypto, web search).\n\n## How It Works\n\n1. **You send a message** asking about any topic (weather, crypto, GitHub, etc.)\n2. **The agent calls tools** to fetch real, up-to-date data from external APIs\n3. **The agent responds** with a conversational summary + a JSON UI specification\n4. **The UI renderer** transforms the JSON spec into interactive React components\n5. **You see a dashboard** with charts, tables, metrics, and rich content\n\nThe UI is defined entirely in JSON—the AI outputs both text and a component tree, which gets rendered by `@json-render/react`.\n\n## Tech Stack\n\n- **Framework**: TanStack Start (file-based routing, server functions)\n- **UI**: React 19 + shadcn/ui + TailwindCSS 4\n- **AI**: AI SDK with ToolLoopAgent + @ai-sdk/gateway\n- **Rendering**: [json-render](https://json-render.dev/)\n- **Charts**: Recharts + React Three Fiber (3D)\n- **Rate Limiting**: @upstash/redis\n- **Deployment**: Netlify\n\n## Available Tools\n\n| Tool                    | Data Source     | Dashboard Components   |\n| ----------------------- | --------------- | ---------------------- |\n| `getWeather`            | WeatherAPI      | Metric, Table          |\n| `getGitHubRepo`         | GitHub API      | Card, Metric, Table    |\n| `getGitHubPullRequests` | GitHub API      | Table, Badge           |\n| `getCryptoPrice`        | CoinGecko       | Metric, Table          |\n| `getCryptoPriceHistory` | CoinGecko       | LineChart, AreaChart   |\n| `getHackerNewsTop`      | Hacker News API | Table, Badge, Link     |\n| `webSearch`             | Exa search      | Stack, Accordion, Tabs |\n\n## Component Library\n\nThe AI can generate these components via JSON specs:\n\n**Layout**: Stack, Grid, Card, Tabs, Accordion\n**Content**: Heading, Text, Badge, Separator, Callout, Link\n**Data**: Metric, Table, BarChart, LineChart, PieChart\n**Input**: Button, RadioGroup, SelectInput, TextInput\n**3D**: Scene3D, Sphere, Box, Cone, Torus, Light, Stars, Label3D\n\nComponents support data binding via `{ \"$state\": \"/path\" }` syntax. The AI stores fetched data in state, then binds components to it.\n\n## Development\n\n```bash\nbun dev          # Start dev server on port 3000\nbun run build    # Production build\nbun run test     # Run tests\nbun run lint     # Biome lint\nbun run format   # Biome format\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthaletto%2Fkite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthaletto%2Fkite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthaletto%2Fkite/lists"}