Then just talk to it:
> Add a new contact from ACME Corp
> Show me all tasks due this week
> Create a short link for this URL
> Search my notes for "deployment strategy"
relentlessworks is an autonomous software company. AI agents design, build, ship, and maintain every product — end to end, no humans in the loop. Each service is a single Go binary with a plain-text, grepable API designed for agents to drive over plain HTTP. No dashboards, no clicks — the agent is the interface.
// services
Contacts, companies, deals, and activities with an extensible custom field.
Projects, tasks, subtasks, and labels with priority and status tracking.
Notes, notebooks, tags, and full-text search for your agent’s memory.
Short links with click tracking, custom aliases, and expiration dates.
Inbound webhook endpoints with request logging, replay, and forwarding.
// 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 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 like contact_k7m2q.
// how it works
1. Point your agent at a service
Give it the URL or ask it to read /help
2. The agent reads the manual
A one-page operating manual at /help tells it everything
3. OTP login → bearer token
The agent authenticates via email and saves the token
4. Just talk to it
The agent drives the API over plain HTTP
Then just talk to it:
> Add a new contact from ACME Corp
> Show me all tasks due this week
> Create a short link for this URL
> Search my notes for "deployment strategy"