Installation
Prerequisites
Section titled “Prerequisites”Before installing ACT, make sure you have:
- One supported AI client — Antigravity, Claude Code, Codex CLI, Cursor, GitHub Copilot CLI, or OpenCode
- Git — for version control and worktree support
- Flutter SDK — for Flutter/Dart projects (install guide)
- Node.js — required for ACT runtime helpers and hook integrations
Install
Section titled “Install”1. Clone the toolkit
Section titled “1. Clone the toolkit”git clone https://github.com/CodeWithAndreaPro/agentic-coding-toolkit-lite ~/.agentic-coding-toolkitgit clone https://github.com/CodeWithAndreaPro/agentic-coding-toolkit ~/.agentic-coding-toolkitThis clones ACT to ~/.agentic-coding-toolkit in your home directory.
On Windows with WSL, ~ refers to your WSL home directory, which is the recommended setup.
2. Run the installer
Section titled “2. Run the installer”Run the command for your AI client:
cd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool antigravitycd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool claudecd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool codexcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool cursorcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool copilotcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool opencodeHow to use a separate Claude Code config directory
Use either supported custom directory option:
# Separate Claude Code configcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool claude --config-dir ~/.claude-work
# Claude Code's CLAUDE_CONFIG_DIR environment variableCLAUDE_CONFIG_DIR=~/.claude-work ./scripts/install.sh --tool claudeClaude config precedence is --config-dir first, then CLAUDE_CONFIG_DIR, then ~/.claude.
See Claude Code’s Environment Variables docs for more info about CLAUDE_CONFIG_DIR.
If you use multiple clients, run each install command you need.
3. Verify
Section titled “3. Verify”Start a new session from the same environment where you installed ACT, then use the check that matches your client:
- Antigravity: start
agy, run/skills, and confirm ACT skills appear - Claude Code: run
/act-help - Codex: open
/skillsor mention$act-helpwhere supported - Cursor: you can also restart or reload Cursor, open Agent chat, and type
/act- - GitHub Copilot CLI: run
/act-help, open/skills, or use/agentto select a research agent - OpenCode: run
/act-help, or open/skillsand confirm theact-*skills are present
/act-helpOn clients that support slash commands, /act-help should show the ACT help navigator listing available skills and agents. In Codex and GitHub Copilot CLI, act-help is installed as a generated skill.
For Antigravity, /skills is the primary verification. You can also inspect ~/.gemini/skills if you need to confirm the install location.
If you’re deciding between clients, see Platform Support.
Optional: Install Official Dart and Flutter Skills
ACT focuses on workflow, planning, verification, and Flutter-specific agent patterns. The official Dart and Flutter team skills are maintained separately by the Dart and Flutter teams, and can be installed alongside ACT.
They are not bundled with ACT, but ACT includes a helper that shows the upstream install, update, and uninstall commands:
node ~/.config/agentic-coding-toolkit/bin/act-run-script.js scripts/install-official-dart-flutter-skills.shThis will show commands such as:
npx skills add flutter/skills --skill '*'npx skills add dart-lang/skills --skill '*'Use this if you want both ACT’s workflow-oriented skills and the official upstream Dart/Flutter skills available in the same AI coding client.
Learn more here:
What gets installed
Section titled “What gets installed”The installer creates symlinks, plugin links, or generated files from the toolkit into your client’s config location:
| CLI | Install location | Includes |
|---|---|---|
| Antigravity | ~/.gemini/skills/ | skills |
| Claude Code | ~/.claude/, or the resolved Claude config directory | skills, agents, and hooks |
| Codex | ~/.codex/skills/, ~/.codex/agents/, and ~/.codex/hooks/ | generated skills, generated agents, and supported hooks |
| Cursor | ~/.cursor/plugins/local/agentic-coding-toolkit | skills, agents |
| GitHub Copilot CLI | ~/.copilot/skills/, ~/.copilot/agents/, and ~/.copilot/hooks/ | generated skills, generated agents, and supported hooks |
| OpenCode | ~/.config/opencode/ | skills, agents, and hooks plugin |
ACT installs automation hooks for supported clients:
- Session logging — tracks prompts and tool usage for debugging
- Dart auto-format — automatically formats
.dartfiles after edits - ACT statusline — shows context window usage (Claude Code only)
Updating
Section titled “Updating”1. Pull the latest version
Section titled “1. Pull the latest version”On clients that support ACT skills, run:
/act-updateThis pulls the latest changes and shows you what’s new in the changelog.
Alternatively, update ACT manually from the command line:
cd ~/.agentic-coding-toolkit && git pull --ff-only2. Refresh integrations
Section titled “2. Refresh integrations”After updating, re-run the installer to refresh symlinks, generated files, and plugin links:
cd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool antigravitycd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool claudecd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool codexcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool cursorcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool copilotcd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool opencodeCodex and GitHub Copilot CLI skill bodies are generated copies. Restart Codex if /skills or $act-* wording still looks stale after reinstalling. In Copilot, run /skills reload or restart Copilot if /skills still looks stale.
If you installed ACT into a custom Claude config, rerun the installer with the same target:
cd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool claude --config-dir ~/.claude-workOr use the same CLAUDE_CONFIG_DIR value you used originally.
3. Restart your client session
Section titled “3. Restart your client session”Restart or reload your client to pick up the changes.
- Run
/act-helpto verify the install - In Codex, open
/skillsor mention$act-helpwhere supported - On Cursor, you can also open Agent chat and type
/act-to confirm the availableact-*skills - In GitHub Copilot CLI, run
/act-help, open/skills, or run/skills reloadafter reinstalling
Uninstalling
Section titled “Uninstalling”Run the command for your AI client:
cd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool antigravitycd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool claudecd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool codexcd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool cursorcd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool copilotcd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool opencodeRemove ACT from a separate Claude Code config directory
Use the same custom directory option you used during installation:
# Separate Claude Code configcd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool claude --config-dir ~/.claude-work
# Claude Code's CLAUDE_CONFIG_DIR environment variableCLAUDE_CONFIG_DIR=~/.claude-work ./scripts/uninstall.sh --tool claudeThis removes the ACT-managed links or local plugin for the selected client. The toolkit directory at ~/.agentic-coding-toolkit is not deleted — remove it manually if you no longer need it.