Oxtools is the official community hub for open-source tools built on the Oxlo.ai API. If you've built something with Oxlo — an agent, a workflow, a utility — this is the right place to share it.
Oxlo.ai is a developer-first AI inference platform. It gives engineers access to large language models at meaningfully lower compute costs than mainstream alternatives.
Every project in this repo is an independent, runnable tool submitted by a developer in the Oxlo community. Projects are organized under the projects/ directory and are expected to work out of the box using Docker.
Common project types include:
- Agents & Assistants — tools that use LLMs to handle tasks autonomously
- Data pipelines — PDF parsers, document extractors, summarizers
- Developer utilities — API wrappers, boilerplates, middleware
Oxtools/
├── .github/ # PR templates and repo governance
├── assets/ # Logos and banners
├── docs/ # API references and additional documentation
├── projects/ # All community-submitted tools live here
│ ├── template-project/ # Start here — copy this for your submission
│ │ ├── src/
│ │ ├── Dockerfile
│ │ ├── docker-compose.yml
│ │ ├── oxlo-manifest.json
│ │ ├── .env.example
│ │ └── README.md
│ └── [your-project-name]/
└── CONTRIBUTING.md # Rules, structure requirements, and PR process
- Read
CONTRIBUTING.md— it covers the rules, required files, and the PR process. - Copy
projects/template-project/into a new folder underprojects/. - Build your tool. Fill in the
oxlo-manifest.jsonand write your ownREADME.md. - Open a Pull Request against
main.
There are no language or framework restrictions. Python, Node.js, Go, Rust — anything works, as long as it runs inside Docker and uses the Oxlo API.
| Requirement | Details |
|---|---|
| Location | Your project must live in projects/[your-project-name]/ |
| Docker | Must include a working Dockerfile and docker-compose.yml |
| Manifest | Must include oxlo-manifest.json |
| Secrets | No hardcoded API keys — use .env.example |
| Docs | Must include a README.md with local setup instructions |

