The following steps are required to install the Claude-Autopilot extension in VS Code:
- Installation of Claude Code: Download and install Claude Code from the Anthropic website and make sure your account is subscribed to Anthropic's Pro or Max plan. In the terminal run
claude
command to log in to the account. - Cloning Project Warehouse: Run it in the terminal
git clone https://github.com/benbasha/Claude-Autopilot.git
Enter the project directorycd Claude-Autopilot
The - Installation of dependencies: Run
npm install
Install project dependencies. - Compiling TypeScript Code: Run
npm run compile
Compile (optional: can be run in development mode)npm run watch
(debugging enabled). - Packaging Extension: Run
vsce package
Generate VSIX files. - Installation of extensions: Select "Install from VSIX" in the extension panel of VS Code and select the generated VSIX file to complete the installation.
- Configuration extensions: Search for "Claude Autopilot" in VS Code's Settings, and adjust the queue processing speed and other configuration options according to your needs.
This answer comes from the articleClaude-Autopilot: VS Code Extension for Automated Management of Claude Code TasksThe