Installation

Hướng dẫn cài đặt đầy đủ môi trường phát triển: AI Agents (Antigravity, Gemini CLI, Claude Code), công cụ index (FastCode CLI), DevOps (Git, GitHub CLI, Vercel CLI) và Gmind CLI qua 8 bước.

1. Cài đặt Antigravity AgentSystem

Cài đặt core Agent của Google DeepMind. Tải tại: https://antigravity.google/download

bash
$brew install google-deepmind/tap/antigravity
==> Downloading from antigravity.google/download ...
🍺 antigravity installed!
$export GEMINI_API_KEY="aizaSy..."

2. Cài đặt FastCode CLISystem

Go-native Codebase Intelligence Engine — Index AST, hybrid search & graph modeling. GitHub: https://github.com/duyhunghd6/fastcode-cli

bash
$git clone https://github.com/duyhunghd6/fastcode-cli.git
$cd fastcode-cli && go build -o fastcode ./cmd/fastcode
FastCode built successfully.
$sudo mv fastcode /usr/local/bin/
fastcode ready at /usr/local/bin/fastcode

3. Cài đặt Gemini CLISystem

AI Agent mã nguồn mở đưa sức mạnh Gemini vào terminal. GitHub: https://github.com/google-gemini/gemini-cli

bash
$brew install gemini-cli
gemini-cli installed.
# Hoặc cài qua npm:
$npm install -g @google/gemini-cli

4. Cài đặt Claude CodeSystem

Agentic coding tool từ Anthropic — đọc codebase, sửa file, chạy lệnh trực tiếp trong terminal. Docs: https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview

bash
$brew install --cask claude-code
🍺 claude-code installed!
# Hoặc cài qua script:
$curl -fsSL https://claude.ai/install.sh | bash

5. Cài đặt GitSystem

Hệ thống quản lý phiên bản phân tán — nền tảng bắt buộc cho mọi dự án phần mềm.

bash
$brew install git
git installed.
$git config --global user.name "Your Name"
$git config --global user.email "you@example.com"

6. Cài đặt GitHub CLISystem

Đưa toàn bộ GitHub workflow vào terminal — quản lý PR, Issues, Repos từ dòng lệnh. Website: https://cli.github.com

bash
$brew install gh
gh installed.
$gh auth login
? What account do you want to log into? GitHub.com

7. Cài đặt Vercel CLISystem

Deploy, preview và quản lý dự án Vercel từ terminal. Docs: https://vercel.com/docs/cli

bash
$npm i -g vercel
vercel installed.
$vercel login
Vercel CLI — Log in to Vercel

8. Khởi tạo Gmind ProjectUser

Cài đặt CLI quản trị GSAFe và khởi tạo Workspace.

bash
$npm i -g @gmind/cli
$gmind init my-agent-workspace
✨ GSAFe project initialized successfully.