Install the latest release from mzbac/ds4-agent:
curl -fsSL https://raw.githubusercontent.com/mzbac/ds4-agent/main/install.sh | shThe installer downloads the release asset ds4-flash-agent.zip, installs the
command wrapper to $HOME/.local/bin/ds4-flash-agent, and installs the real
binary beside it as ds4-flash-agent-bin. The wrapper uses this default model
location unless --model or DS4_FLASH_AGENT_MODEL is provided:
$HOME/.ds4-flash-agent/model/DeepSeek-V4-Flash-Q4KExperts-F16HC-F16Compressor-F16Indexer-Q8Attn-Q8Shared-Q8Out-chat-v2-imatrix.ggufInstall without downloading a model:
curl -fsSL https://raw.githubusercontent.com/mzbac/ds4-agent/main/install.sh \
| sh -s -- --no-modelTo let the installer fetch the GGUF, provide either an exact URL or a Hugging Face repository that contains the default model file:
./install.sh --model-url "https://example.com/model.gguf" --download-model
./install.sh --hf-repo OWNER/MODEL-REPO --download-modelUninstall the command, app data, model directory, and project-local
.ds4-flash-agent data:
curl -fsSL https://raw.githubusercontent.com/mzbac/ds4-agent/main/uninstall.sh | shKeep large model files while removing the command:
./uninstall.sh --keep-models --keep-data