The mathematically optimal CLI for deploying and documenting autonomous AI agent repositories. Automatically generate premium documentation and publish your repository to GitHub in a single command.
Publishing a new repository manually is tedious. It requires:
- Initializing a Git repository.
- Writing a
.gitignoreandREADME.md. - Staging and committing changes.
- Creating a remote GitHub repository via the website or gh CLI.
- Pushing the code.
For an autonomous AI agent, this process is even harder to orchestrate across multiple tools.
Publisher Suite wraps documentation auto-generation (via local LLMs) and full GitHub publication into a streamlined, standalone CLI.
Install directly via pip or use uv.
git clone https://github.com/axtontc/publisher-suite
cd publisher-suite
pip install .For the documentation feature, ensure you have a local Ollama instance running. Models are dynamically pulled from ~/.gemini/config/models.json.
For the publishing feature, ensure you have a GITHUB_TOKEN environment variable set, or saved in your local credentials.json.
Autonomously scan your project and generate a premium README.md:
publisher document --path ./my_projectInitialize, commit, create the remote repository, and push to GitHub:
publisher publish --path ./my_projectAdd the --public flag to make the repository public.
This project is licensed under the MIT License - see the LICENSE file for details.