VOOZH about

URL: https://thenewstack.io/pairing-with-ai-a-senior-developers-journey-building-a-plugin/

⇱ Pairing With AI: A Senior Developer's Journey Building a Plugin - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2024-05-09 08:20:06
Pairing With AI: A Senior Developer's Journey Building a Plugin
Large Language Models / Software Development

Pairing With AI: A Senior Developer’s Journey Building a Plugin

James Ramirez shares his experience using ChatGPT to learn Go, navigate the Kolide API, and build a sophisticated Steampipe plugin.
May 9th, 2024 8:20am by Jon Udell
👁 Featued image for: Pairing With AI: A Senior Developer’s Journey Building a Plugin
Image via Unsplash+.

Although it’s always helpful to improve documentation for developers, many (myself included) prefer to dive in and learn while doing. That’s the seventh and arguably most important of my seven guiding principles for working with LLMs: Because you acquire knowledge in task-oriented teachable moments, learning isn’t prospective — it’s immediate and tangible.

When an experienced dev partners with an LLM, its machine intelligence supports and amplifies your human intelligence.

The benefits have been clear to me. Writing an ODBC plugin for Steampipe in the LLM era felt much easier than the experience I’d had writing plugins without such assistance. But that’s admittedly a subjective assessment, so I was on the lookout for an opportunity to compare notes with another plugin developer when James Ramirez showed up in our community Slack to announce a new plugin for the Kolide API. I invited him to tell me about his experience building it, and he graciously walked me through a long conversation with ChatGPT in which he familiarized himself with three buckets of technical knowledge that were all new to him: the Kolide API, the Go language, and the Steampipe plugin architecture.

As an additional challenge: although plugin developers usually find suitable Go SDKs for the APIs their plugins target, that wasn’t the case here. So it was necessary to create a Go wrapper for the Kolide API and then integrate that into the plugin.

Testing ChatGPT’s Go Ability

James began with a few warmup exercises. First, to test ChatGPT’s Go ability, he provided a pair of Go functions he’d written to call the related APIs /devices/ and /devices/ID, and asked for an idiomatic refactoring to isolate logic shared between them.

Next, he explored optional parameters to functions using simple variadic arguments versus the more complex functional options pattern and determined that the simple approach — using a slice of Search structs to encapsulate the field/operator/value style of Kolide’s query parameters — would suffice. He asked for a function to serialize that slice of Search structs to form a REST URL, then refined the version ChatGPT proposed to create a final serializeSearches that adds support for mapping friendly names to parameters and uses a string builder.

AI handles the nitpicking and often provides committable suggestions.

Several of these refinements, including the use of a string builder, were suggested by an AI-powered bot, CodeRabbit, which provided useful code review. It’s the kind of feedback that helps you and your team focus on the big picture, he says, because it handles the nitpicking and often (though not always) provides committable suggestions. It also takes a wider view to summarize pull requests and assess whether a closed PR addresses the objectives stated in its linked issue.

Mapping Operators

He went on to explore ways to map from Steampipe operators like QualOperatorEqual to Kolide operators like Equals. Here too the approach suggested by ChatGPT turned out to be a throwaway, enroute to a clean and simple approach. But as James confirmed in our interview, since you’re going to be iterating on throwaway versions anyway, it’s helpful to be able to generate plausible iterations rather than coding them by hand much more tediously. Along the way, he was picking up basic Go idioms.

James:
Is there a do-while loop in Go?

ChatGPT
No, but …

James:
Is there a ternary operator in Go?

ChatGPT
No, but …

James:
How do I append to a map[string]string?

ChatGPT
Like this …

The Visitor Pattern Enhanced With Reflection

After digesting the basics and developing a Go client for the Kolide API, James was ready to tackle the real work of plugin development: defining tables that map from Go types returned from an API wrapper to the Steampipe schemas that govern SQL queries against those tables.

Like all plugin developers, he started with one table that could list a set of resources, then enhanced it with filtering and pagination. After adding a second table, it was time to consider how to abstract common patterns and behaviors. The final result was an elegant implementation of the visitor pattern. Here are the Steampipe List functions that correspond to the tables kolide_device and kolide_issue.

And here is the common listAnything function used by all the plugin’s tables.

With this setup, adding a new table to the plugin is almost entirely declarative: you need only define the schema, along with the KeyColumns and associated operators that form the bridge between where (or join) clauses in SQL queries and API-level filters. Then you write a tiny List function that defines a visitor and passes it to the common listAnything function which encapsulates marshaling of query parameters, connecting to the API client, calling the API, unpacking the response into a collection, and iterating over the collection to stream items to Steampipe’s foreign data wrapper.

James used ChatGPT to jumpstart an idiomatic implementation of the visitor pattern in Go. This entailed learning how to define a type for the visitor function, and then declare a function to satisfy the type. Each table’s visitor encapsulates a call to the API client and returns an interface. It’s all fairly generic, but the visitor’s response was specific to the Go type of the wrapped API response, and that would have meant writing a distinct List function for each table. How to avoid that? James asked: “The field references on the res variable need to be of variable type, specified on execution time. Could you suggest an approach?”

ChatGPT’s suggestion, which he adopted, was to use reflection so that a call to listAnything, like listAnything(ctx, d, h, “kolide_device.listDevices”, visitor, “Devices”), could pass a name (“Devices”) which enables listAnything to access fields of the response struct in a type-agnostic way, for example, the Devices field here.

 type DeviceListResponse struct {
 Devices []Device `json:"data"`
 Pagination Pagination `json:"pagination"`
 }

With that, listAnything finally lived up to its name as a fully generic Steampipe List function. The solution uses reflection sparingly and retains Go’s strong type checking in both the API layer and the Steampipe layer.

What Did LLM Assistance Really Mean?

It most certainly did not mean that an LLM wrote a plugin that embodies sophisticated design patterns in response to a prompt like: “I need Steampipe plugin for the Kolide API, please create it.” What it has meant for me, and what it also meant for James, is something I find more interesting: “Let’s talk through the process of writing a plugin for the Kolide API.” It’s like talking to a rubber duck in order to think out loud about requirements and strategies. But an LLM is a rubber duck that talks back. Sometimes the responses are directly applicable, sometimes not, but either way, they can often help you gain clarity.

As a senior software engineer with broad experience, James could have figured it out — but it would have taken much longer.

“The conversation required me to be quite particular about what I was asking,” James said. Although he was starting from scratch with Go, he brought a wealth of experience that enabled him to rapidly orient and figure out which were the right questions to ask. As a senior software engineer with broad experience, James could have figured all this out on his own. But it would have taken much longer, and he’d have spent a lot of up-front time reading articles and documentation instead of learning by doing. And that time might not have been available! As I’ve now heard from many others, the acceleration provided by LLMs often makes the difference between having an idea and being able to execute it.

James also mentioned an open source angle I hadn’t considered. Pre-LLM, he wouldn’t have done this work in a completely public way. “I’d have kept it private until I felt more confident,” he says, “but this was out there from the start, and I was happy to have it out there.” That made it possible to engage with the Turbot team sooner rather than later.

This isn’t a story of automation, but rather of augmentation. When an experienced developer like James Ramirez partners with an LLM, its machine intelligence supports and amplifies his human intelligence. Both work together — not just to write code, but more importantly, to think through architecture and design.

TRENDING STORIES
Jon Udell is an author and software developer who explores software tools and technologies and explains them in writing, audio, and video. He is the author of the cult classic Practical Internet Groupware. Past gigs include Lotus, BYTE magazine, Safari...
Read more from Jon Udell
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.