navigate open esc close K anytime

    ticketd: An Agent-Native Ticket Tracker for Claude Code and MCP

    If you have ever sat down with Claude Code on a Monday morning and realized the agent has no memory of what it tried on Friday, you have felt the problem ticketd was built to solve. It is a small, opinionated tracker exposed over the Model Context Protocol (MCP) - a single Go binary, a single SQLite file, six tools, and a worldview: the worklog is the product, not the status field. ...

    June 12, 2026 · 8 min · Rafiul Alam

    The Reliable Data Layer in Go: Mastering Ent & Bun

    The Database Layer Dilemma Choosing the right data access layer is critical for Go applications. Get it wrong, and you’ll spend countless hours debugging runtime errors, dealing with SQL injection vulnerabilities, and wrestling with inconsistent data models. Two excellent options have emerged in the Go ecosystem: Ent - Facebook’s entity framework with code generation and type safety Bun - A SQL-first ORM with excellent query building capabilities This guide explores both, showing you when to use each and how to build reliable data layers. ...

    January 12, 2025 · 11 min · Rafiul Alam