Comment by igor47

Comment by igor47 2 days ago

4 replies

I made an LLM-assisted DnD character sheet tracker! It's up here:

https://www.csheet.net/

And the repo is here:

https://github.com/igor47/csheet

If you play DnD, I would love feedback! Feel free to leave it as GitHub issues or discussion.

If you don't play DnD, you might still find the repo interesting. It's hono on bun, I render jsx server side and client side is all htmx. I use vercel's ai toolkit for the LLM interactions, which are super fun and work really well. I think this is a great use for AI actually. I've structured the code so the same services can be called either by the user via forms and routes, or via LLM tool use, so for every action in the code you can do it via either LLM or "manually".

chickensong 2 days ago

The LLM usage is fun and interesting. What model are you using, and how much customization are you doing to integrate with the app and maintain character?

I suggest adding an export function to make the characters more portable. Maybe export to PDF as well as JSON.

nvdnadj92 2 days ago

Amazing! I was planning on making a tool just like this, will take yours for a spin!