agent-repo-init
4
总安装量
1
周安装量
#47771
全站排名
安装命令
npx skills add https://github.com/study8677/antigravity-workspace-template --skill agent-repo-init
Agent 安装分布
antigravity
1
Skill 文档
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:quickplus runtime profile setup (.env, mission, context profile, init report) and optionalgit 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 \
--enable-docker \
--init-git
Expected Output
- New project at
<destination_root>/<project_name> - Clean copy without local runtime state
- Initialization report at
artifacts/logs/agent_repo_init_report.md - Script is self-contained and does not import project
src/modules
Notes
- Keep destination outside the current template repository.
- For
fullmode, review.context/agent_runtime_profile.mdafter generation.