Generate Course Description Quality Workflow Infographic
Claude Code v2.0.36 Sonnet 4.5 · Claude Pro
use the infographic-generator-p5 to create a new infographic from the following description:
Course Description Quality Impact on Workflow Type: workflow
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | |
⎿ ⧉ Selected 39 lines from docs/chapters/03-course-design-educational-theory/index.md in Visual Studio Code
⏺ I'll use the infographic-generator-p5 skill to create this workflow diagram showing how course description quality impacts the entire textbook development process. ⎿ Error: Unknown skill: infographic-generator-p5
⏺ Let me check if the skill exists in the directory:
⏺ Read(skills/infographic-generator-p5/SKILL.md) ⎿ Error reading file
⏺ Bash(ls -la skills/infographic-generator-p5/)
⎿ total 0
drwxr-xr-x 3 dan staff 96 Nov 9 12:45 .
drwxr-xr-x 22 dan staff 704 Nov 9 12:53 ..
drwxr-xr-x 5 dan staff 160 Nov 9 12:56 infograph-generator-p5
⏺ Bash(find skills/infographic-generator-p5/ -type f) ⎿ skills/infographic-generator-p5/infograph-generator-p5/references/vis-network-parame ters.md skills/infographic-generator-p5/infograph-generator-p5/SKILL.md … +4 lines (ctrl+o to expand)
⏺ Let me read the skill definition:
⏺ Read(skills/infographic-generator-p5/infograph-generator-p5/SKILL.md) ⎿ Read 582 lines
⏺ I found the infographic-generator-p5 skill! This will create a p5.js-based interactive flowchart showing how course description quality impacts the textbook development workflow. Let me create this for you.
⏺ Now I'll create the infographic. First, let me plan the node structure:
- Start node (gray): "Course Description Created"
- Decision node (blue, diamond): "Quality Score ≥ 70?"
- High Quality Path (green): Learning graph → Glossary → Chapter structure → High-quality textbook
- Low Quality Path (orange): Learning graph → Manual correction → Regenerate artifacts → Extended development time
⏺ Bash(mkdir -p docs/sims/course-quality-workflow) ⎿ (No content)
⏺ Write(docs/sims/course-quality-workflow/data.json)
⎿ Wrote 201 lines to docs/sims/course-quality-workflow/data.json
{
"metadata": {
"title": "Course Description Quality Impact on Workflow",
"description": "An interactive infographic showing how course description
quality affects subsequent skill outputs in the intelligent textbook generation
process",
"author": "Claude Skills",
"created": "2025-01-09"
},
"groups": {
"start": {
"color": "#9CA3AF",
… +191 lines (ctrl+o to expand)
⏺ Write(docs/sims/course-quality-workflow/course-quality-workflow.js)
⎿ Wrote 348 lines to docs/sims/course-quality-workflow/course-quality-workflow.js
// Course Description Quality Impact on Workflow Infographic
// Interactive p5.js visualization showing how quality affects the textbook
generation workflow
// Canvas dimensions
let canvasWidth = 800;
let drawHeight = 680;
let controlHeight = 140;
let canvasHeight = drawHeight + controlHeight;
let margin = 20;
let defaultTextSize = 16;
… +338 lines (ctrl+o to expand)
⏺ Write(docs/sims/course-quality-workflow/main.html)
⎿ Wrote 45 lines to docs/sims/course-quality-workflow/main.html
<!DOCTYPE html>