<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: andes314</title><link>https://news.ycombinator.com/user?id=andes314</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 18 Jun 2026 09:57:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=andes314" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[LLM-Native Advertising (What Ads in GenAI Will Look Like)]]></title><description><![CDATA[
<p>Article URL: <a href="https://adgpt.rlafuente.com/">https://adgpt.rlafuente.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47492594">https://news.ycombinator.com/item?id=47492594</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 23 Mar 2026 17:35:05 +0000</pubDate><link>https://adgpt.rlafuente.com/</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47492594</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47492594</guid></item><item><title><![CDATA[New comment by andes314 in "AdGPT"]]></title><description><![CDATA[
<p>To whoever messaged “what is Manchester United” and got an airline ad, come on, that’s pretty cool right? I’d really love some discussion on this as I have not yet seen ads in GenAI apps and wanted to experience them.</p>
]]></description><pubDate>Mon, 23 Mar 2026 05:26:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=47485775</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47485775</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47485775</guid></item><item><title><![CDATA[AdGPT]]></title><description><![CDATA[
<p>Article URL: <a href="https://adgpt.rlafuente.com/">https://adgpt.rlafuente.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47485490">https://news.ycombinator.com/item?id=47485490</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 23 Mar 2026 04:26:54 +0000</pubDate><link>https://adgpt.rlafuente.com/</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47485490</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47485490</guid></item><item><title><![CDATA[Show HN: ClawJetty: Agent Pages for Production AI]]></title><description><![CDATA[
<p>Article URL: <a href="https://clawjetty.com/#####">https://clawjetty.com/#####</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47470218">https://news.ycombinator.com/item?id=47470218</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 21 Mar 2026 19:09:05 +0000</pubDate><link>https://clawjetty.com/#####</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47470218</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47470218</guid></item><item><title><![CDATA[CJ: Let your Agents send you Updates]]></title><description><![CDATA[
<p>Article URL: <a href="https://clawjetty.com/####">https://clawjetty.com/####</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47434707">https://news.ycombinator.com/item?id=47434707</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 19 Mar 2026 03:52:15 +0000</pubDate><link>https://clawjetty.com/####</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47434707</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47434707</guid></item><item><title><![CDATA[New comment by andes314 in "Give Your AI Agent a Live Status Page"]]></title><description><![CDATA[
<p>skills.md:<p># ClawJetty Skills<p>ClawJetty lets you create a live public progress page for a task.<p>## Goal<p>Before starting work, create a run and return its public URL to the user.
As you work, post short progress updates.
When finished, post a final event marking the run complete or failed.<p>## Base URL<p><a href="https://clawjetty.com" rel="nofollow">https://clawjetty.com</a><p>## API<p>### 1) Create a run<p>POST /api/runs<p>Request body:<p>```json
{
  "title": "Researching CRM tools"
}
```<p>Response body:<p>```json
{
  "id": "run_abc123",
  "viewer_url": "<a href="https://clawjetty.com/t/run_abc123" rel="nofollow">https://clawjetty.com/t/run_abc123</a>",
  "status": "active"
}
```<p>Create the run before doing the task. Return viewer_url to the user immediately.<p>### 2) Post an event<p>POST /api/runs/{id}/events<p>Request body:<p>```json
{
  "kind": "update",
  "message": "Comparing 5 tools by price and features"
}
```<p>Allowed event kinds:<p>- update
- complete
- fail<p>Example complete event:<p>```json
{
  "kind": "complete",
  "message": "Finished. Sent final recommendation to user."
}
```<p>Example fail event:<p>```json
{
  "kind": "fail",
  "message": "Failed due to missing access to the source system."
}
```<p>## Usage rules<p>- Create the run before starting the task.
- Return the viewer_url to the user immediately.
- Post short updates after meaningful steps.
- Keep updates short and plain.
- Do not flood the run with tiny updates.
- Do not include secrets, passwords, API keys, or raw private data.
- End every run with either complete or fail.<p>## Good update examples<p>- Reading the uploaded PDF
- Summarizing the findings
- Drafting the email reply
- Blocked waiting on missing invoice number<p>## Bad update examples<p>- Thinking
- Working
- Doing stuff
- Long dumps of raw content</p>
]]></description><pubDate>Fri, 13 Mar 2026 04:41:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=47360755</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47360755</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47360755</guid></item><item><title><![CDATA[New comment by andes314 in "Give Your AI Agent a Live Status Page"]]></title><description><![CDATA[
<p>A quick tool to give your AI agent a live status page. I made this after being frustrated with the lack of visibility in tools like OpenClaw. Open to feedback.</p>
]]></description><pubDate>Fri, 13 Mar 2026 03:49:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47360478</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47360478</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47360478</guid></item><item><title><![CDATA[Give Your AI Agent a Live Status Page]]></title><description><![CDATA[
<p>Article URL: <a href="https://clawjetty.com/###">https://clawjetty.com/###</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47360477">https://news.ycombinator.com/item?id=47360477</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Fri, 13 Mar 2026 03:49:28 +0000</pubDate><link>https://clawjetty.com/###</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47360477</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47360477</guid></item><item><title><![CDATA[Show HN: ClawJetty: See what your AI Agent is Doing]]></title><description><![CDATA[
<p>I built a small tool called ClawJetty. It gives an AI agent a public progress page for any task. It has worked wonders on OpenClaw, Claude Code, Codex.<p>The idea is simple: before starting work, the agent creates a run, returns a public link to the user, and then posts short progress updates as it works. The user can watch a live timeline instead of waiting in the dark for a long task to finish.<p>The product is intentionally minimal. There are no accounts, no setup flow, and no dashboard. The homepage just gives you a prompt to paste into your agent. The agent reads the instructions, creates a run, and starts updating it. The public page shows the title, status, timestamps, and event timeline.<p>The main use case is making agent workflows legible to users. If an agent is researching vendors, debugging a system, reviewing documents, or drafting something large, it can expose a live status page without building a whole product around “agent transparency.”<p>It was also useful to dogfood while building. I used the product itself to track debugging and deployment work on the app, which helped clarify what kinds of updates are actually useful versus noisy.<p>Would be interested in feedback on the product framing and whether this should stay extremely narrow or grow into something more general for agent task visibility.<p><a href="https://clawjetty.com" rel="nofollow">https://clawjetty.com</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47347062">https://news.ycombinator.com/item?id=47347062</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 12 Mar 2026 06:06:16 +0000</pubDate><link>https://clawjetty.com/#</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47347062</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47347062</guid></item><item><title><![CDATA[New comment by andes314 in "My Dev Box Setup Script"]]></title><description><![CDATA[
<p>Good call, worth adding!</p>
]]></description><pubDate>Wed, 11 Mar 2026 21:27:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47342208</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47342208</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47342208</guid></item><item><title><![CDATA[My Dev Box Setup Script]]></title><description><![CDATA[
<p>Article URL: <a href="https://rlafuente.com/posts/2026-3-7-my-dev-box-setup-script">https://rlafuente.com/posts/2026-3-7-my-dev-box-setup-script</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47292844">https://news.ycombinator.com/item?id=47292844</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Sun, 08 Mar 2026 00:08:27 +0000</pubDate><link>https://rlafuente.com/posts/2026-3-7-my-dev-box-setup-script</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47292844</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47292844</guid></item><item><title><![CDATA[I Lost $150 in 20 Minutes Market-Making on Kalshi]]></title><description><![CDATA[
<p>Article URL: <a href="https://rlafuente.com/posts/2025-3-5-i-lost-150-market-making-on-kalshi">https://rlafuente.com/posts/2025-3-5-i-lost-150-market-making-on-kalshi</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47257978">https://news.ycombinator.com/item?id=47257978</a></p>
<p>Points: 4</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 05 Mar 2026 05:46:53 +0000</pubDate><link>https://rlafuente.com/posts/2025-3-5-i-lost-150-market-making-on-kalshi</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47257978</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47257978</guid></item><item><title><![CDATA[New comment by andes314 in "ClawJetty: Plug-In Personal OpenClaw Box"]]></title><description><![CDATA[
<p>I’m building ClawJetty: a small, always-on mini PC that runs a personal OpenClaw instance with minimal setup (pair from an app, connect your chat channel, done). The point is to make “self-host your agent” feel like setting up a router, not a weekend project.<p>Pricing is two tiers and two purchase options:<p>Plus: $149/mo with a 12-month commitment (box included) or $449 upfront + $119/mo<p>Pro: $269/mo with a 12-month commitment (box included) or $449 upfront + $219/mo<p>Plans include managed updates + rollback, safe defaults (no exposed inbound ports), and address collection at checkout for fulfillment. AI usage is bundled with included allowance; overages/top-ups will come later.<p>Looking for feedback from people who’ve self-hosted agents (or tried): what parts of setup/ops were the biggest pain, and what would you demand from an “agent appliance” to trust it?</p>
]]></description><pubDate>Thu, 19 Feb 2026 03:38:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=47069604</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47069604</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47069604</guid></item><item><title><![CDATA[ClawJetty: Plug-In Personal OpenClaw Box]]></title><description><![CDATA[
<p>Article URL: <a href="https://clawjetty.com/">https://clawjetty.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47069603">https://news.ycombinator.com/item?id=47069603</a></p>
<p>Points: 2</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 19 Feb 2026 03:38:36 +0000</pubDate><link>https://clawjetty.com/</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=47069603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47069603</guid></item><item><title><![CDATA[God, Theology, and AI]]></title><description><![CDATA[
<p>Article URL: <a href="https://rlafuente.com/posts/2026-2-1-on-god-and-machine-learning#">https://rlafuente.com/posts/2026-2-1-on-god-and-machine-learning#</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46954709">https://news.ycombinator.com/item?id=46954709</a></p>
<p>Points: 5</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 10 Feb 2026 02:45:54 +0000</pubDate><link>https://rlafuente.com/posts/2026-2-1-on-god-and-machine-learning#</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=46954709</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46954709</guid></item><item><title><![CDATA[New comment by andes314 in "Attention at Constant Cost per Token via Symmetry-Aware Taylor Approximation"]]></title><description><![CDATA[
<p>Linear time attention doesn’t work, by principle. Dead end pursuit. Much great research on more efficient quadratic time inference</p>
]]></description><pubDate>Wed, 04 Feb 2026 15:56:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=46887391</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=46887391</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46887391</guid></item><item><title><![CDATA[On God and Machine Learning]]></title><description><![CDATA[
<p>Article URL: <a href="https://rlafuente.com/posts/2026-2-1-on-god-and-machine-learning">https://rlafuente.com/posts/2026-2-1-on-god-and-machine-learning</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46852076">https://news.ycombinator.com/item?id=46852076</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 02 Feb 2026 03:25:53 +0000</pubDate><link>https://rlafuente.com/posts/2026-2-1-on-god-and-machine-learning</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=46852076</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46852076</guid></item><item><title><![CDATA[New comment by andes314 in "Ask HN: Freelancer? Seeking freelancer? (September 2025)"]]></title><description><![CDATA[
<p>SEEKING WORK, Boston, MA (open to relocation), Remote Welcome.<p><a href="https://rlafuente.com" rel="nofollow">https://rlafuente.com</a><p>ML Engineer with experience in high visibility DARPA and DAF projects. I charge $200/hour for time spent in an interview process.</p>
]]></description><pubDate>Wed, 03 Sep 2025 00:35:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=45110931</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=45110931</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45110931</guid></item><item><title><![CDATA[New comment by andes314 in "Hire Me: ML Engineer"]]></title><description><![CDATA[
<p>Putting my profile on here for anyone who is looking for an ML Engineer. I have worked on AI/ML development on highly visible DARPA and DAF programs. I generally charge $200/hour for time spent interviewing.</p>
]]></description><pubDate>Tue, 02 Sep 2025 21:36:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=45109390</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=45109390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45109390</guid></item><item><title><![CDATA[Hire Me: ML Engineer]]></title><description><![CDATA[
<p>Article URL: <a href="https://rlafuente.com/">https://rlafuente.com/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45109389">https://news.ycombinator.com/item?id=45109389</a></p>
<p>Points: 1</p>
<p># Comments: 2</p>
]]></description><pubDate>Tue, 02 Sep 2025 21:36:36 +0000</pubDate><link>https://rlafuente.com/</link><dc:creator>andes314</dc:creator><comments>https://news.ycombinator.com/item?id=45109389</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45109389</guid></item></channel></rss>