118 lines
2.9 KiB
HTML
118 lines
2.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Google Slides Workflow - Slide Factory</title>
|
|
<style>
|
|
:root {
|
|
color: #172033;
|
|
background: #f4f6fa;
|
|
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 24px;
|
|
}
|
|
|
|
main {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
a {
|
|
color: #172033;
|
|
font-weight: 750;
|
|
}
|
|
|
|
.eyebrow {
|
|
margin: 0 0 4px;
|
|
color: #f05a28;
|
|
font-size: 12px;
|
|
font-weight: 800;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0 0 18px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
h2 {
|
|
margin: 28px 0 10px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
p,
|
|
li {
|
|
line-height: 1.55;
|
|
}
|
|
|
|
code,
|
|
pre {
|
|
font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
|
|
}
|
|
|
|
pre {
|
|
overflow-x: auto;
|
|
padding: 14px;
|
|
border: 1px solid #d8dee9;
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
}
|
|
|
|
.back {
|
|
display: inline-flex;
|
|
margin-bottom: 18px;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<a class="back" href="/">Back to Slide Factory</a>
|
|
<p class="eyebrow">Merged prior work</p>
|
|
<h1>Google Slides Workflow</h1>
|
|
|
|
<p>
|
|
Slide Factory now supersedes the older AgentPlane Google Slides project
|
|
as the active slide-generation product. The reusable Google Slides work
|
|
remains the brand-safe renderer pattern for future native Slides output.
|
|
</p>
|
|
|
|
<h2>Brand-Safe Flow</h2>
|
|
<ol>
|
|
<li>Copy the template deck.</li>
|
|
<li>Generate a template inventory.</li>
|
|
<li>Choose slides by native container pattern.</li>
|
|
<li>Fill existing text containers by object ID.</li>
|
|
<li>Delete unused template slides.</li>
|
|
<li>Render thumbnails and a contact sheet for visual QA.</li>
|
|
</ol>
|
|
|
|
<h2>Contract</h2>
|
|
<p>
|
|
The current PPTX-oriented DeckSpec should be adapted into the
|
|
container-oriented Google Slides schema before mutating a copied
|
|
template.
|
|
</p>
|
|
<pre>schemas/google-slides-deck-spec.schema.json</pre>
|
|
|
|
<h2>Local Prior Art</h2>
|
|
<pre>/Users/tars/AgentPlane/projects/google-slides
|
|
/Users/tars/.codex/skills/google-slides/scripts/</pre>
|
|
|
|
<h2>Handoff Evidence</h2>
|
|
<p>
|
|
Native Slides output should return the deck title, presentation ID, edit
|
|
URL, source template, target folder, contact sheet path, brand-safe
|
|
status, and any overflow or weak-template-match risks.
|
|
</p>
|
|
</main>
|
|
</body>
|
|
</html>
|