"""Generate all SVG illustrations for Chapter 5 (Code Generation)."""
import os
import sys
sys.path.insert(0, os.path.dirname(__file__))
from svg_lib import (
SVG, COLORS, FS_TITLE, FS_BODY, FS_SMALL, FS_TINY, FS_LABEL,
CORNER_R,
)
OUT = os.path.join(os.path.dirname(__file__), 'images')
def _pill(svg, x, y, w, h, label, fill='light', font_size=FS_SMALL, bold=False):
svg.rect(x, y, w, h, fill=fill, rx=h // 2)
c = 'white' if fill in ('dark', 'darker') else 'text'
svg.text(x + w / 2, y + h / 2, label, size=font_size, fill=c, bold=bold)
def fig5_1():
"""OpenClaw architecture — Figure 5-1."""
w, h = 980, 600
svg = SVG(w, h)
svg.text(w / 2, 30, "Arquitectura OpenClaw: el Agente de programación como núcleo del Agente general", size=FS_TITLE, bold=True)
gw_y, gw_h = 58, 66
svg.group_box(60, gw_y, w - 120, gw_h, "Pasarela de mensajería multiplataforma (capa de interacción del usuario)")
channels = ["WhatsApp", "Telegram", "iMessage", "Slack", "CLI"]
pill_w, pill_h = 130, 32
total_pw = len(channels) * pill_w + (len(channels) - 1) * 18
px_start = (w - total_pw) / 2
for i, ch in enumerate(channels):
px = px_start + i * (pill_w + 18)
svg.rect(px, gw_y + 26, pill_w, pill_h, fill='medium', rx=pill_h // 2)
svg.text(px + pill_w / 2, gw_y + 26 + pill_h / 2, ch, size=FS_SMALL)
svg.arrow(w / 2, gw_y + gw_h + 2, w / 2, 158)
svg.text(w / 2 + 12, 134, "Solicitud en lenguaje natural", size=FS_LABEL, fill='text_light', anchor='start')
ca_x, ca_y, ca_w, ca_h = 200, 160, 580, 210
svg.rect(ca_x, ca_y, ca_w, ca_h, fill='light')
svg.rect(ca_x, ca_y, ca_w, 40, fill='darker', rx=6)
svg.text(ca_x + ca_w / 2, ca_y + 20,
"Entorno de ejecución del Agente de programación (inferencia + núcleo de ejecución)", size=FS_BODY, bold=True, fill='white')
tools = [
("Code Interpreter", "Ejecución de código"), ("Bash Shell", "Comandos de sistema"),
("Read File", "Leer archivo"), ("Write File", "Escribir archivo"),
("Edit File", "Editar archivo"), ("Glob", "Buscar archivos"), ("Grep", "Buscar contenido"),
]
tw, th, tgap = 132, 60, 12
for ri, row in enumerate([tools[:4], tools[4:]]):
row_total_w = len(row) * tw + (len(row) - 1) * tgap
rx_start = ca_x + (ca_w - row_total_w) / 2
ry = ca_y + 56 + ri * (th + tgap)
for ci, (name, desc) in enumerate(row):
tx = rx_start + ci * (tw + tgap)
svg.rect(tx, ry, tw, th, fill='white')
svg.text(tx + tw / 2, ry + 22, name, size=FS_TINY, bold=True)
svg.text(tx + tw / 2, ry + 42, desc, size=FS_TINY, fill='text_light')
dr_x, dr_y, dr_w, dr_h = 22, 198, 158, 86
svg.rect(dr_x, dr_y, dr_w, dr_h, fill='medium')
svg.text(dr_x + dr_w / 2, dr_y + 22, "Módulo búsqueda web", size=FS_SMALL, bold=True)
svg.text(dr_x + dr_w / 2, dr_y + 44, "Deep Research", size=FS_TINY, fill='text_light')
svg.text(dr_x + dr_w / 2, dr_y + 66, "Peticiones web · parseo", size=FS_TINY, fill='text_light')
svg.arrow(dr_x + dr_w + 2, dr_y + dr_h / 2, ca_x - 2, ca_y + ca_h / 2)
cu_x, cu_y, cu_w, cu_h = 800, 198, 158, 86
svg.rect(cu_x, cu_y, cu_w, cu_h, fill='medium')
svg.text(cu_x + cu_w / 2, cu_y + 22, "Automatiz. navegador", size=FS_SMALL, bold=True)
svg.text(cu_x + cu_w / 2, cu_y + 44, "Computer Use", size=FS_TINY, fill='text_light')
svg.text(cu_x + cu_w / 2, cu_y + 66, "DOM de Playwright", size=FS_TINY, fill='text_light')
svg.arrow(ca_x + ca_w + 2, ca_y + ca_h / 2, cu_x - 2, cu_y + cu_h / 2)
fs_y, fs_h = 410, 140
svg.arrow(w / 2, ca_y + ca_h + 2, w / 2, fs_y - 2)
svg.text(w / 2 + 12, 390, "Leer / escribir archivo", size=FS_LABEL, fill='text_light', anchor='start')
svg.group_box(60, fs_y, w - 120, fs_h, "Sistema de archivos (memoria · conocimiento · centro de habilidades)")
mem_items = [
("MEMORY.md", "Hechos de alto nivel / pref. usuario"),
("daily/AAAA-MM-DD.md", "Archivo diario / reg. interacción"),
("SOUL.md", "Identidad y reglas del Agente"),
("Archivos de conocimiento", "Experiencia de tarea / autoevolución"),
("Control de versión Git", "Reversión memoria / auditoría historial"),
]
item_w, item_h, item_gap = 162, 76, 16
total_iw = len(mem_items) * item_w + (len(mem_items) - 1) * item_gap
ix_start = (w - total_iw) / 2
for i, (title, desc) in enumerate(mem_items):
ix = ix_start + i * (item_w + item_gap)
iy = fs_y + 34
svg.rect(ix, iy, item_w, item_h, fill='white')
svg.text(ix + item_w / 2, iy + 26, title, size=FS_TINY, bold=True)
svg.text(ix + item_w / 2, iy + 52, desc, size=FS_TINY, fill='text_light')
os_y = fs_y + fs_h + 16
svg.rect(60, os_y, w - 120, 38, fill='darker', rx=6)
svg.text(w / 2, os_y + 19,
"LLM = el nuevo sistema operativo: oculta la complejidad y ofrece abstracción unificada", size=FS_SMALL, bold=True, fill='white')
svg.save(os.path.join(OUT, 'fig5-1.svg'))
def fig5_2():
"""Coding Agent multi-phase workflow — Figure 5-2."""
w, h = 880, 580
svg = SVG(w, h)
svg.text(w / 2, 30, "Flujo de trabajo por capas del Agente de programación", size=FS_TITLE, bold=True)
phases = [
("① Documentación proyecto", 'medium', [
("read_file", "README.md, ARCHITECTURE.md"),
("glob", "**/*.py, **/*.ts"),
("write_file", "→ Generar guía CLAUDE.md"),
]),
("② Comprensión requisitos", 'light', [
("ask_user", '"¿Objetivo es latencia o rendimiento?"'),
("grep", '"latency|throughput" src/'),
("read_file", "src/config.py (parámetros actuales)"),
]),
("③ Documento diseño", 'light', [
("write_file", "design.md (Comparación esquemas)"),
("ask_user", "Enviar diseño → Esperar aprobación"),
("—", "Tras revisión humana → Continuar"),
]),
("④ Codificación y pruebas", 'medium', [
("edit_file", "old_str→new_str cambiar código"),
("bash", "pytest tests/ -v"),
("edit_file", "Corregir pruebas fallidas → Reejecutar"),
]),
("⑤ Revisión y entrega", 'light', [
("bash", "ruff check src/ (linter)"),
("read_file", "Autorrevisión: legibilidad/seguridad/rendimiento"),
("edit_file", "Actualizar ARCHITECTURE.md"),
]),
]
phase_w = 155
phase_gap = 12
total_w = len(phases) * phase_w + (len(phases) - 1) * phase_gap
sx = (w - total_w) / 2
for i, (title, fill, steps) in enumerate(phases):
x = sx + i * (phase_w + phase_gap)
ph = 240
svg.rect(x, 55, phase_w, ph, fill=fill)
svg.text(x + phase_w / 2, 78, title, size=FS_SMALL, bold=True)
svg.line(x + 8, 92, x + phase_w - 8, 92, color='dark')
for j, (tool, desc) in enumerate(steps):
ty = 110 + j * 70
_pill(svg, x + 8, ty, phase_w - 16, 22, tool, fill='dark', font_size=11, bold=True)
svg.text_block(x + 10, ty + 26, phase_w - 20, desc.split('\n'),
size=10, min_size=7, anchor='start', mono=True, line_gap=1.45)
if i < len(phases) - 1:
ax = x + phase_w + 2
svg.arrow(ax, 55 + ph / 2, ax + phase_gap - 4, 55 + ph / 2)
svg.line(30, 320, w - 30, 320, color='dark', dash=True)
svg.text(w / 2, 340, "Mecanismo de retroalimentación de bucle cerrado", size=FS_BODY, bold=True)
loops = [
("Fallo en prueba → Editar código → Reejecutar pruebas", "④ Bucle interno: converge en 2-3 rondas promedio"),
("Error de linter → Corregir de inmediato → Recomprobar", "⑤ Bucle interno: se activa automático tras edición"),
("Problema en revisión → Volver a ④ y corregir", "⑤→④ retorno: garantiza la calidad de entrega"),
]
ly = 365
for label, note in loops:
svg.rect(80, ly, 500, 46, fill='light')
svg.text(330, ly + 15, label, size=FS_SMALL, bold=True)
svg.text(330, ly + 34, note, size=FS_TINY, fill='text_light')
ly += 50
annots = [
"Barra de estado: cwd, rama git",
"Barra de estado: cambios no preparados",
"Salida herramientas: recorte head/tail",
"Sesión de terminal persistente",
]
for i, ann in enumerate(annots):
svg.rect(610, 365 + i * 50, 250, 38, fill='code_bg', stroke='dark', rx=4)
svg.text(735, 384 + i * 50, ann, size=FS_TINY, fill='text_light')
svg.text(w / 2, 565, "Planificar antes de actuar · Verificación de extremo a extremo · Código y docs evolucionan juntos", size=FS_BODY, bold=True, fill='darker')
svg.save(os.path.join(OUT, 'fig5-2.svg'))
def fig5_3():
"""Search tool comparison — Figure 5-3."""
w, h = 880, 560
svg = SVG(w, h)
svg.text(w / 2, 30, "Comparación de cuatro herramientas de búsqueda", size=FS_TITLE, bold=True)
tools = [
("Coincidencia de contenido por regex (grep)", 'medium',
"rg \"def handle_.*\" --type py",
["src/api.py:42: def handle_request(..)",
"src/api.py:89: def handle_timeout(..)",
"src/ws.py:15: def handle_connect(..)"],
"Texto completo → todas las ubicaciones"),
("Coincidencia de nombre de archivo (glob)", 'light',
"glob: **/test_*.py",
["tests/test_api.py",
"tests/test_auth.py",
"tests/unit/test_parser.py"],
"Patrón de ruta → no lee contenido"),
("Búsqueda semántica de código", 'light',
'"Manejar validación de entrada de usuario"',
["[0.91] src/validators.py:validate_input()",
"[0.87] src/forms.py:sanitize_fields()",
"[0.82] src/api.py:check_params()"],
"Lenguaje natural → Híbrido vector + BM25"),
("Definición / Referencia de símbolos", 'medium',
"find_references: UserService",
["Definición: src/services/user.py:12",
"Referencia: src/api/routes.py:34 (import)",
"Referencia: src/api/routes.py:56 (llamada)",
"Referencia: tests/test_user.py:8 (prueba)"],
"Nivel AST → Distingue mismos nombres"),
]
col_w = (w - 60) // 2
col_gap = 20
for i, (title, fill, query, results, note) in enumerate(tools):
col = i % 2
row = i // 2
x = 20 + col * (col_w + col_gap)
y = 55 + row * 260
svg.rect(x, y, col_w, 240, fill='white', stroke='border')
svg.rect(x, y, col_w, 36, fill=fill, rx=CORNER_R)
tc = 'white' if fill in ('dark', 'darker') else 'text'
svg.text(x + col_w / 2, y + 18, title, size=FS_SMALL, bold=True, fill=tc)
svg.text(x + 12, y + 54, "Consulta:", size=FS_TINY, bold=True, anchor='start', fill='text_light')
svg.rect(x + 8, y + 64, col_w - 16, 24, fill='code_bg', stroke='dark', rx=3)
svg.mono(x + 14, y + 76, query, size=11)
svg.text(x + 12, y + 102, "Resultado:", size=FS_TINY, bold=True, anchor='start', fill='text_light')
rh = len(results) * 20 + 12
svg.rect(x + 8, y + 112, col_w - 16, rh, fill='code_bg', stroke='dark', rx=3)
for j, r in enumerate(results):
svg.mono(x + 14, y + 128 + j * 20, r, size=10)
svg.text(x + col_w / 2, y + 226, note, size=FS_TINY, fill='text_light')
svg.save(os.path.join(OUT, 'fig5-3.svg'))
def fig5_4():
"""File Editing Scheme Comparison — Figure 5-4."""
w, h = 900, 700
svg = SVG(w, h)
svg.text(w / 2, 28, "Comparación de cinco esquemas de edición de archivos", size=FS_TITLE, bold=True)
approaches = [
("Modelo Diff + Apply", "dark",
["El LLM genera explicación Diff:",
"- def foo(x):",
"- return x",
"+ def foo(x, y=0):",
"+ return x + y",
"→ Modelo pequeño ubica y aplica"],
"Ventajas: Separación de responsabilidades",
"Contras: Pequeña desviación rompe alineación"),
("Cadena antigua → Cadena nueva", "medium",
['old: "def foo(x):\\n',
' return x"',
'new: "def foo(x, y=0):\\n',
' return x + y"',
"→ Reemplazo por coincidencia exacta"],
"Ventajas: Predecible, sin ambigüedad",
"Contras: Grandes eliminaciones requieren salida completa"),
("Ubicación por num. línea", "light",
["Eliminar líneas 42-43, agregar:",
" def foo(x, y=0):",
" return x + y",
"",
"→ El núm. de línea especifica el rango exacto"],
"Ventajas: Eficiente para operaciones grandes",
"Contras: Propensa a errores en archivos largos"),
("Comandos estilo Vim", "light",
["42G (ir a línea 42)",
"cw (cambiar palabra)",
"dd (eliminar línea)",
"yy/p (copiar/pegar)",
"→ Semántica de edición rica"],
"Ventajas: Mover/reorganizar eficientemente",
"Contras: Modelos débiles generan más errores"),
("Coincidencia inicio-fin", "medium",
['start: "def foo(x):"',
'end: " return x"',
'new: "def foo(x, y=0):',
' return x + y"',
"→ Bastan los límites para ubicar"],
"Ventajas: Gran eliminación sin salida completa",
"Contras: La combinación de límites debe ser única"),
]
col_w = 168
col_gap = 10
total_cw = len(approaches) * col_w + (len(approaches) - 1) * col_gap
sx = (w - total_cw) / 2
max_code_h = max(len(a[2]) for a in approaches) * 17 + 14
py = 101 + max_code_h + 12
box_h = 80
for i, (title, fill, code_lines, pro, con) in enumerate(approaches):
x = sx + i * (col_w + col_gap)
svg.rect(x, 55, col_w, 38, fill=fill, rx=CORNER_R)
tc = 'white' if fill in ('dark', 'darker') else 'text'
svg.text(x + col_w / 2, 74, title, size=FS_TINY, bold=True, fill=tc)
code_h = len(code_lines) * 17 + 14
svg.rect(x, 101, col_w, code_h, fill='code_bg', stroke='dark', rx=3)
for j, line in enumerate(code_lines):
svg.mono(x + 6, 117 + j * 17, line, size=11)
svg.rect(x + 4, py, col_w - 8, box_h, fill='white', stroke='dark', rx=3)
svg.text_block(x + col_w / 2, py + 5, col_w - 18,
[(pro, 'text'), (con, 'text_light')], size=FS_TINY - 2,
min_size=9, line_gap=1.18)
chart_y = py + box_h + 22
svg.line(30, chart_y, w - 30, chart_y, color='dark', dash=True)
svg.text(w / 2, chart_y + 24, "Tasa real de adopción", size=FS_BODY, bold=True)
adoptions = [
("Cadena ant.→nueva", "Claude Code", 0.85, 'dark'),
("Ubicación por núm. línea", "Escenarios integración profunda IDE", 0.50, 'medium'),
("Diff + Apply", "Cursor", 0.40, 'light'),
("Coincidencia inicio-fin", "Algunas soluciones personalizadas", 0.30, 'light'),
("Comandos Vim", "Soluciones experimentales", 0.15, 'code_bg'),
]
bar_x, bar_w_max = 250, 480
by = chart_y + 48
for label, products, ratio, fill in adoptions:
svg.text(bar_x - 10, by + 14, label, size=FS_TINY, anchor='end', bold=True)
bw = bar_w_max * ratio
svg.rect(bar_x, by, bw, 28, fill=fill, rx=3)
tc = 'white' if fill in ('dark', 'darker') else 'text'
svg.text(bar_x + bw / 2, by + 14, products, size=FS_TINY, fill=tc)
by += 38
svg.save(os.path.join(OUT, 'fig5-4.svg'))
def fig5_5():
"""PPT generation pipeline — Figure 5-5."""
w, h = 880, 560
svg = SVG(w, h)
svg.text(w / 2, 30, "Generación de PPT: colaboración Proposer-Reviewer", size=FS_TITLE, bold=True)
svg.rect(20, 60, 350, 280, fill='white', stroke='border', dash=True)
svg.text(195, 82, "Agente Proponente (Proposer)", size=FS_BODY, bold=True)
svg.text(40, 110, "Entrada: Artículo / contenido", size=FS_SMALL, anchor='start', bold=True)
svg.rect(30, 125, 330, 24, fill='code_bg', stroke='dark', rx=3)
svg.mono(38, 137, "paper.pdf → Extraer secciones/argumentos/imgs", size=11)
svg.text(40, 168, "Salida: Markdown Slidev", size=FS_SMALL, anchor='start', bold=True)
code_lines = [
"---",
"layout: two-cols",
"---",
"# Arquitectura Transformer",
"::left::",
"- Mecanismo self-attention",
"- Atención multicabeza",
"::right::",
"
",
]
ch = svg.code_block(30, 182, 330, code_lines, font_size=10, line_h=14)
svg.rect(510, 60, 350, 280, fill='white', stroke='border', dash=True)
svg.text(685, 82, "Agente Revisor (Reviewer)", size=FS_BODY, bold=True)
svg.text(520, 110, "Paso 1: Renderizar capturas de pantalla", size=FS_SMALL, anchor='start', bold=True)
svg.rect(520, 125, 330, 50, fill='light')
svg.text(685, 142, "slidev export --per-slide", size=FS_TINY, fill='text_light')
svg.text(685, 160, "→ slide-01.png, slide-02.png ...", size=FS_TINY, fill='text_light')
svg.text(520, 192, "Paso 2: Revisión con LLM visual", size=FS_SMALL, anchor='start', bold=True)
critique_lines = [
"Dimensiones de revisión:",
" ✓ Límite de desborde de texto",
" ✓ Distribución muy ajustada",
" ✓ Tamaño de imagen adecuado",
" ✗ Diap. 3: El texto desborda la col. derecha",
" ✗ Diap. 7: Contenido demasiado denso",
]
svg.rect(520, 208, 330, len(critique_lines) * 16 + 12, fill='code_bg', stroke='dark', rx=3)
for j, line in enumerate(critique_lines):
svg.mono(528, 222 + j * 16, line, size=10)
svg.arrow(370, 200, 508, 150, label="Código Slidev")
svg.arrow(508, 300, 370, 260, label="Sugerencias de cambio", dash=True)
_pill(svg, 395, 220, 100, 24, "Iterar 2-3 rondas", fill='dark', font_size=11, bold=True)
svg.line(30, 365, w - 30, 365, color='dark', dash=True)
svg.text(w / 2, 388, "¿Por qué separar en Agentes Proponente y Revisor?", size=FS_BODY, bold=True)
reasons = [
("Problema Agente único", [
"Decenas de capturas → desborde de contexto",
"Mezcla código + imágenes → distracción",
]),
("Ventajas de separación", [
"Revisor con contexto indep. → solo imagen + código",
"Proponente enfocado → solo recibe sugerencias",
]),
("Impacto real", [
"Reduce significativamente el uso de contexto",
"Aumenta notablemente la precisión de corrección",
]),
]
rx = 30
for title, items in reasons:
svg.rect(rx, 405, 270, 130, fill='light')
svg.text(rx + 135, 425, title, size=FS_SMALL, bold=True)
for j, item in enumerate(items):
svg.text(rx + 135, 450 + j * 24, item, size=FS_TINY, fill='text_light')
rx += 290
svg.save(os.path.join(OUT, 'fig5-5.svg'))
def fig5_6():
"""Experiment 5.6+5.7 — Figure 5-6."""
w, h = 880, 560
svg = SVG(w, h)
svg.text(w / 2, 30, "Experimento 5.6+5.7: Artículo → PPT → Video de clase", size=FS_TITLE, bold=True)
stages_top = [
("Entrada PDF", 'medium', [
"paper.pdf",
"Parsear estructura doc.",
"Extraer ref. imágenes",
]),
("Planificación contenido", 'light', [
"Estructura 10-20 págs",
"Extraer arg. principales",
"Asignar imágenes",
]),
("Generación Slidev", 'light', [
"Generar pág. por pág.",
"layout: two-cols",
"Código + disposición img",
]),
("Control de renderizado", 'medium', [
"export --per-slide",
"Revisión LLM visual",
"Detección desborde",
]),
("Corrección iterativa", 'light', [
"Revisor→Proponente",
"Modificar código Slidev",
"Rerenderizar y verificar",
]),
]
sw = 155
sgap = 10
total = len(stages_top) * sw + (len(stages_top) - 1) * sgap
sx = (w - total) / 2
svg.text(w / 2, 60, "Fase 1: Generación de PPT (Proponente-Revisor)", size=FS_SMALL, bold=True, fill='text_light')
for i, (title, fill, details) in enumerate(stages_top):
x = sx + i * (sw + sgap)
svg.rect(x, 72, sw, 130, fill=fill)
svg.text(x + sw / 2, 92, title, size=FS_SMALL, bold=True)
svg.line(x + 8, 104, x + sw - 8, 104, color='dark')
for j, line in enumerate(details):
svg.mono(x + 8, 120 + j * 20, line, size=10)
if i < len(stages_top) - 1:
svg.arrow(x + sw + 2, 72 + 65, x + sw + sgap - 2, 72 + 65)
svg.arrow(w / 2, 202, w / 2, 240)
svg.text(w / 2 + 60, 222, "PPT completado", size=FS_SMALL, fill='text_light')
svg.text(w / 2, 255, "Fase 2: Síntesis de video", size=FS_SMALL, bold=True, fill='text_light')
stages_bot = [
("Captura por página", 'medium', [
"slide-01.png",
"slide-02.png",
"...",
]),
("Generación guion", 'light', [
"Guion en lenguaje natural",
"Narración por página",
"Narrativa de guiado",
]),
("Síntesis TTS", 'light', [
"Texto → audio",
"speech-01.mp3",
"speech-02.mp3",
]),
("Sincronía audio-video", 'medium', [
"Síntesis ffmpeg",
"Coincidir dur. audio",
"Efectos de transición",
]),
("Video final", 'dark', [
"output.mp4",
"5-15 minutos",
"Salida audio + imagen",
]),
]
for i, (title, fill, details) in enumerate(stages_bot):
x = sx + i * (sw + sgap)
svg.rect(x, 268, sw, 130, fill=fill)
tc = 'white' if fill in ('dark', 'darker') else 'text'
svg.text(x + sw / 2, 288, title, size=FS_SMALL, bold=True, fill=tc)
svg.line(x + 8, 300, x + sw - 8, 300, color='dark')
for j, line in enumerate(details):
fc = 'white' if fill in ('dark', 'darker') else 'text'
svg.mono(x + 8, 316 + j * 20, line, size=10, fill=fc)
if i < len(stages_bot) - 1:
svg.arrow(x + sw + 2, 268 + 65, x + sw + sgap - 2, 268 + 65)
svg.line(30, 420, w - 30, 420, color='dark', dash=True)
svg.text(w / 2, 440, "Criterios de aceptación", size=FS_BODY, bold=True)
criteria = [
("PPT", "10-20 págs · Cubre contribuciones principales · ≥3 gráficos originales"),
("Render", "Cero desborde de texto · Disposición adecuada · Armonía texto-imagen"),
("Video", "5-15 minutos · Sincronía audio-video · Narrativa coherente"),
]
cy = 462
for label, desc in criteria:
_pill(svg, 180, cy, 92, 26, label, fill='dark', font_size=12, bold=True)
svg.text(285, cy + 13, desc, size=FS_TINY, fill='text_light', anchor='start')
cy += 30
svg.save(os.path.join(OUT, 'fig5-6.svg'))
def fig5_7():
"""Experiment 5.10 — Figure 5-7."""
w, h = 880, 560
svg = SVG(w, h)
svg.text(w / 2, 30, "Experimento 5.10: Diagnóstico inteligente de registros de producción", size=FS_TITLE, bold=True)
svg.rect(20, 60, 250, 160, fill='white', stroke='border', dash=True)
svg.text(145, 82, "① Recolección de registros", size=FS_BODY, bold=True)
log_lines = [
"trajectory_001.json:",
' {"role":"user","content":',
' "cancelar pedido 12345"}',
' {"role":"assistant",',
' "tool_call":"cancel_order"}',
' {"role":"tool","result":',
' "ERROR: sin seguro"}',
' → Agente no informó la razón al usuario',
]
svg.rect(30, 98, 230, len(log_lines) * 14 + 10, fill='code_bg', stroke='dark', rx=3)
for j, line in enumerate(log_lines):
svg.mono(38, 112 + j * 14, line, size=9)
svg.arrow(270, 140, 310, 140)
svg.rect(310, 60, 260, 160, fill='white', stroke='border', dash=True)
svg.text(440, 82, "② Análisis de LLM", size=FS_BODY, bold=True)
analysis = [
"Entrada: traza + doc. arquit. + PRD",
"",
"Dimensiones de análisis:",
" - ¿Flujo de ejec. cumple lo esperado?",
" - ¿Llamadas a herramientas correctas?",
" - ¿Manejo de errores adecuado?",
" - ¿Experiencia de usuario satisfactoria?",
"",
"→ Identificar paso y módulo con desviación",
]
for j, line in enumerate(analysis):
svg.mono(320, 100 + j * 14, line, size=10)
svg.arrow(570, 140, 610, 140)
svg.rect(610, 60, 250, 160, fill='white', stroke='border', dash=True)
svg.text(735, 82, "③ Informe estructurado", size=FS_BODY, bold=True)
report = [
"Informe de problema:",
" Prioridad: P1 (Riesgo pérdida usuario)",
" Módulo: cancellation_handler",
" Descripción: Tras fallo en cancelación,",
" no se explica motivo ni alternativas",
" Recomendación: Agregar explicación",
" y guía para compra de seguro",
]
svg.rect(620, 98, 230, len(report) * 14 + 10, fill='code_bg', stroke='dark', rx=3)
for j, line in enumerate(report):
svg.mono(628, 112 + j * 14, line, size=9)
svg.arrow(w / 2, 220, w / 2, 260)
svg.rect(60, 260, 370, 160, fill='white', stroke='border', dash=True)
svg.text(245, 282, "④ Generación caso de prueba de regresión", size=FS_BODY, bold=True)
test_code = [
"def test_cancel_no_insurance():",
' """Traza #001, Rondas 3-5"""',
" # Replay: El usuario pide cancelar vuelo",
" resp = agent.run(",
' "cancelar pedido 12345")',
" # Verificar: Debe explicarse el motivo",
' assert "seguro" in resp.text',
' assert "alternativa" in resp.text',
" # Verificar: No debe devolver error directo",
' assert "ERROR" not in resp.text',
]
svg.rect(70, 298, 350, len(test_code) * 14 + 10, fill='code_bg', stroke='dark', rx=3)
for j, line in enumerate(test_code):
svg.mono(78, 312 + j * 14, line, size=10)
svg.arrow(430, 340, 470, 340)
svg.rect(470, 260, 380, 160, fill='white', stroke='border', dash=True)
svg.text(660, 282, "⑤ Creación automática de Issue en GitHub", size=FS_BODY, bold=True)
issue = [
"gh issue create \\",
' --title "P1: Falta guía al usuario',
' en cancelación" \\',
' --body "**Problema**: El Agente devuelve',
' error directo sin explicar motivo...',
' **Traza**: #001 Rondas 3-5',
' **Prueba**: test_cancel_..." \\',
' --assignee @backend-team',
]
svg.rect(480, 298, 360, len(issue) * 14 + 10, fill='code_bg', stroke='dark', rx=3)
for j, line in enumerate(issue):
svg.mono(488, 312 + j * 14, line, size=10)
svg.rect(100, 445, w - 200, 44, fill='dark')
svg.text(w / 2, 460, "Automatización de extremo a extremo: Registro → Análisis → Informe → Prueba → Issue", size=FS_BODY, fill='white', bold=True)
svg.text(w / 2, 480, "Integración GitHub con MCP · Verificación de replay automático en marco de pruebas", size=FS_TINY, fill='white')
svg.text(w / 2, 530, "Reduce el costo de diagnóstico manual de horas a minutos", size=FS_SMALL, fill='darker', bold=True)
svg.save(os.path.join(OUT, 'fig5-7.svg'))
def fig5_8():
"""Dynamic form generation flow — Figure 5-8."""
w, h = 880, 560
svg = SVG(w, h)
svg.text(w / 2, 30, "Generación dinámica de formularios: aclaración estructurada de intención", size=FS_TITLE, bold=True)
svg.rect(20, 60, 200, 60, fill='medium')
svg.text(120, 82, "Entrada del usuario", size=FS_SMALL, bold=True)
svg.text(120, 100, '"Quiero reservar un vuelo a Pekín"', size=FS_TINY, fill='text_light')
svg.arrow(220, 90, 260, 90)
svg.rect(260, 55, 260, 140, fill='white', stroke='border', dash=True)
svg.text(390, 75, "Análisis LLM → Generar código de formulario", size=FS_SMALL, bold=True)
form_code = [
'