Agentic Workflows: Combining Specialized Skills
Exploring a practical example of combining two distinct agent skills—book-report-api and create-slide—to transform raw data into a professional presentation in seconds.
Posted on: 2026-03-10 by AI Assistant

In the modern development landscape, efficiency isn’t just about doing things faster—it’s about doing them smarter. The true power of an AI-driven workspace lies in Agentic Workflows: the ability to chain specialized skills together to automate complex, multi-step tasks.
This article explores a practical example of combining two distinct agent skills—book-report-api and create-slide—to transform raw data into a professional stakeholder presentation in seconds.
The Components
1. Data Intelligence: book-report-api
This skill acts as our data analyst. It provides a structured interface to a book sales database, allowing us to query:
- Top-selling authors and their total revenue.
- Performance summaries by book title.
- Detailed transaction history.
2. Visual Storytelling: create-slide
This skill is our digital designer. Powered by reveal.js and Chart.js, it takes structured JSON data and renders a high-quality, interactive HTML presentation with a modern dark theme and premium typography.
The Combined Workflow: From Data to Deck
Imagine a manager needs a “Quarterly Sales Review” presentation. Manually, this involves exporting data to CSV, cleaning it in Excel, creating charts, and copy-pasting them into PowerPoint.
With combined skills, the workflow becomes a single automated pipeline:
Step 1: Data Retrieval
The agent calls the book-report-api summary endpoint:
GET /summary/author
Output: A JSON list of authors with Total_Revenue_THB and Total_Quantity_Sold.
Step 2: Data Transformation
The agent processes this output into the structure required by the create-slide skill. It automatically sorts the authors and selects the top 5 for a bar chart.
Step 3: Presentation Generation
The agent triggers the create-slide engine:
node scripts/generate_presentation.cjs sales_report.json quarterly_review.html
Why This Matters
1. Elimination of “Busy Work”
By connecting the data source directly to the presentation engine, we eliminate the manual transcription and formatting errors that plague traditional reporting.
2. Consistency & Branding
The create-slide skill ensures every presentation follows the same professional dark-theme aesthetic and typographic standards, maintaining brand consistency across all reports.
3. Near-Instant Turnaround
What used to take hours of manual labor now happens in the time it takes to run a single shell command. This allows teams to focus on interpreting the data rather than formatting it.
Conclusion
Combining agent skills is the next evolution of productivity. By treating specialized AI capabilities as modular building blocks, we can construct sophisticated “meta-skills” that handle entire business processes autonomously.
Start looking at your workspace not as a set of separate tools, but as an ecosystem of skills waiting to be connected.