Comprehensive guide to Antigravity Manager architecture, workflows, and development. Use this to understand how to work on the project.
55
61%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.agent/skills/project_overview/SKILL.mdAntigravity Manager is a hybrid Desktop Application built with Electron, React, and NestJS. It follows a modular architecture where the frontend (Renderer) communicates with the backend (Main) via type-safe IPC (ORPC).
graph TD
User[User Interface] -->|React/Vite| Renderer[Renderer Process]
Renderer -->|ORPC Client| IPC[IPC Layer]
IPC -->|ORPC Router| Main[Main Process]
Main -->|Bootstraps| Server[NestJS Server]
Main -->|Calls| Services[Service Layer]
Services -->|Read/Write| DB[(SQLite Database)]
Services -->|HTTP| Cloud[Cloud APIs (Google/Anthropic)]src/main.ts: Electron Main Process entry point.src/preload.ts: Bridge between Main and Renderer.src/renderer.tsx: React App entry point.src/components/: Reusable React UI components (Radix UI based).src/ipc/: IPC Routers and Handlers (Domain logic).
router.ts: Main ORPC router definition.account/, cloud/, database/: Domain-specific handlers.src/server/: NestJS application modules (proxies/gateways).src/services/: Core business logic (framework agnostic).
GoogleAPIService.ts: Gemini/Cloud interactions.AutoSwitchService.ts: Account rotation logic.src/routes/: Frontend routing definitions (File-based).package-lock.json)npm startnpm run lintnpm run test:unitnpm run test:e2enpm run makeThe project uses orpc for type-safe communication.
src/ipc/router.ts with Zod schemas.src/ipc/account/handler.ts).Data is stored in a local SQLite file.
Better-SQLite3 for direct access.src/services or src/ipc.GoogleAPIService handles token exchange and refreshing.AutoSwitchService monitors usage and switches active accounts automatically.src/components/ui (Radix primitives) for consistency.de8d68d
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.