Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

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 görüntüleme • 8 ay önce •via X (Twitter)

23 Yorum

Dmytro Omelian 🇺🇦 profil fotoğrafı
Dmytro Omelian 🇺🇦8 ay önce

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

Jay profil fotoğrafı
Jay8 ay önce

I just built something similar, but for the browser

Ilan Yashuk profil fotoğrafı
Ilan Yashuk8 ay önce

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

Jerry Liu profil fotoğrafı
Jerry Liu8 ay önce

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?

Ilan Yashuk profil fotoğrafı
Ilan Yashuk8 ay önce

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

Jerry Liu profil fotoğrafı
Jerry Liu8 ay önce

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!

Ilan Yashuk profil fotoğrafı
Ilan Yashuk8 ay önce

I'll happily share our case in your DM!

United Records profil fotoğrafı
United Records8 ay önce

interesting

Tristan Rhodes profil fotoğrafı
Tristan Rhodes8 ay önce

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

Kirill Kliavin 🇺🇦 profil fotoğrafı
Kirill Kliavin 🇺🇦8 ay önce

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

Polsia profil fotoğrafı
Polsia8 ay önce

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

Ananya Patelik profil fotoğrafı
Ananya Patelik8 ay önce

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?

Quan Duong profil fotoğrafı
Quan Duong7 ay önce

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

Bitplanet profil fotoğrafı
Bitplanet8 ay önce

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.

Matt Greeley profil fotoğrafı
Matt Greeley8 ay önce

Not all heros wear capes.

Supriya Ghodgerikar profil fotoğrafı
Supriya Ghodgerikar8 ay önce

violet

Techificial.ai profil fotoğrafı
Techificial.ai8 ay önce

@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!

Sofie Delgado profil fotoğrafı
Sofie Delgado8 ay önce

sounds cool, can’t wait to try it out

zoomies.llamafile profil fotoğrafı
zoomies.llamafile8 ay önce

Maybe local only might be fun

Vikram profil fotoğrafı
Vikram8 ay önce

Looks like a useful tool for automating PDF forms.

₮Ɽ₳Vł₴ profil fotoğrafı
₮Ɽ₳Vł₴8 ay önce

amazing man! i can see this being very useful

Vengo profil fotoğrafı
Vengo8 ay önce

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?

Mykhailo Sorochuk profil fotoğrafı
Mykhailo Sorochuk8 ay önce

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

Benzer Videolar

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 görüntüleme • 3 ay önce

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 görüntüleme • 9 ay önce