anyone pairing n8n with a coding agent for the dev side of their workflows
I use n8n for almost everything operational at this point. webhooks, scheduled jobs, data moving from one place to another, the usual. it has become the backbone.
the part that still sucks is when a workflow needs custom code. a small transformer, a weird API that does not have a clean node, a parser for some messy CSV a client sends. I used to write all that by hand inside the code node which is fine but slow.
lately I have been writing those code snippets in zencoder and pasting them into the code node. having an agent that actually understands the shape of the data and writes the function in one go has cut the friction by a lot. n8n handles the orchestration, the agent handles the small custom logic, and the two together feel like the real workflow.
curious what other people are doing for the code parts of their n8n setups. are you writing it by hand, using an AI inside the editor, or doing something smarter that I am missing.