by study8677
🪐 The ultimate starter kit for AI IDEs, Claude code,codex, and other agentic coding environments.
# Add to your Claude Code skills
git clone https://github.com/study8677/antigravity-workspace-templateProduction-grade starter kit for autonomous AI agents on Google Antigravity.
Language: English | 中文(仓库主页) | 中文文档 | Español
In a world full of AI IDEs, I want enterprise-grade architecture to be as simple as Clone → Rename → Prompt.
This project leverages IDE context awareness (via .cursorrules and .antigravity/rules.md) to pre-embed a complete cognitive architecture in the repo.
When you open this project, your IDE stops being just an editor—it becomes an industry-savvy architect.
First principles:
While building with Google Antigravity or Cursor, I found a pain point:
The IDE and models are powerful, but the empty project is too weak.
Every new project repeats the same boring setup:
No comments yet. Be the first to share your thoughts!
srcappThis repetition wastes creative energy. My ideal workflow is: after a git clone, the IDE already knows what to do.
So I built this project: Antigravity Workspace Template.
Linux / macOS:
# 1. Clone the template
git clone https://github.com/study8677/antigravity-workspace-template.git my-project
cd my-project
# 2. Run the installer
chmod +x install.sh
./install.sh
# 3. Configure your API keys
nano .env
# 4. Run the agent
source venv/bin/activate
python src/agent.py
Windows:
# 1. Clone the template
git clone https://github.com/study8677/antigravity-workspace-template.git my-project
cd my-project
# 2. Run the installer
install.bat
# 3. Configure your API keys (notepad .env)
# 4. Run the agent
python src/agent.py
# 1. Clone the template
git clone https://github.com/study8677/antigravity-workspace-template.git my-project
cd my-project
# 2. Create virtual environment
python3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# 3. Install dependencies
pip install -r requirements.txt
# 4. Configure your API keys
cp .env.example .env # (if available) or create .env manually
nano .env
# 5. Run the agent
python src/agent.py
That's it! The IDE auto-loads configuration via .cursorrules + `.antigravity/rules....