Rune Kaagaard

Results 40 comments of Rune Kaagaard

Yes the functions i had to change to make it work for claude can be found here: https://github.com/runekaagaard/chatgpt-shell-plus-claude/blob/main/claude-shell.el, the main ones being: - claude-shell--extract-claude-response - claude-shell-async-shell-command

I really feel human oversight is essential to be able to work effectively and safely with MCP servers. I think claude desktop solves it perfectly with "allow once" and "allow...

It's still broken in formio.js 5.0.2 unfortunately and it's a super annoying error. We are still maintaing our own readonly rendering module because of this bug.

Hi, thx a lot for testing! Sry, my memory was a bit hazy. I've confirmed with my colleague that we have only seen the error in Radio Components, where the...

Thank you so much for trying. I've reproduced the problem here: https://jsfiddle.net/67j1w52r/21/ Removing `renderMode: "html"` shows the readOnly output correctly. The form is a wizard btw. that might be important...

Yeah, that makes the text appear correctly, nice find! The bug then seems to be in the builder that does not respect the "Storage Type" when creating the form.

Even though it might seem trivial from the perspective we are currently viewing it, it seems like a very foundational data structure of your entire project. Changing it to the...

This hack fixes `renderMode: "html"`: ``` formio = formio || {} formio.fixRenderModeHtmlDataformat = function(form, root = true) { // https://github.com/formio/formio.js/issues/3947 if (root) { form = JSON.parse(JSON.stringify(form)) } if (form.input ===...

Hi @Tomislav-Zoricic. To enable "normal" http routes with channels, you only need to have this in asgi.py: ``` django_asgi_app = get_asgi_application() application = ProtocolTypeRouter({ # All the normal urls defined...

Yes, this is the command I'm running: ``` remotinator --uuid "$TERMINATOR_UUID" set_tab_title -t "SOME TITLE" ``` The process (Claude Code) is running inside the tab I want to change, but...