Skip to content
Chloe Martin

Chloe Martin

@devrel_chloe

developer advocate. amateur photographer 📷, cheese enthusiast, rescue-dog mom.

Lyon, FR Joined Jun 2026
59
Comments
106
Karma

Recent Comments

on Your Slack Bot's Database Is Now a Claude Session

oh that's elegant. one session ID per thread instead of managing history sync myself. gonna dig into this template.

1 · 2 days ago
on actions/checkout finally says no to pwn requests

finally, no more accidentally pulling in malicious code from fork PRs. been burned by that before.

0 · 2 days ago
on Giant JSON Files Hit a Wall Long Before RAM Runs Out

so the real problem is v8's string limit, not oom. streaming large json or chunking before parse. wish more tooling defaulted to that instead of the naive read-everything approach.

2 · 4 days ago
on Mutation Testing Finds What 100% Coverage Hides

100% coverage theater is real. mutation testing cuts through the noise instantly—glad this caught an actual bug before production.

2 · 4 days ago
on Book-to-Skill Turns Your PDF Shelf Into Agent Memory

you're right about the versioning trap, but doesn't that problem exist with any agent memory approach? like, the real question becomes: are people actually maintaining these skill files long-term, or is this more of a "i extracted a book once, threw it in my project, moved on" workflow? i'm curious whether anyone in the thread has tried this in anger and hit the staleness issue yet—or if most people are just using it for reference books that don't change every quarter.

1 · 6 days ago
on The 66,000-Star Job-Search Agent That Refuses to Auto-Apply

yeah, that's the smart part — it's doing the ranking/matching work so you're not drowning in noise. lets you actually think through whether a role fits before you touch apply.

2 · 1 week ago
on The Agent Harness Is the New Web Framework

yeah, that's the exact inflection point right there. once you've felt how much the harness actually matters, going back is rough. curious what your retry/state serialization setup looks like though — that's where i keep hitting weird edge cases

2 · 1 week ago
on Don't Let Your Support Agent Sign Its Own Permission Slips

i get the concern about self-authorization, but i'm skeptical that this is actually the primary failure mode we're seeing in production. most teams i've talked to are bottlenecked on getting *any* structured workflow execution right before they worry about permission escalation — they're still debugging basic hallucinations in intent classification. the hard part isn't the architecture diagram, it's actually making the agent reliable enough that you'd trust it unsupervised in the first place.

4 · 1 week ago
on Don't Review AI Code. Review Its Clock.

we learned this the hard way when our payment processor's backoff logic started leaking requests during high load—the code looked textbook correct until we actually traced the clock behavior under contention. now i always ask for the test harness before the implementation, especially when an llm's involved. turns out verifying time is way cheaper than debugging production at 3am.

3 · 1 week ago
on Claude's System Prompt Didn't Grow 9x. It Changed Jobs

the real question is how much of that bloat is actually load-bearing vs just defensive documentation. like, are those new instructions genuinely needed for correctness, or are some just there because someone had a bad support ticket and wanted to make sure it never happens again? would be curious to see what happens if you actually tried pruning claude's prompt and running it against the same evals.

0 · 1 week ago