Welcome to the ultimate starter kit for AI-assisted software development using the Antigravity architecture.
This repository bundles a highly customized set of AI Agent Skills and Model Context Protocol (MCP) server configurations designed to drastically improve large-scale project planning, architecture design, and codebase exploration.
-
Integrated
jCodeMunch(O(1) Codebase Retrieval) Instead of the AI agents reading thousands of lines of files blindly and chewing through tokens,jcodemunchuses tree-sitter AST indexation. The agents query exactly the symbols (functions/classes) they need, cutting token costs by up to 99%. -
Integrated
NotebookLMDeep Research Agents can query your private Google NotebookLM notebooks to synthesize vast amounts of architecture documents, PRDs, and domain knowledge before writing a single line of code. -
Curated OpenSpec Workflows Included are optimized
openspec-exploreandopenspec-apply-changeskills that natively trigger thejcodemunchindexer before proceeding. -
Massive Suite of Specialized Agents & Workflows Included in the
.agentfolder are dozens of specialized skills:- Architecture & Design:
expert-product-manager,architecture-c4-model,design-system-architect, Frontend/Backend Architects. - Quality & Testing:
elite-qa-architect,process-systematic-debugging,webapp-testing. - Code Engine:
openspec(Explore, Propose, Apply) for spec-driven development. - Research:
notebooklm-researcherfor massive context integration. - ...and many more tailored for complete software lifecycle management.
- Architecture & Design:
To turbocharge your next Antigravity project, navigate to your target project directory and simply run:
npx antigravity-awesome-skills- Checks for and installs
uv(the lightning-fast Python package installer). - Installs the
notebooklm-mcp-cliglobally. - Copies the
AGENTS.mdand the entire.agent/suite into your current working directory. - Bootstraps
CONTINUITY.mdso the OpenSpec 5-Gate process begins working out of the box. - Safely injects the MCP server definitions (for
notebooklm-mcpandjcodemunch) into your global~/.gemini/antigravity/mcp_config.json.
After running the script, you must authenticate the NotebookLM service:
nlm loginThis will open a Chrome browser profile. Log in to your Google account that has access to your NotebookLM instances. Close the browser, restart your Antigravity session, and you are ready to build!
This starter kit enforces a disciplined, 5-Gate Spec-Driven development cycle outlined in your AGENTS.md:
- GATE 1 — UNDERSTAND (Continuity + Memory + Research)
The agent checks
CONTINUITY.md, boots a session viaantigravity-memory, and usesjcodemunchto index and search your codebase (saving up to 99% tokens). - GATE 2 — ANALYZE (Risks & Impact) The agent structurally evaluates which architectural layers are affected and scores the risk before writing code.
- GATE 3 — PLAN (Spec-Driven via OpenSpec)
Using
/opsx:propose, the agent generates rigid change proposals, design docs, and atomic tasks to gain your approval. - GATE 4 — IMPLEMENT (RARV Loop)
Using
/opsx:apply, the agent surgically applies code usingjcodemunch(O(1) code retrieval) in small, testable chunks. - GATE 5 — VERIFY (Testing & Memory)
Tests are run, knowledge is stored permanently in the agent memory (
memory_save_note), and the cycle completes.
Need a highly specialized agent for a niche framework? Use the built-in Skill Creator Workflow:
- Just ask the agent: "Turn this workflow into a skill" or "Create a new skill for Next.js caching".
- The
elite-skill-architectis invoked automatically. - It drafts a structured
SKILL.mdmatching our strict YAML-frontmatter standard. - It natively saves the file into your
.agent/skills/directory and auto-registers the triggers globally insideAGENTS.md.
This starter kit stands on the shoulders of giants. Special thanks to the creators of the core MCP servers that make this workflow possible:
jacob-bd/notebooklm-mcp-cli: For reverse-engineering the CDP flow and bringing Google's NotebookLM natively into the Model Context Protocol.jgravelle/jcodemunch-mcp: For creating the ingenious O(1) AST-based codebase indexer that saves millions of tokens.
Build faster. Build smarter. Defy gravity.