Analyzed 17 days ago · 2 anonymous rescans remaining · register free to re-analyze any time.
Public analysis · read only
Register free to re-analyze

Cap-go/capgo.app

205 131 19 issues
TypeScript
AGPL-3.0

Project Overview

anthropic / claude-opus-4-7

Capgo

Console, backend, and CLI for delivering over-the-air live updates to Capacitor mobile apps.

AI Verdict
Clean— AI Trust Assessment

True Intent (AI Assessment)

Provide the console, multi-region backend, CLI, and plugins that power Capgo's live-update service for Capacitor apps, with a self-hostable path via Supabase.

README Accuracy

Accurate

Notes

README description matches the code. Minor license inconsistency: root package.json says GPL-3.0 while LICENSE and plugin packages say AGPL-3.0; CLI is Apache-2.0. Self-hosters should review the extensive infra assumptions (Cloudflare Workers, Stripe, PostHog, R2).

What Is This?

Capgo is a full-stack platform for distributing 'instant' (over-the-air) JavaScript bundle updates to Capacitor-based iOS and Android apps. The repository contains the web console (Vue/Vite), a backend that runs on both Supabase Edge Functions (Deno) and Cloudflare Workers (via Hono), a publishing CLI (`@capgo/cli`), and several Capacitor plugin packages under `packages/`. It positions itself as an open-source alternative to Ionic Appflow.

The problem it addresses is the slow app-store review cycle for shipping JavaScript/HTML/CSS fixes to hybrid mobile apps. Capgo lets developers upload new bundles, assign them to channels (production, beta, QA), target specific devices, roll back broken releases, and ship delta updates with encryption/signing — all without waiting for App Store or Play Store approval.

Users are Capacitor/Ionic app developers and teams. They install the Capgo updater plugin in their app, use the CLI (`capgo bundle upload`, etc.) from CI or locally to publish bundles, and manage releases, channels, devices, and analytics through the web console at capgo.app or their own self-hosted deployment.

Architecturally, Supabase (Postgres + Edge Functions) is the reference/self-hostable backend and holds source-of-truth data, auth, and CRON/private endpoints. In Capgo's production cloud, ~99% of update-serving traffic is routed to Cloudflare Workers (multi-region: EU, NA, AS, JP, HK, SA, AF, OC, ME) for cost reasons, sharing core code with Supabase via a Hono adapter. Bundles are stored in S3-compatible object storage (R2). The frontend is a Vue 3 + Vite SPA that can also be packaged as a Capacitor app itself. Stripe handles billing, PostHog handles analytics, and there is extensive tooling (Playwright, Vitest, CodSpeed benches, oxlint, sqlfluff, Snyk, SonarCloud, deepsec).

Notable observations: this is a very large, actively developed monorepo (2300+ paths, 20MB+ of TypeScript, version 12.208.0, hundreds of npm scripts including many Stripe/admin backfill jobs and per-region deploys). Licensing is mixed — root is AGPL-3.0 (package.json also declares GPL-3.0), while the CLI is Apache-2.0 and plugins are AGPL-3.0-only. Includes `.gitsecret/` encrypted secrets and `.env.test` in the tree, which is standard but worth noting for self-hosters. No indication of malicious behavior; this is a legitimate commercial-open-source product.

Your Report, Tab by Tab
At a Glance
205Stars
131Forks
19Open Issues
August 2026Last Active
Web App + Backend + CLI (monorepo)TypeScriptAGPL-3.0 (mixed: CLI Apache-2.0)
Technology Stack
LanguagesTypeScript, Vue, PLpgSQL, JavaScript, Swift, Java, Shell
RuntimeNode.js 20+, Bun, Deno (Supabase Functions), Cloudflare Workers
FrameworkVue 3 + Vite (frontend), Hono (backend adapter), Capacitor 5–8
DatabasePostgreSQL via Supabase (with read replica tooling)
Package ManagerBun (bun.lock) with npm workspaces
Key Dependencies@capacitor/*, @supabase/supabase-js, Hono, Stripe, @formkit, @bradenmacdonald/s3-lite-client, PostHog, @capgo/capacitor-updater
Build ToolVite, tsc, ncc (CLI)
Test FrameworkVitest, Playwright, CodSpeed benches