feat: add studio-workbench concept
This commit is contained in:
27
concepts/studio-workbench/README.md
Normal file
27
concepts/studio-workbench/README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# Version B: Studio Workbench
|
||||
|
||||
Direction: `Castmagic x content ops studio`
|
||||
|
||||
This version optimizes for teams that want to turn one material source into many structured outputs.
|
||||
|
||||
## Product thesis
|
||||
|
||||
- Users should feel they are operating a content studio, not just a summarizer.
|
||||
- Material ingestion is one panel inside a broader production system.
|
||||
- Knowledge bases, assistants, and output assets should be visible at once.
|
||||
- This is stronger for repeatable workflows and team collaboration.
|
||||
|
||||
## Key decisions
|
||||
|
||||
- `Production` becomes the emotional center of the app.
|
||||
- The screen is split into material, assistant, and output zones.
|
||||
- The user can see which knowledge bases feed which assistant.
|
||||
- One source material can drive multiple output formats immediately.
|
||||
- This layout is heavier, but it better communicates long-term business value.
|
||||
|
||||
## When this version is best
|
||||
|
||||
- Small content teams
|
||||
- Agencies managing multiple client voices
|
||||
- Users who need assistant governance and model routing
|
||||
- Teams that value throughput over the fastest first-use experience
|
||||
426
concepts/studio-workbench/index.html
Normal file
426
concepts/studio-workbench/index.html
Normal file
@@ -0,0 +1,426 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>StoryForge Version B</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0e1416;
|
||||
--panel: #121b1e;
|
||||
--panel-soft: #162226;
|
||||
--panel-bright: #1a282d;
|
||||
--ink: #edf3ef;
|
||||
--muted: #9db1a8;
|
||||
--teal: #66c2a5;
|
||||
--amber: #f2a65a;
|
||||
--coral: #ff7a59;
|
||||
--line: rgba(202, 224, 215, 0.1);
|
||||
--shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
|
||||
--radius-xl: 32px;
|
||||
--radius-lg: 22px;
|
||||
--radius-md: 16px;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; }
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
|
||||
color: var(--ink);
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(102,194,165,0.18), transparent 28%),
|
||||
radial-gradient(circle at 88% 14%, rgba(255,122,89,0.16), transparent 24%),
|
||||
linear-gradient(180deg, #0d1214 0%, #10181b 100%);
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 26px;
|
||||
}
|
||||
|
||||
.frame {
|
||||
width: 1440px;
|
||||
min-height: 900px;
|
||||
border-radius: 34px;
|
||||
background: rgba(16, 23, 25, 0.95);
|
||||
border: 1px solid rgba(199, 225, 215, 0.08);
|
||||
box-shadow: var(--shadow);
|
||||
display: grid;
|
||||
grid-template-columns: 250px 1fr;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background: linear-gradient(180deg, #0f181b, #111b1f);
|
||||
border-right: 1px solid var(--line);
|
||||
padding: 26px 18px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.brand {
|
||||
padding: 12px 14px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.brand small {
|
||||
display: block;
|
||||
color: var(--muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
font-size: 11px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.brand strong {
|
||||
font-size: 24px;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
|
||||
.nav {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
padding: 14px 16px;
|
||||
border-radius: 18px;
|
||||
color: var(--muted);
|
||||
border: 1px solid transparent;
|
||||
background: transparent;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.nav-item.active {
|
||||
color: #0d1416;
|
||||
background: linear-gradient(180deg, #79d1b6, #56b394);
|
||||
}
|
||||
|
||||
.nav-item.alert {
|
||||
border-color: rgba(255,122,89,0.22);
|
||||
background: rgba(255,122,89,0.08);
|
||||
color: #ffd5cb;
|
||||
}
|
||||
|
||||
.sidebar-footer {
|
||||
margin-top: auto;
|
||||
padding: 16px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid var(--line);
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 24px;
|
||||
display: grid;
|
||||
grid-template-rows: auto auto 1fr;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.topbar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.headline h1 {
|
||||
margin: 0;
|
||||
font-size: 34px;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
|
||||
.headline p {
|
||||
margin: 8px 0 0;
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.top-actions {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 14px 18px;
|
||||
border-radius: 16px;
|
||||
border: 1px solid var(--line);
|
||||
background: var(--panel-soft);
|
||||
color: var(--ink);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.button.primary {
|
||||
background: linear-gradient(180deg, #f7b36a, #ee9143);
|
||||
color: #27140b;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.stat {
|
||||
padding: 16px 18px;
|
||||
border-radius: 20px;
|
||||
background: var(--panel);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.stat span {
|
||||
display: block;
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.stat strong {
|
||||
font-size: 30px;
|
||||
letter-spacing: -0.05em;
|
||||
}
|
||||
|
||||
.workspace {
|
||||
display: grid;
|
||||
grid-template-columns: 1.15fr 0.95fr 1.1fr;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: linear-gradient(180deg, rgba(22,34,38,0.96), rgba(17,27,30,0.98));
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 26px;
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
.card h2 {
|
||||
margin: 0 0 6px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.card p {
|
||||
margin: 0 0 14px;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.composer {
|
||||
border-radius: 18px;
|
||||
border: 1px solid var(--line);
|
||||
background: rgba(255,255,255,0.03);
|
||||
min-height: 118px;
|
||||
padding: 16px;
|
||||
color: var(--muted);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.option-grid {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
|
||||
.option {
|
||||
padding: 14px;
|
||||
border-radius: 18px;
|
||||
border: 1px solid var(--line);
|
||||
background: rgba(255,255,255,0.03);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.option small, .asset small {
|
||||
display: block;
|
||||
color: var(--muted);
|
||||
margin-top: 4px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.pill {
|
||||
padding: 7px 11px;
|
||||
border-radius: 999px;
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.pill.teal { background: rgba(102,194,165,0.15); color: #9be4ce; }
|
||||
.pill.amber { background: rgba(242,166,90,0.15); color: #ffd6a7; }
|
||||
.pill.coral { background: rgba(255,122,89,0.14); color: #ffc6b6; }
|
||||
|
||||
.pipeline {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.stage {
|
||||
padding: 14px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255,255,255,0.03);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.stage strong {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.asset-grid {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.asset {
|
||||
border-radius: 20px;
|
||||
padding: 16px;
|
||||
background: linear-gradient(180deg, rgba(26,40,45,0.96), rgba(20,31,35,0.96));
|
||||
border: 1px solid rgba(200, 225, 216, 0.08);
|
||||
}
|
||||
|
||||
.asset strong {
|
||||
display: block;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.asset .meta {
|
||||
margin-top: 10px;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main class="frame">
|
||||
<aside class="sidebar">
|
||||
<div class="brand">
|
||||
<small>StoryForge</small>
|
||||
<strong>Studio Workbench</strong>
|
||||
</div>
|
||||
<div class="nav">
|
||||
<div class="nav-item">Explore</div>
|
||||
<div class="nav-item active">Production</div>
|
||||
<div class="nav-item">Knowledge</div>
|
||||
<div class="nav-item">Assistants</div>
|
||||
<div class="nav-item">Models</div>
|
||||
<div class="nav-item alert">3 accounts pending</div>
|
||||
</div>
|
||||
<div class="sidebar-footer">
|
||||
Best for a team that wants traceable content operations: one material source, many assistant outputs, one clear knowledge map.
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<section class="content">
|
||||
<header class="topbar">
|
||||
<div class="headline">
|
||||
<h1>Run your copywriting system like a studio.</h1>
|
||||
<p>Ingest material, route it through the right knowledge bases, and send different assistants to generate platform-specific outputs.</p>
|
||||
</div>
|
||||
<div class="top-actions">
|
||||
<button class="button">Add material</button>
|
||||
<button class="button primary">Generate outputs</button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="stats">
|
||||
<div class="stat"><span>Materials this week</span><strong>42</strong></div>
|
||||
<div class="stat"><span>Knowledge bases</span><strong>9</strong></div>
|
||||
<div class="stat"><span>Active assistants</span><strong>6</strong></div>
|
||||
<div class="stat"><span>Reusable outputs</span><strong>128</strong></div>
|
||||
</section>
|
||||
|
||||
<section class="workspace">
|
||||
<article class="card">
|
||||
<h2>Material intake</h2>
|
||||
<p>Every source enters here first. Links, files, and text all converge into a transcript-centered asset.</p>
|
||||
<div class="composer">Paste a Douyin or YouTube link here.
|
||||
|
||||
Knowledge target: Founder Hooks + Proof Framing
|
||||
Assistant route: AI Startup Scriptwriter + Sales CTA Finisher
|
||||
Analysis model: Local GLM-5</div>
|
||||
<div class="option-grid">
|
||||
<div class="option">
|
||||
<div>
|
||||
<strong>VC founder talking-head sample</strong>
|
||||
<small>12m · transcript ready · hook density 8.9/10</small>
|
||||
</div>
|
||||
<span class="pill teal">Linked</span>
|
||||
</div>
|
||||
<div class="option">
|
||||
<div>
|
||||
<strong>High-conversion CTA collection</strong>
|
||||
<small>text note · 38 CTA endings extracted</small>
|
||||
</div>
|
||||
<span class="pill amber">Text</span>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<article class="card">
|
||||
<h2>Knowledge routing</h2>
|
||||
<p>Make the knowledge graph visible. Users should always know which assistant can read which material pool.</p>
|
||||
<div class="pipeline">
|
||||
<div class="stage">
|
||||
<strong>1. Transcript clean-up</strong>
|
||||
Remove filler, split hooks, isolate claims, normalize CTA language.
|
||||
</div>
|
||||
<div class="stage">
|
||||
<strong>2. Style abstraction</strong>
|
||||
Extract rhythm, sentence energy, authority level, objection handling patterns.
|
||||
</div>
|
||||
<div class="stage">
|
||||
<strong>3. Knowledge base sync</strong>
|
||||
Founder Hooks, Sales Emotion, Short CTA, Proof Framing.
|
||||
</div>
|
||||
<div class="stage">
|
||||
<strong>4. Assistant generation</strong>
|
||||
Bind one or more KBs, assign model, generate title/script/variant bundle.
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<article class="card">
|
||||
<h2>Output assets</h2>
|
||||
<p>One material source should fan out into multiple reusable content assets immediately.</p>
|
||||
<div class="asset-grid">
|
||||
<div class="asset">
|
||||
<strong>AI Startup Scriptwriter</strong>
|
||||
<small>Bound to Founder Hooks + Proof Framing · Model: Local GLM-5</small>
|
||||
<div class="meta">
|
||||
<span class="pill coral">60s oral script</span>
|
||||
<span class="pill teal">3 title variants</span>
|
||||
<span class="pill amber">Closing CTA</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="asset">
|
||||
<strong>Emotion-driven Sales Closer</strong>
|
||||
<small>Bound to Sales Emotion + Short CTA · Model: Gemini via local proxy</small>
|
||||
<div class="meta">
|
||||
<span class="pill amber">Private-domain follow-up</span>
|
||||
<span class="pill coral">Urgency rewrite</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="asset">
|
||||
<strong>Authority-led Brand Explainer</strong>
|
||||
<small>Bound to Proof Framing only · Safer for educational content</small>
|
||||
<div class="meta">
|
||||
<span class="pill teal">Long caption</span>
|
||||
<span class="pill amber">Carousel outline</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user