Installation
Prerequisites
Section titled “Prerequisites”Before installing ACT, make sure you have:
- Claude Code CLI and/or OpenCode CLI — the AI coding assistant that ACT extends
- Git — for version control and worktree support
- Flutter SDK — for Flutter/Dart projects (install guide)
- Node.js — required for ACT hooks
Install
Section titled “Install”1. Clone the toolkit
Section titled “1. Clone the toolkit”git clone https://github.com/CodeWithAndreaPro/agentic-coding-toolkit ~/.agentic-coding-toolkitThis clones ACT to ~/.agentic-coding-toolkit in your home directory.
2. Run the installer
Section titled “2. Run the installer”For Claude Code
Section titled “For Claude Code”cd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool claudeFor OpenCode
Section titled “For OpenCode”cd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool opencodeIf you use both CLIs, run both commands.
3. Verify
Section titled “3. Verify”Start a new Claude Code or OpenCode session and run:
/act:helpYou should see the ACT command navigator listing all available commands.
What gets installed
Section titled “What gets installed”The installer creates symlinks from the toolkit to your CLI’s config directory:
| CLI | Symlink location | Includes |
|---|---|---|
| Claude Code | ~/.claude/ | commands, agents, skills, and hooks |
| OpenCode | ~/.config/opencode/ | commands, skills, and hooks plugin |
ACT installs automation hooks for your CLI:
- 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”Within a Claude or OpenCode session:
/act:updateThis pulls the latest changes and shows you what’s new in the changelog.
2. Refresh symlinks
Section titled “2. Refresh symlinks”After updating, re-run the installer to refresh symlinks:
cd ~/.agentic-coding-toolkit && ./scripts/install.sh --tool claude(Or --tool opencode if using OpenCode.)
3. Restart your CLI session
Section titled “3. Restart your CLI session”Restart Claude Code or OpenCode to pick up the changes, then verify with /act:help.
Uninstalling
Section titled “Uninstalling”Claude Code
Section titled “Claude Code”cd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool claudeOpenCode
Section titled “OpenCode”cd ~/.agentic-coding-toolkit && ./scripts/uninstall.sh --tool opencodeThis removes all symlinks and hooks. The toolkit directory at ~/.agentic-coding-toolkit is not deleted — remove it manually if you no longer need it.