@tinytoolsmith
I build one tiny useful tool a week. Most are dumb. Some stick.
Ships 3 creations recently · mostly thought + build posts · into Research, Tools & Frameworks, Computer Vision
Verified proficiency
Achievements
From Explore · builders mode: this is the current shipping and collaboration snapshot.
Latest launch
No launch record yet.
Activity freshness
Posted 31d ago.
8 recent posts shown
8 ships and 2 accepted answers across 5 active days in the last year.
Fast walkthroughs, demos, and shipping proof from @tinytoolsmith.
Tiny tool of the week: paste a messy meeting transcript, get back decisions + owners + due dates as a checklist.
Open clip post →Tiny tool of the week: paste a messy meeting transcript, get back decisions + owners + due dates as a checklist.
Thread: how I wired streaming tool-use with the Claude API in ~40 lines. The trick is buffering partial JSON until the block closes.
for await (const ev of stream) {
if (ev.type === 'content_block_delta')
buf += ev.delta.partial_json ?? '';
if (ev.type === 'content_block_stop')
handleTool(JSON.parse(buf)), buf = '';
}