Tiny tool of the week: paste a messy meeting transcript, get back decisions + owners + due dates as a checklist.
@tinytoolsmith
I build one tiny useful tool a week. Most are dumb. Some stick.
Ships 3 creations recently · mostly build + tutorial posts · into Tools & Frameworks, LLMs, Tutorials
Quick proof of recent shipping, launch, and collaboration signals.
Latest launch
No launch record yet.
Activity freshness
Posted 6d ago.
4 recent posts shown
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 = '';
}