Marketing site for Officethree Technologies — AI-powered products for small businesses.
Live: http://o3labs.ai/
This is the public-facing marketing site for Officethree Technologies. The full product catalogue lives in sibling repos under the same GitHub org — this repo is the front door.
.
├── index.html # main landing page (~3.1k lines, single file)
├── 404.html # branded not-found page
├── privacy.html # privacy policy
├── terms.html # terms of service
├── sitemap.xml # SEO sitemap
├── robots.txt
└── CNAME # GitHub Pages → o3labs.ai
The site is intentionally a single static HTML file — no build
step, no JS framework, no CMS. Edit index.html, push, GitHub Pages
serves it.
Officethree's open-source product lineup, all under github.com/MukundaKatta:
| Repo | What it is |
|---|---|
| QueryForge | Natural language → SQL with zero LLM calls |
| PromptLab | A/B testing for prompts with real statistics |
| parvati | Tiny agentic workflow engine |
| plutus | Prediction-market analytics (Kelly, arb, Brier) |
| prithvi | Static security scanner for Dockerfiles |
| prajapati | Schema → HTML form / React component generator |
| rama | Plan→act→observe agent loop |
| rudra | Function-scoped chaos engineering |
| proppilot | AI property-management toolkit |
| prometheus | Deep research agent pipeline |
| parashurama | GitHub analytics dashboard |
| promptpack | Package manager for Claude Code skills |
| robotbrain | Foundation-model platform for robotic manipulation |
| Oradent | Open-source dental practice management |
| rnht | Rudra Narayana Hindu Temple platform |
# Local preview (any static server will do)
python3 -m http.server 8000
open http://localhost:8000
# Then push — GitHub Pages takes a minute to re-deploy.
git add index.html
git commit -m "tweak hero copy"
git pushSite copy is © Officethree Technologies. The product repos linked above are individually MIT-licensed — see each repo for its license file.