Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

I built a form-filling agent that anyone can use 💫 This is an extremely simple but useful (I hope) app. Upload a fillable form 📋, some context files, and chat with the agent to fill the form out automatically ✍️ 1️⃣ Yes it is a Claude Code SDK wrapper...

48,466 Aufrufe • vor 8 Monaten •via X (Twitter)

23 Kommentare

Profilbild von Dmytro Omelian 🇺🇦
Dmytro Omelian 🇺🇦vor 8 Monaten

forms are such an underrated pain point curious what you found hardest: mapping model outputs to fields or handling weird edge cases in the pdf structure either way this feels like one of those "small" tools that quietly saves hours

Profilbild von Jay
Jayvor 8 Monaten

I just built something similar, but for the browser

Profilbild von Ilan Yashuk
Ilan Yashukvor 8 Monaten

Does it work for pdfs that have no AcroForm fields? Can it detect inputs then?

Profilbild von Jerry Liu
Jerry Liuvor 8 Monaten

nope, this is just for those with acroform fields there's some deeper tech we're looking into to address forms in general. though most modern net new forms these days should have acroform right?

Profilbild von Ilan Yashuk
Ilan Yashukvor 8 Monaten

Tbh our company deals with hundreds of non acroform pdfs. I guess it depends on the use case, on where those pdfs come from

Profilbild von Jerry Liu
Jerry Liuvor 8 Monaten

really good to know, thanks for sharing. out of curiosity 1) what is the use case, 2) what types of docs? would love to take a look!

Profilbild von Ilan Yashuk
Ilan Yashukvor 8 Monaten

I'll happily share our case in your DM!

Profilbild von United Records
United Recordsvor 8 Monaten

interesting

Profilbild von Tristan Rhodes
Tristan Rhodesvor 8 Monaten

Looks very useful! I’m building an app with an interview format to fill the fields.

Profilbild von Kirill Kliavin 🇺🇦
Kirill Kliavin 🇺🇦vor 8 Monaten

Very cool. Curious, what was your motivation to use chat UX for this particular task?

Profilbild von Polsia
Polsiavor 8 Monaten

Form filling is 90% of enterprise work. You just automated the boring parts.

Profilbild von Ananya Patelik
Ananya Patelikvor 8 Monaten

love this! feels like giving your forms a personal assistant who actually *likes* paperwork. curious—what’s the wildest form you’ve tested it on?

Profilbild von Quan Duong
Quan Duongvor 7 Monaten

Checkout QNavix Odyssey. It does not just form-filling but many more.

Profilbild von Bitplanet
Bitplanetvor 8 Monaten

Parsing first and then constraining generation to form fields is the right move - most errors in these agents come from sloppy document understanding, not reasoning.

Profilbild von Matt Greeley
Matt Greeleyvor 8 Monaten

Not all heros wear capes.

Profilbild von Supriya Ghodgerikar
Supriya Ghodgerikarvor 8 Monaten

violet

Profilbild von Techificial.ai
Techificial.aivor 8 Monaten

@jerryjliu0, That's impressive! Automating form filling can save so much time. I'd love to learn more about the features and how it works. Great job!

Profilbild von Sofie Delgado
Sofie Delgadovor 8 Monaten

sounds cool, can’t wait to try it out

Profilbild von zoomies.llamafile
zoomies.llamafilevor 8 Monaten

Maybe local only might be fun

Profilbild von Vikram
Vikramvor 8 Monaten

Looks like a useful tool for automating PDF forms.

Profilbild von ₮Ɽ₳Vł₴
₮Ɽ₳Vł₴vor 8 Monaten

amazing man! i can see this being very useful

Profilbild von Vengo
Vengovor 8 Monaten

The combination of parsing plus an agent is the interesting part here. Trust in how the context is read is what makes automation usable in the real world. How are you measuring accuracy across different input types?

Profilbild von Mykhailo Sorochuk
Mykhailo Sorochukvor 8 Monaten

Nice work. This kind of tool saves hours. What edge cases are the toughest?

Ähnliche Videos

THIS GUY BUILT AN AUTONOMOUS AI AGENT OUT OF CLAUDE CODE + OBSIDIAN and this is way more interesting than another “use AI to take notes” demo the trick is simple: Obsidian is not the writing app here. it becomes the agent’s memory, task board, and context folder. Claude Code is not just answering prompts. it reads the vault, edits files, follows instructions, and keeps moving through the work like a junior operator with a filesystem. the reusable setup looks like this: 1. create an Obsidian vault for one project 2. keep goals, rules, tasks, decisions, and references as markdown files 3. point Claude Code at the folder 4. give it a clear operating loop: read context → choose next task → execute → write back what changed 5. use the notes as persistent memory instead of re-explaining the project every chat that’s the part people miss. the “agent” is not magic. it’s the boring combination of: - local files - explicit rules - task state - write access - a model that can run through the repo/vault Obsidian makes the memory human-readable. Claude Code makes the memory executable. that combo is why the video worked: it turns a notes app into an operating surface for actual work. best use cases: - content systems - research vaults - coding projects - client ops docs - personal knowledge bases that need actions, not just storage the caveat: if your vault is messy, your agent becomes messy too. folders, naming, “done” criteria, and forbidden actions matter more than the prompt. but once the structure is clean, this is one of the easiest ways to build an agent that remembers what happened yesterday without paying for a full custom app.

kocer

30,403 Aufrufe • vor 3 Monaten

Bash is all you need! Which is why I'm introducing my holiday project: just-bash just-bash is a pretty complete implementation of bash in TypeScript designed to be used as a bash tool by AI agents. Because it turns out agents love exploring data via shell scripts, even beyond coding. It comes with grep, sed, awk and the 99th percentile features that an agent like Claude Code or Cursor would use. In fact, Claude Code can use it for secure bash execution. In the package - A bash-tool for AI SDK - A binary for use by yourself or your coding agents - An overlay filesystem to feed files to your agent securely - A Vercel Sandbox compatible API, so you can quickly upgrade to a real VM if you need to run binaries - An example AI agent that explores the just-bash code base using just-bash - I imported the Oils shell bash compatibility suite and just-bash passes a very good chunk What is interesting about this codebase: It was essentially entirely written by Opus 4.5. Coding agents love bash and they are good at reproducing it. They are also great at text-book recursive descent parsers and AST tweet-walk interpreters. That said, it is, like, a lot of code and I didn't read it all 😅. This is very much a hack, but it also seems to be _really_ useful. I haven't really found anything agents want to use that it doesn't support and it's fast and secure (caveats apply). It doesn't have write access to your computer and the filesystem is given a root that the agent cannot escape from. Find it at Related: Our recent blog post how we migrated our data analysis agent to bash tools and achieved incredible quality improvements The video shows the example agent investigating the just-bash code base

Malte Ubl

125,326 Aufrufe • vor 9 Monaten