And I do have a basic UI at https://workglow.dev/ (where you can run the workflow, though if you use AI models, the models will run in the browser -- if you want to run GGUF models, please signup for the desktop app waitlist).
Ask HN: What Are You Working On? (April 2026)
301–310 of 1001 posts
Re: Ask HN: What Are You Working On? (April 2026)
#302I got addicted to scrolling content on my phone, so I built a digital pet whose growth and well-being depends on you staying off your phone! This way, if I spend all night scrolling the browser, my pet will get depression. Unlike similar apps such as Focus Friend or Forest, which use active timers to police screen time, my app is an inversion that works like an idle game; All screen time is tracked all day, (with dou…
Re: Ask HN: What Are You Working On? (April 2026)
#303DailySelfTrack is a customizable combination of habit tracker, health journal and diary.
It should be as powerful as a spreadsheet for self-tracking, but the daily usability should be more on par with a habit tracker app.
For example my use-case would be:
- Journaling in a way that fits into what I need. (Gratitude, bullet point jounal)
- Analysing my health and understand how things might relate to each other. (State of multiple health issues)
- Support for moving closer towards achieving my goals. (Daily focus sessions, no-phone mornings, learning Korean)
Re: Ask HN: What Are You Working On? (April 2026)
#304Re: Ask HN: What Are You Working On? (April 2026)
#305It's been a great excuse to get back to my roots as an engineer and lean into some of the newnew with Claude Code. Learning a ton, having a blast, and also enabling being (marginally) more productive with my actual work day to day.
Re: Ask HN: What Are You Working On? (April 2026)
#306Re: Ask HN: What Are You Working On? (April 2026)
#307Re: Ask HN: What Are You Working On? (April 2026)
#308Re: Ask HN: What Are You Working On? (April 2026)
#309Over the past few weeks, I have been building an AI coding tool in Go. The core loop is straightforward: accept a natural-language instruction, let the LLM interpret intent, then execute coding work through tools such as file read/write, code search, and terminal commands.
As of now, I haven't come across any agent coding tools written in Go, but I have always thought that Go is an excellent language and is very suitable for building any CLI tools.
Currently, I have added harness constraints to the agent by exposing hooks and implementing monitoring during the agent's working lifecycle. I think this will enable a clear division of responsibilities between the agent and the harness. The agent is the smallest execution core, while the harness acts as the execution agent for the agent and imposes constraints on its behavior.