xiaolai/antigravity-workspace-template · Archived

agent-repo-init

One-click initialization of a multi-agent repository from the Antigravity template.

First seen Jun 23, 2026

Installation

$ npx skills add xiaolai/antigravity-workspace-template --skill agent-repo-init

Summary

  • One-click initialization of a multi-agent repository from the Antigravity template.
  • Use this skill when users want to scaffold a new project quickly (`quick` mode) or with runtime defaults (`full` mode) including LLM provider profile, MCP toggle, swarm preference context, sandbox type, and optional git init.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents antigravity

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,536 B
  • docs SUMMARY.md 332 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Agent Repo Init

Initialize a new project from this repository template with two modes.

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.

Run via Script

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 \
  --llm-provider openai \
  --enable-mcp \
  --disable-swarm \
  --sandbox-runtime microsandbox \
  --init-git

Expected Output

  • New project at <destinationroot>/<projectname>
  • Clean copy without local runtime state
  • Initialization report at artifacts/logs/agentrepoinit_report.md
  • Script is self-contained and does not import project src/ modules

Notes

  • Keep destination outside the current template repository.
  • For full mode, review .context/agentruntimeprofile.md after generation.