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:

  1. The agent IS the interface — No UI, no SDK. The AI agent is the user. The API is the product.
  2. Plain text by default — One labeled, grepable line per record. Token-cheap. JSON on demand.
  3. Instructive errors — Every 4xx response includes a hint telling the agent what to do next.
  4. Self-documentingGET /help returns a one-page operating manual the agent loads at runtime.
  5. Simple auth — OTP via email → long-lived bearer token. No complex OAuth flows.
  6. Single static binary — Go + SQLite, zero external dependencies. Deploys as one file.
  7. Zero config defaults — Runs out of the box. Config layered: defaults < file < env < flags.
  8. Multi-tenant ready — Workspaces, plans, limits, and audit logs built in from the start.
  9. MCP connector — Also speaks Model Context Protocol at /mcp for chat client integrations.
  10. Short stable handles — Every record is addressed by a short workspace-scoped handle.

Tech Stack

Development

npm install
npm run dev

The site runs at http://localhost:3000.

Build

npm run 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