Quick Start
JiuwenSwarm supports connecting to the ACP client in VS Code. Pre-installation Preparation
- Environment Dependencies:
- Complete the installation of JiuwenSwarm
- Configure the model in the web UI: Settings → Configuration → Model Configuration
Note: Users may complete installation and configuration based on their actual needs using the following methods.
VS Code ACP Client Setup (Source Code)
For users who cloned the repository.
- Install the ACP Client extension from the marketplace. Search for
formulahendry.acp-clientand install it.

- In the extension, click the
+button (ACP: Add Agent Configuration).

- For
Name, enter:jiuwenswarm. - For
Command:- Windows: enter the absolute path to
<repo>/scripts/run_gateway_acp.cmd - Linux / macOS: enter the absolute path to
<repo>/scripts/run_gateway_acp.sh
- Windows: enter the absolute path to
- Leave
Config / Argumentsempty. - Start the main process in the terminal first:
python -m jiuwenswarm.app - Connect to
jiuwenswarmin the extension, then chat in the window.
Note: The scripts use the
.venvunder the project root by default.
VS Code ACP Client Setup (pip install / Wheel)
For users who installed JiuwenSwarm via pip install jiuwenswarm.
- Install the ACP Client extension from the marketplace. Search for
formulahendry.acp-clientand install it. - In the extension, click the
+button (ACP: Add Agent Configuration). - For
Name, enter:jiuwenswarm. - For
Command, enter:jiuwenswarm-acp - Leave
Config / Argumentsempty. - Start the main process in the terminal first:
python -m jiuwenswarm.app - Connect to
jiuwenswarmin the extension, then chat in the window.
Note:
jiuwenswarm-acpis a command-line entry point auto-generated by pip install, just likejiuwenswarm-initandjiuwenswarm-start. Make sure VS Code is running in the same virtual environment where jiuwenswarm is installed. If not, provide the full path instead, e.g.C:\path\to\venv\Scripts\jiuwenswarm-acp.exeon Windows, or/path/to/venv/bin/jiuwenswarm-acpon Linux/macOS.