Antigravity Cortex - Agentic Workflow Distribution. The central brain and standard library for Antigravity-powered agents.
npm install ag-cortexThe central "brain" and standard library for Antigravity-powered agents. This package distributes shared Skills, Workflows, and Rules that are injected into project workspaces to ensure consistent, high-quality engineering.
This package manages the .agent/ directory in your project using a Manifest-based Sync system.
* Skills (.agent/skills/): Capabilities the agent can pull in on demand (e.g., git-worktree, data-migration-expert).
* Workflows (.agent/workflows/): Step-by-step guides for specific tasks (e.g., /deploy, /plan).
* Rules (.agent/rules/): Persistent context and formatting rules (e.g., 00-constitution.md).
* Browser Agent: Includes agent-browser as a native dependency.
To add Antigravity Cortex to your project:
``bash1. Install the package (Dev Dependency recommended)
npm install -D ag-cortex
> [!NOTE]
> Linux Users: If you encounter errors about missing shared libraries, you likely need to install system dependencies. Run:
>
`bash
> sudo npx agent-browser install --with-deps
> `Usage
$3
When a new version of ag-cortex is released, update your local assets safely:`bash
1. Update the package
npm install -D ag-cortex@latest2. Sync the assets
This will update modified files and prune orphaned files (keeping your custom files safe).
npx ag-cortex update
`$3
Verify your installation and dependencies:`bash
npx ag-cortex doctor
``---
Forked from Compound Engineering Plugin.