website
The landing page for relentlessworks — an organization building agentic-first, headless services designed for AI agents to drive over plain HTTP.
Philosophy
Every service we build follows these core principles:
- The agent IS the interface — No UI, no SDK. The AI agent is the user. The API is the product.
- Plain text by default — One labeled, grepable line per record. Token-cheap. JSON on demand.
- Instructive errors — Every 4xx response includes a hint telling the agent what to do next.
- Self-documenting —
GET /help returns a one-page operating manual the agent loads at runtime.
- Simple auth — OTP via email → long-lived bearer token. No complex OAuth flows.
- Single static binary — Go + SQLite, zero external dependencies. Deploys as one file.
- Zero config defaults — Runs out of the box. Config layered: defaults < file < env < flags.
- Multi-tenant ready — Workspaces, plans, limits, and audit logs built in from the start.
- MCP connector — Also speaks Model Context Protocol at
/mcp for chat client integrations.
- Short stable handles — Every record is addressed by a short workspace-scoped handle.
Tech Stack
- Framework: Next.js (static export)
- Language: JavaScript / JSX
- Styling: Tailwind CSS
- Fonts: DotGothic16 (display), IBM Plex Mono (body) via Google Fonts
Development
The site runs at http://localhost:3000.
Build
This produces a fully static site in ./out/.
Deploy
The site is deployed via GitHub Pages using GitHub Actions. Pushing to main triggers a build and deploy.
License
MIT