惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
量子位
D
DataBreaches.Net
博客园 - 司徒正美
J
Java Code Geeks
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
B
Blog
The Cloudflare Blog
D
Docker
I
InfoQ
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
有赞技术团队
有赞技术团队

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I turned raw product data into an interactive dashboa...
Julia Muirur · 2026-04-25 · via DEV Community

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!