{"id":51341651,"url":"https://github.com/autonomic-ai-dev/agent-ci-dashboard","last_synced_at":"2026-07-02T08:04:45.566Z","repository":{"id":366110010,"uuid":"1275042951","full_name":"autonomic-ai-dev/agent-ci-dashboard","owner":"autonomic-ai-dev","description":"Mission Control for Autonomic AI Agents — real-time CI/CD dashboard with push notifications, log viewer, and GitHub Actions integration.","archived":false,"fork":false,"pushed_at":"2026-06-20T10:18:03.000Z","size":693,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-20T10:19:35.915Z","etag":null,"topics":["ci-cd","dashboard","github-actions","pwa","svelte","sveltekit","tailwindcss","typescript","vercel","web-push"],"latest_commit_sha":null,"homepage":"https://agent-ci-dashboard.vercel.app","language":"Svelte","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/autonomic-ai-dev.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":"2026-06-20T07:13:28.000Z","updated_at":"2026-06-20T10:18:07.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/autonomic-ai-dev/agent-ci-dashboard","commit_stats":null,"previous_names":["autonomic-ai-dev/agent-ci-dashboard"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/autonomic-ai-dev/agent-ci-dashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/autonomic-ai-dev%2Fagent-ci-dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/autonomic-ai-dev%2Fagent-ci-dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/autonomic-ai-dev%2Fagent-ci-dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/autonomic-ai-dev%2Fagent-ci-dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/autonomic-ai-dev","download_url":"https://codeload.github.com/autonomic-ai-dev/agent-ci-dashboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/autonomic-ai-dev%2Fagent-ci-dashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35038267,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"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":["ci-cd","dashboard","github-actions","pwa","svelte","sveltekit","tailwindcss","typescript","vercel","web-push"],"created_at":"2026-07-02T08:04:43.359Z","updated_at":"2026-07-02T08:04:45.555Z","avatar_url":"https://github.com/autonomic-ai-dev.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Agent CI Dashboard\n\nA centralized, \"Mission Control\" dashboard for tracking GitHub Actions workflows across a GitHub Organization or set of repositories.\n\n## Features\n\n```mermaid\ngraph TD\n    subgraph Vercel\n        App[SvelteKit App\u003cbr\u003eAuth.js]\n        KV[(Vercel KV\u003cbr\u003ePush Subscriptions)]\n    end\n    subgraph GitHub\n        Actions[GitHub Actions]\n        Webhooks[Webhooks]\n        OAuth[OAuth App]\n    end\n    App \u003c--\u003e KV\n    Webhooks -- \"Build status\" --\u003e App\n    App -- \"Trigger\" --\u003e Actions\n    App \u003c--\u003e OAuth\n```\n\n- **Hybrid Auth Model:** Publicly viewable dashboard — secure actions (triggering workflows, viewing logs) require GitHub OAuth sign-in.\n- **In-App Terminal:** View raw build logs with ANSI color parsing without leaving the dashboard.\n- **PWA Ready:** Installable on mobile and desktop as a native app.\n- **True Web Push:** Receive background push notifications the moment a build fails (powered by Vercel KV and GitHub Webhooks).\n- **GraphQL Optimized:** Batches all repository status requests into a single API call for maximum rate-limit efficiency.\n- **Concurrency-Safe Deploys:** GitHub Actions concurrency groups prevent overlapping deployments.\n\n## Local Setup\n\n### 1. Clone \u0026 Install Dependencies\n\nThis project uses [Bun](https://bun.sh) for package management.\n\n```sh\ngit clone https://github.com/\u003cyour-org\u003e/\u003cyour-fork\u003e.git\ncd agent-ci-dashboard\nbun install\n```\n\n### 2. Environment Variables\n\nCopy the example file and fill in your values:\n\n```sh\ncp .env.example .env\n```\n\nSee [`.env.example`](.env.example) for a description of every required variable.\n\n**Key steps:**\n\n- **`GITHUB_TOKEN`** — Create a Personal Access Token with `repo` and `workflow` scopes at [github.com/settings/tokens](https://github.com/settings/tokens).\n- **`AUTH_SECRET`** — Generate with `openssl rand -base64 32`.\n- **`AUTH_URL`** — Set to `http://localhost:5173` for local dev.\n- **`GITHUB_CLIENT_ID` / `GITHUB_CLIENT_SECRET`** — Create a GitHub OAuth App at [github.com/settings/applications/new](https://github.com/settings/applications/new). Set the callback URL to `http://localhost:5173/auth/callback/github` for local dev.\n- **`PUBLIC_VAPID_KEY` / `VAPID_PRIVATE_KEY`** — Generate with `npx web-push generate-vapid-keys`.\n- **`WEBHOOK_SECRET`** — Generate with `openssl rand -hex 32`.\n\n### 3. Run Locally\n\n```sh\nbun run dev\n```\n\nOpen [http://localhost:5173](http://localhost:5173).\n\n\u003e **Note:** Push notifications require Vercel KV and a publicly reachable webhook URL. They will not work in local dev without a tunnel (e.g. `ngrok`).\n\n---\n\n## Production Deployment (Vercel)\n\n### 1. Vercel KV (Redis)\n\nPush notifications store subscriptions in a Redis-compatible KV store.\n\n1. Go to your Vercel Project → **Storage**.\n2. Create a new **KV Database** and link it to this project.\n3. Vercel will automatically inject `KV_REST_API_URL` and `KV_REST_API_TOKEN` into your environments.\n\n### 2. Environment Variables\n\nMirror all variables from `.env.example` in Vercel's **Settings → Environment Variables**.\n\n- Set `AUTH_URL` to your deployed domain (e.g. `https://agent-ci-dashboard.vercel.app`).\n- Ensure `AUTH_SECRET`, `GITHUB_CLIENT_ID`, and `GITHUB_CLIENT_SECRET` are set for **Production** (and Preview if you test preview URLs).\n- Create a **separate** GitHub OAuth App for production with its callback URL pointing to your deployed domain: `https://\u003cyour-domain\u003e/auth/callback/github`.\n\n### 3. GitHub Webhook (Push Notifications)\n\n1. Go to your GitHub Organization → **Settings** → **Webhooks** → **Add webhook**.\n2. Set **Payload URL** to `https://\u003cyour-domain\u003e/api/webhook/github`.\n3. Set **Content type** to `application/json`.\n4. Set **Secret** to the value of your `WEBHOOK_SECRET`.\n5. Under events, select **Let me select individual events** and check **Workflow runs**.\n6. Save.\n\n### 4. GitHub Actions Secrets (for CI/CD)\n\nAdd the following secrets to your repository under **Settings → Secrets and variables → Actions**:\n\n| Secret              | Description                       |\n| ------------------- | --------------------------------- |\n| `VERCEL_ORG_ID`     | Your Vercel organization ID       |\n| `VERCEL_PROJECT_ID` | Your Vercel project ID            |\n| `VERCEL_TOKEN`      | Your Vercel personal access token |\n\n---\n\n## Tech Stack\n\n| Layer      | Technology                                                             |\n| ---------- | ---------------------------------------------------------------------- |\n| Framework  | [SvelteKit](https://kit.svelte.dev)                                    |\n| Styling    | [Tailwind CSS v4](https://tailwindcss.com)                             |\n| Auth       | [Auth.js (SvelteKit)](https://authjs.dev)                              |\n| Deployment | [Vercel](https://vercel.com)                                           |\n| Storage    | [Vercel KV](https://vercel.com/storage/kv)                             |\n| Push       | [web-push](https://github.com/web-push-libs/web-push) + Service Worker |\n| CI/CD      | GitHub Actions                                                         |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fautonomic-ai-dev%2Fagent-ci-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fautonomic-ai-dev%2Fagent-ci-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fautonomic-ai-dev%2Fagent-ci-dashboard/lists"}