From antigravity
Scaffolds a multi-agent repository from the Antigravity template in quick or full mode, with optional MCP, swarm, sandbox, and git init.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity:agent-repo-initThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialize a new project from this repository template with two modes.
Initialize a new project from this repository template with two modes.
quick: Fast scaffold with clean copy and minimal setup.full: quick plus runtime profile setup (.env, mission, context profile, init report) and optional git init.Use the portable script in this skill directory:
python skills/agent-repo-init/scripts/init_project.py \
--project-name my-agent \
--destination-root /absolute/path \
--mode quick
Full mode example:
python skills/agent-repo-init/scripts/init_project.py \
--project-name my-agent \
--destination-root /absolute/path \
--mode full \
--enable-mcp \
--disable-swarm \
--sandbox-runtime microsandbox \
--init-git
<destination_root>/<project_name>artifacts/logs/agent_repo_init_report.mdsrc/ modulesfull mode, review .context/agent_runtime_profile.md after generation./ag-setup in the generated project to choose and write the LLM endpoint.npx claudepluginhub study8677/antigravity-workspace-template --plugin antigravityBootstraps agent-team in repositories or migrates legacy project states via `agent-team init` and `agent-team migrate`. Useful for repo onboarding and upgrades.
Scaffolds a long-running agent harness with context docs, AGENTS.md, style guides, session hooks, drift detection, and setup reports. Use when a project needs Maestro-owned project setup.
Bootstraps AgentOps project files — creates GOALS.md, PRODUCT.md, and .agents/ directory structure. Detects repo state and fills gaps idempotently.