From agent-skills
Scaffolds a multi-agent repository from the Antigravity template with quick or full mode, including LLM provider, MCP, swarm, sandbox, and git init options.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-skills: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 \
--llm-provider openai \
--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.npx claudepluginhub dangindev/antigravity-awesome-workspace-skillGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.