Technology Apr 24, 2026 · 4 min read

How I turned raw product data into an interactive dashboard with GitHub Copilot CLI

Every Thursday, GitHub hosts a livestream - Rubber Duck Thursdays across multiple time slots, where we go over what's new in the world of GitHub, engage in community discussions and live QnA and build awesome projects together! This week, we dove into the GitHub Copilot CLI showcasing /research, /s...

DE
DEV Community
by Julia Muiruri
How I turned raw product data into an interactive dashboard with GitHub Copilot CLI

Every Thursday, GitHub hosts a livestream - Rubber Duck Thursdays across multiple time slots, where we go over what's new in the world of GitHub, engage in community discussions and live QnA and build awesome projects together!

This week, we dove into the GitHub Copilot CLI showcasing /research, /share, /plan, /fleet, /env for a scenario I think you'll find interesting.

What did we build?

Let's set the scene.

Teams notification

You work at Zava and are going about with your uneventful day, when an urgent request drops in your inbox, for you to prepare an interactive inventory & sales intelligence dashboard for an upcoming business review with key stakeholders.

It will take the BI team at least 3 weeks to build the dashboards, and no - you don't have 3 weeks. The review is in 3 days!

All you have is a messy JSON export from your inventory system sitting on your computer. So we had Copilot shape our raw data, design and build an interactive Electron dashboard ready for presentation.

Dashboard mockup titled Zava Hardware – Product Catalog Overview, displaying executive metrics, an inventory-by-category chart, and an at a glance summary of stock and categories.

How did we build it?

Messy JSON file. Dirty data. Zero clue about the data and data structure.

Can you convert the data in @ into a spreadsheet. Use different sheets and add visualizations to help understand the business

Step 1: We asked Copilot to convert the product_data.json into an excel spreadsheet to familiarize ourselves with the business information.

Good. We now have an excel file with clean data - grouped in different sheets, and this forms the foundation of what comes next.

Zava product excel spreadsheet

Step 2: Before diving straight into writing the code, wouldn't it be nice to work on quick designs, get those approved and then start development? I mean - a mistake in the design stage would be cheaper, both time-wise and token-wise, compared to re-implementing functionality down the line, right?

I've heard good reviews of Pencil, an agent-driven MCP canvas for 'vibe-designing', but was yet to give it a try.

The tool is fairly new, so we pointed Copilot to its documentation to conduct deep research and basically know all there is to know about the tool, what it is and how it works. We used /research to initiate the research session.

/research know all there is to know about https://docs.pencil.dev/

We got back a comprehensive report on Pencil, which we saved in our working directory using /share file research research.md, and reset our context for the next step.

Step 3: We have the clean product data in excel and research findings on Pencil. Now we needed to create an implementation plan to capture both the Design and Development phases. For that, we switched over to /plan mode, pointing to both the xlsx and research.md, to generate a plan.

I want to build an interactive dashboard for [📈 zava_product_dashboard.xlsx] and start with complete end-to-end designs     <br>
first using @research.md

Plan is ready. We save the plan in plan.md in our working directory and reset the context again with /new.

Step 4: It's design time!

Start with the designs only by one, and save all page screenshots in #designs

I had already installed the Pencil MCP server, so Copilot at this point had access to all the tools it needed to interact with the Pencil canvas. We saw our designs start to pop up on canvas in real time, and the agent captured screenshots for each page and added them into our working directory as instructed.

Zava Dashboard designs on pencil

Step 5: Designs were coming in hot! We got to the last part - building the app.

Few words about using /fleet orchestration @houeseokay

A question about the /fleet command was asked on the Livestream, so we incorporated it into our workflow.

While one agent was wrapping up on our designs on Pencil, we kicked off a fleet job where copilot orchestrated 2 agents running in parallel: One to review our designs as they came in, and one to start on the Electron app.

/fleet prompt

... And shortly after the livestream, this is what we got with GPT-5.4.

Now, the stakeholder Business Review can be moved earlier in the week - and we will be READY!

Watch the livestream for the full workflow.

Just getting started with the GitHub Copilot CLI? Check out the GitHub Copilot for Beginners Course for quickstarts and more tips!

DE
Source

This article was originally published by DEV Community and written by Julia Muiruri.

Read original article on DEV Community
Back to Discover

Reading List