Skip to content
@relentlessworks

relentlessworks

relentlessworks

Agentic-first services for AI agents. The agent IS the interface.

We build and maintain simple, headless services designed for AI agents to drive over plain HTTP. No UI, no SDK — the API is the product.

Follow Progress

Follow along with builds, updates, and new projects on the ChatBotKit Hub — Coder blueprint.

Philosophy

Every service we build follows these core principles:

Principle What it means
Agent is the interface No UI, no SDK. The AI agent (ChatGPT, Claude, Cursor, etc.) is the user. The API is the product.
Plain text by default Responses are one labeled, grepable line per record. Token-cheap and survives context truncation. JSON available on demand.
Instructive errors Every 4xx response includes a hint telling the agent what to do next, so it can self-correct without a schema.
Self-documenting GET /help (or /.well-known/agent.md) returns a one-page operating manual the agent loads at runtime.
Simple auth OTP via email → long-lived bearer token. No complex OAuth flows for the basic case.
Single static binary Go + SQLite (pure-Go, CGO_ENABLED=0), 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, 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 (e.g. contact_k7m2q) that's token-cheap and easy to reference.

Projects

Project Description Status
LinkSmith Agentic-first link shortener Active

More projects coming soon.

Tech Stack

  • Language: Go
  • Database: SQLite (pure-Go modernc.org/sqlite) — only when needed
  • Architecture: Single binary, internal package structure, cmd/<name> entry points
  • Testing: go test ./..., go vet ./...
  • Build: Makefile-based (make build, make test, make vet)

Inspired By

This approach is inspired by crmkit — the idea that services should be designed for agents first, not humans.


Built by relentlessworks — agentic-first, always.

Popular repositories Loading

  1. linksmith linksmith Public

    Agentic-first link shortener service. Plain text API, agent-driven, single Go binary with JSON file storage.

    Go 1

  2. taskpilot taskpilot Public

    Agentic-first task management service. Plain text API, agent-driven, single Go binary with JSON file storage.

    Go 1

  3. notable notable Public

    Agentic-first notes and knowledge base service. Plain text API, agent-driven, single Go binary with JSON file storage.

    Go 1

  4. .github .github Public

    Organization profile and shared configuration for relentlessworks

  5. hookrelay hookrelay Public

    Agentic-first webhook relay and inspection service. Plain text API, agent-driven, single Go binary with JSON file storage.

Repositories

Showing 5 of 5 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…