Install Doxloop globally before following the first-run tutorial. After installation, run every workflow with the doxloop command.
Prerequisites
Doxloop requires Node.js 20.12.0 or newer. Check your version:
node --versionDoxloop needs at least one of these on your PATH to start create, update, or review automatically:
--print instead, which prints the prepared prompt for you to paste in manually. See Create documentation.Install the CLI
Install Doxloop globally with npm:
npm install --global @doxbrix/doxloopVerify the install:
doxloop --version0.1.0.Optional: install an external generator package
Doxbrix is Doxloop's default documentation generator and ships built into the core package — no extra install needed. If you want to generate documentation for a different static-site generator instead, install the core package and that generator's package together in your documentation project:
mkdir my-docs
cd my-docs
npm init --yes
npm install --save-dev @doxbrix/doxloop @doxbrix/doxloop-generator-mkdocsReplace @doxbrix/doxloop-generator-mkdocs with the package for your chosen generator. See Choose a generator for the full list and what each one requires.
Next step
Continue to Create your first docs.