一键导入
master-agent-playbook
Philosophy, decision-making framework, and technical skills for delivering visual, interactive, and educational AI responses.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Philosophy, decision-making framework, and technical skills for delivering visual, interactive, and educational AI responses.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
UI mockups, dashboards, advanced interactivity, generative art, simulations, math visualizations, and design system rules for producing rich generateSandboxedUi output.
Generating rich inline SVG diagrams to visually explain systems, processes, architectures, and abstract concepts.
| name | Master Agent Playbook |
| description | Philosophy, decision-making framework, and technical skills for delivering visual, interactive, and educational AI responses. |
| allowed-tools | [] |
This playbook teaches an AI coding agent how to go beyond plain text and deliver responses that are visual, interactive, and deeply educational. It covers the philosophy, decision-making, and technical skills needed.
Bad: "A load path is the route that forces take through a structure to the ground." Good: [draws an interactive building cross-section with loads flowing downward]
The principle: Show, don't just tell. Before writing any response, ask:
User asks a question
|
+- Is it a quick factual answer? -> Answer in 1-2 sentences.
|
+- Is it conceptual / "how does X work"?
| +- Is it spatial or visual? -> SVG illustrative diagram
| +- Is it a process/flow? -> SVG flowchart or HTML stepper
| +- Is it data-driven? -> Interactive chart (Chart.js / Recharts)
| +- Is it abstract but explorable? -> Interactive HTML widget with controls
|
+- Is it "build me X"? -> Working code artifact, fully functional
|
+- Is it a comparison? -> Side-by-side table or comparative visual
|
+- Is it emotional/personal? -> Warm text response. No visuals needed.
Great responses layer information:
Never dump a visual without narration. Never narrate without visuals when visuals would help.
This maps directly onto the mandatory tool sequence: Acknowledge in text,
call plan_visualization, Build with generateSandboxedUi, then Narrate.
Every visual in this playbook ships through the generateSandboxedUi tool. The
UI streams to the user as you generate it, so emit the parameters in this EXACT
order:
initialHeight — estimated height of the finished UI in px.placeholderMessages — 2-4 short, playful progress messages shown while the UI builds.css — ALL styles, up front. The user sees a placeholder until css is complete,
so keep it lean and put every style here for the css-first reveal.html — clean body markup, streamed in live as you write it. No <style>
blocks (the css parameter owns all styles), no monolithic inline <script> blocks.jsFunctions — named function declarations: your reusable toolbox of behavior.jsExpressions — an array of small statements that invoke those functions,
applied one-by-one so the user watches each take effect.Write parameterized generators in jsFunctions (drawWing(color), not
drawRedWing()). When the user asks for a refinement — "make the wings red" —
a well-parameterized toolbox lets a later turn append ONE new expression instead
of regenerating the whole document.
The UI runs in a sandboxed iframe WITHOUT same-origin access:
await Websandbox.connection.remote.sendPrompt({ text }) sends a
chat message on the user's behalf; await Websandbox.connection.remote.openLink({ url })
opens an https link in a new tab..c-* SVG color-ramp classes. The css parameter holds widget-specific styles only.three, gsap, d3, and chart.js (served via
esm.sh). jsFunctions/jsExpressions run with classic-script semantics — top-level await
is a SyntaxError there. Prefer dynamic await import(...) inside an async function
declared in jsFunctions (keep jsExpressions synchronous invocations);
<script type="module"> with bare specifiers also works in html when a module script
genuinely belongs there.For concepts that benefit from user exploration. More powerful than static SVGs — users can manipulate parameters and see results.
css parameter:
.controls {
display: flex;
align-items: center;
gap: 16px;
margin: 12px 0;
font-size: 13px;
color: var(--color-text-secondary, #666);
}
.controls label {
display: flex;
align-items: center;
gap: 6px;
}
input[type="range"] { flex: 1; }
html parameter:
<!-- Inline SVG drawing that responds to controls -->
<svg width="100%" viewBox="0 0 680 400" xmlns="http://www.w3.org/2000/svg">
<!-- Dynamic elements with IDs for JS manipulation -->
<rect id="dynamic-element" x="100" y="100" width="200" height="50"
fill="#E6F1FB" stroke="#185FA5" stroke-width="0.5" rx="8"/>
</svg>
<!-- Controls below the visual -->
<div class="controls">
<label>
<span>Parameter</span>
<input type="range" id="param-slider" min="0" max="100" value="50"
oninput="updateParam(this.value)">
<span id="param-label">50</span>
</label>
</div>
jsFunctions parameter:
function updateParam(value) {
document.getElementById('param-label').textContent = value;
// Modify SVG elements based on value
const el = document.getElementById('dynamic-element');
el.setAttribute('width', 100 + value * 2);
}
jsExpressions parameter:
updateParam(50);
For cyclic or staged processes (event loops, biological cycles, pipelines).
css parameter:
.step-nav {
display: flex;
align-items: center;
gap: 12px;
margin: 12px 0;
font-size: 13px;
}
.step-nav button {
padding: 6px 16px;
border: 1px solid var(--color-border-tertiary, #ddd);
border-radius: 8px;
background: var(--color-background-secondary, #f5f5f5);
color: var(--color-text-primary, #333);
cursor: pointer;
font-size: 13px;
}
.step-nav button:hover {
background: var(--color-background-tertiary, #eee);
}
.dot { width: 8px; height: 8px; border-radius: 50%;
background: var(--color-border-tertiary, #ccc);
transition: background 0.2s; }
.dot.active { background: var(--color-text-info, #185FA5); }
.step-content { min-height: 300px; }
#dots { display: flex; gap: 6px; }
#step-label { margin-left: auto; color: var(--color-text-secondary, #888); }
html parameter:
<div class="step-content" id="step-display">
<!-- SVG or HTML content per step, swapped by JS -->
</div>
<div class="step-nav">
<button onclick="prevStep()">Previous</button>
<div id="dots"></div>
<button onclick="nextStep()">Next</button>
<span id="step-label">Step 1 of 4</span>
</div>
jsFunctions parameter:
function initSteps(steps) {
window.steps = steps;
window.current = 0;
const dotsEl = document.getElementById('dots');
steps.forEach(() => {
const d = document.createElement('div');
d.className = 'dot';
dotsEl.appendChild(d);
});
renderStep();
}
function renderStep() {
const { steps, current } = window;
document.getElementById('step-display').innerHTML = steps[current].svg;
document.getElementById('step-label').textContent =
`Step ${current + 1} of ${steps.length}`;
document.querySelectorAll('.dot').forEach((d, i) =>
d.classList.toggle('active', i === current));
}
function nextStep() {
window.current = (window.current + 1) % window.steps.length;
renderStep();
}
function prevStep() {
window.current = (window.current - 1 + window.steps.length) % window.steps.length;
renderStep();
}
jsExpressions parameter:
initSteps([
{ title: "Step 1", svg: `<svg>...</svg>`, desc: "What happens first" },
{ title: "Step 2", svg: `<svg>...</svg>`, desc: "Then this" },
]);
These belong in the css parameter alongside the rest of your styles:
/* Flowing particles along a path */
@keyframes flow {
to { stroke-dashoffset: -20; }
}
.flowing {
stroke-dasharray: 5 5;
animation: flow 1.6s linear infinite;
}
/* Pulsing glow for active elements */
@keyframes pulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.7; }
}
.pulsing { animation: pulse 2s ease-in-out infinite; }
/* Flickering (for flames, sparks) */
@keyframes flicker {
0%, 100% { opacity: 1; }
50% { opacity: 0.8; }
}
/* Always respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
}
}
For simple charts, hand-draw in SVG. No library needed.
<!-- Simple bar chart -->
<svg width="100%" viewBox="0 0 680 300">
<!-- Y axis -->
<line x1="80" y1="40" x2="80" y2="250" stroke="currentColor"
stroke-width="0.5" opacity="0.3"/>
<!-- X axis -->
<line x1="80" y1="250" x2="620" y2="250" stroke="currentColor"
stroke-width="0.5" opacity="0.3"/>
<!-- Bars -->
<rect x="120" y="100" width="60" height="150" rx="4"
fill="#EEEDFE" stroke="#534AB7" stroke-width="0.5"/>
<text x="150" y="270" text-anchor="middle" font-size="12"
fill="currentColor" opacity="0.7">Q1</text>
<text x="150" y="92" text-anchor="middle" font-size="12"
fill="#3C3489">$42k</text>
<!-- ... more bars -->
</svg>
When you need tooltips, responsive legends, animations. chart.js is in the
pre-injected importmap — load it with a dynamic import inside a jsFunction:
html parameter:
<div style="position:relative;width:100%;height:300px">
<canvas id="myChart"></canvas>
</div>
jsFunctions parameter:
async function renderRevenueChart() {
const { default: Chart } = await import('chart.js/auto');
const isDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const textColor = isDark ? '#c2c0b6' : '#3d3d3a';
const gridColor = isDark ? 'rgba(255,255,255,0.08)' : 'rgba(0,0,0,0.06)';
new Chart(document.getElementById('myChart'), {
type: 'line',
data: {
labels: ['Jan', 'Feb', 'Mar', 'Apr'],
datasets: [{
label: 'Revenue',
data: [30, 45, 28, 62],
borderColor: '#534AB7',
backgroundColor: 'rgba(83,74,183,0.1)',
fill: true,
tension: 0.3
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: { labels: { color: textColor } }
},
scales: {
x: { ticks: { color: textColor }, grid: { color: gridColor } },
y: { ticks: { color: textColor }, grid: { color: gridColor } }
}
}
});
}
jsExpressions parameter:
renderRevenueChart();
For relationship diagrams (ERDs, class diagrams, sequence diagrams) where precise layout math isn't worth doing by hand.
Mermaid is not in the importmap — load it by URL in a module script placed in the html parameter (CDN script tags still work there):
<div id="diagram"></div>
<script type="module">
import mermaid from 'https://esm.sh/mermaid@11/dist/mermaid.esm.min.mjs';
const dark = matchMedia('(prefers-color-scheme: dark)').matches;
mermaid.initialize({
startOnLoad: false,
theme: 'base',
themeVariables: {
darkMode: dark,
fontSize: '13px',
lineColor: dark ? '#9c9a92' : '#73726c',
textColor: dark ? '#c2c0b6' : '#3d3d3a',
},
});
const { svg } = await mermaid.render('d', `
erDiagram
USERS ||--o{ POSTS : writes
POSTS ||--o{ COMMENTS : has
`);
document.getElementById('diagram').innerHTML = svg;
</script>
Use Mermaid for: ERDs, class diagrams, sequence diagrams, Gantt charts. Use hand-drawn SVG for: everything else (flowcharts, architecture, illustrative diagrams) — you get much better control.
The Walk-Through: Point at parts of the visual and explain them.
"Starting at the top, the roof deck collects distributed loads across its surface. These get channeled into the rafters below, which act like one-way bridges..."
The "Why It Matters": Connect the visual to real consequences.
"This is why lower columns are always larger — they're carrying the accumulated weight of every floor above."
The "Common Mistake": Anticipate misconceptions.
"One thing that trips people up: removing a single column doesn't just lose that member — it breaks the entire load chain."
The "Go Deeper" Offer: End with expansion paths.
"Want me to show how lateral loads (wind, seismic) take a completely different path?"
Not everything needs a diagram. Skip visuals when:
If the user would likely screenshot or save the visual to reference later, it was worth making. If not, just use text.
[1-2 sentence hook validating the question]
[Visual: SVG diagram or interactive widget]
[Walk-through narration: 3-4 paragraphs explaining the visual,
pointing at specific parts, noting key insights]
[One "go deeper" offer with 2-3 specific directions]
[Direct answer in 1-2 sentences]
[Small supporting visual if it adds value]
[One additional insight or context sentence]
| Concept Type | Best Format |
|---|---|
| How X works (physical) | Illustrative SVG diagram |
| How X works (abstract) | Interactive HTML + SVG |
| Process / workflow | SVG flowchart |
| Architecture | SVG structural diagram |
| Data relationships | Mermaid ERD |
| Trends / comparisons | Chart.js or SVG bar chart |
| Cyclic process | HTML step-through widget |
| System states | Interactive widget + toggles |
| Quick answer | Plain text |
| Code solution | Code block / artifact |
| Emotional support | Warm text only |