Compare commits
1 Commits
codex/vers
...
codex/vers
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d2074c3518 |
@@ -1,26 +0,0 @@
|
||||
# Version A: Explore First
|
||||
|
||||
Direction: `BibiGPT x mobile creator app`
|
||||
|
||||
This version optimizes for the fastest path from raw material to reusable knowledge.
|
||||
|
||||
## Product thesis
|
||||
|
||||
- User intent starts with a single material input, not assistant configuration.
|
||||
- The app should feel like `paste link -> learn style -> save to knowledge base`.
|
||||
- Assistant creation is still present, but secondary.
|
||||
|
||||
## Key decisions
|
||||
|
||||
- `Explore` is the hero tab and the default opening screen.
|
||||
- Three inputs are elevated equally: video link, upload video, paste text.
|
||||
- The main feedback loop is a clean processing timeline instead of a complex dashboard.
|
||||
- Knowledge bases are shown as lightweight chips so the user can move fast.
|
||||
- Generated assistant suggestions appear after learning is complete.
|
||||
|
||||
## When this version is best
|
||||
|
||||
- Solo creators
|
||||
- Fast content collection
|
||||
- Teams that want low onboarding cost
|
||||
- Users who are not technical and do not want to think in workflows
|
||||
@@ -1,387 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>StoryForge Version A</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg: #f4efe6;
|
||||
--panel: rgba(255,255,255,0.82);
|
||||
--ink: #1f1c17;
|
||||
--muted: #6e6558;
|
||||
--accent: #e26d3d;
|
||||
--accent-soft: #ffd8c9;
|
||||
--line: rgba(56, 40, 24, 0.12);
|
||||
--shadow: 0 22px 60px rgba(72, 44, 23, 0.16);
|
||||
--radius-xl: 30px;
|
||||
--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(236,128,78,0.24), transparent 32%),
|
||||
radial-gradient(circle at 85% 18%, rgba(121,154,120,0.2), transparent 26%),
|
||||
linear-gradient(180deg, #f7f0e8 0%, #efe6da 100%);
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 28px;
|
||||
}
|
||||
|
||||
.phone {
|
||||
width: 390px;
|
||||
min-height: 844px;
|
||||
background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,250,245,0.94));
|
||||
border: 1px solid rgba(80,52,28,0.1);
|
||||
border-radius: 38px;
|
||||
box-shadow: var(--shadow);
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: 26px 24px 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hero::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: -24px;
|
||||
top: -34px;
|
||||
width: 168px;
|
||||
height: 168px;
|
||||
background: radial-gradient(circle, rgba(226,109,61,0.24), transparent 66%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.eyebrow {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 12px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255,255,255,0.74);
|
||||
border: 1px solid rgba(91,58,36,0.08);
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
letter-spacing: 0.04em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 16px 0 10px;
|
||||
font-size: 34px;
|
||||
line-height: 1.02;
|
||||
letter-spacing: -0.04em;
|
||||
}
|
||||
|
||||
.sub {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.panel {
|
||||
background: var(--panel);
|
||||
border: 1px solid var(--line);
|
||||
border-radius: var(--radius-xl);
|
||||
margin: 0 18px 16px;
|
||||
padding: 18px;
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.modes {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 10px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.mode {
|
||||
padding: 12px 10px;
|
||||
border-radius: 18px;
|
||||
border: 1px solid var(--line);
|
||||
font-size: 12px;
|
||||
text-align: center;
|
||||
color: var(--muted);
|
||||
background: rgba(255,255,255,0.62);
|
||||
}
|
||||
|
||||
.mode.active {
|
||||
background: linear-gradient(180deg, #fff0e8, #ffd8c9);
|
||||
color: #4f2818;
|
||||
border-color: rgba(226,109,61,0.28);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.input {
|
||||
border-radius: 20px;
|
||||
border: 1px solid var(--line);
|
||||
background: #fffdf9;
|
||||
padding: 16px;
|
||||
min-height: 104px;
|
||||
color: var(--muted);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.cta-row {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
|
||||
.button {
|
||||
flex: 1;
|
||||
border: 0;
|
||||
border-radius: 18px;
|
||||
padding: 14px 16px;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.button.primary {
|
||||
background: linear-gradient(180deg, #ea7d4f, #d85d2e);
|
||||
color: white;
|
||||
box-shadow: 0 16px 28px rgba(205, 94, 44, 0.28);
|
||||
}
|
||||
|
||||
.button.secondary {
|
||||
background: rgba(255,255,255,0.75);
|
||||
color: var(--ink);
|
||||
border: 1px solid var(--line);
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 14px;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.mini {
|
||||
font-size: 12px;
|
||||
color: var(--muted);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.job {
|
||||
border-radius: 22px;
|
||||
padding: 14px;
|
||||
background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(252,246,238,0.88));
|
||||
border: 1px solid rgba(85,56,34,0.08);
|
||||
}
|
||||
|
||||
.job-top, .assistant-top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.job-title {
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.badge {
|
||||
padding: 6px 10px;
|
||||
border-radius: 999px;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
background: var(--accent-soft);
|
||||
color: #7a381d;
|
||||
}
|
||||
|
||||
.steps {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.step {
|
||||
padding: 7px 10px;
|
||||
border-radius: 12px;
|
||||
background: rgba(248,239,230,0.95);
|
||||
color: #66594d;
|
||||
font-size: 11px;
|
||||
border: 1px solid rgba(95,69,42,0.08);
|
||||
}
|
||||
|
||||
.chips {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.chip {
|
||||
padding: 8px 12px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255,255,255,0.7);
|
||||
border: 1px solid var(--line);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.assistants {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.assistant {
|
||||
border-radius: 24px;
|
||||
padding: 16px;
|
||||
background: linear-gradient(135deg, rgba(255,247,239,0.92), rgba(244,255,246,0.9));
|
||||
border: 1px solid rgba(86,70,41,0.08);
|
||||
}
|
||||
|
||||
.assistant h3 {
|
||||
margin: 0;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.assistant p {
|
||||
margin: 8px 0 0;
|
||||
font-size: 13px;
|
||||
color: var(--muted);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.tabbar {
|
||||
position: absolute;
|
||||
left: 18px;
|
||||
right: 18px;
|
||||
bottom: 18px;
|
||||
border-radius: 24px;
|
||||
background: rgba(30, 24, 18, 0.92);
|
||||
color: rgba(255,255,255,0.58);
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
padding: 10px;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
text-align: center;
|
||||
padding: 12px 8px;
|
||||
border-radius: 16px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.tab.active {
|
||||
background: linear-gradient(180deg, rgba(233,123,73,0.95), rgba(204,85,39,0.95));
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main class="phone">
|
||||
<section class="hero">
|
||||
<div class="eyebrow">StoryForge · Explore First</div>
|
||||
<h1>Paste a video. Learn a voice. Build a style library.</h1>
|
||||
<p class="sub">A mobile-first flow for collecting creator material, turning it into text, and dropping the refined style signal into private knowledge bases.</p>
|
||||
</section>
|
||||
|
||||
<section class="panel">
|
||||
<div class="modes">
|
||||
<div class="mode active">Video Link</div>
|
||||
<div class="mode">Upload Video</div>
|
||||
<div class="mode">Paste Text</div>
|
||||
</div>
|
||||
<div class="input">https://www.douyin.com/video/creator-style-01
|
||||
|
||||
Target KB: Founder Hooks
|
||||
Assistant: AI Startup Scriptwriter
|
||||
Analysis model: Local GLM-5</div>
|
||||
<div class="cta-row">
|
||||
<button class="button primary">Start learning</button>
|
||||
<button class="button secondary">Save draft</button>
|
||||
</div>
|
||||
<div class="chips">
|
||||
<div class="chip">Founder Hooks</div>
|
||||
<div class="chip">Sales Emotion</div>
|
||||
<div class="chip">Short CTA</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="panel">
|
||||
<div class="section-title">
|
||||
<span>Processing timeline</span>
|
||||
<span class="mini">2 active jobs</span>
|
||||
</div>
|
||||
<div class="timeline">
|
||||
<div class="job">
|
||||
<div class="job-top">
|
||||
<div class="job-title">AI startup founder talking-head sample</div>
|
||||
<div class="badge">Analyzing</div>
|
||||
</div>
|
||||
<div class="steps">
|
||||
<div class="step">Downloaded</div>
|
||||
<div class="step">Audio extracted</div>
|
||||
<div class="step">ASR complete</div>
|
||||
<div class="step">Style patterns</div>
|
||||
<div class="step">KB sync next</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="job">
|
||||
<div class="job-top">
|
||||
<div class="job-title">Closing CTA collection</div>
|
||||
<div class="badge">Saved</div>
|
||||
</div>
|
||||
<div class="steps">
|
||||
<div class="step">22 hooks found</div>
|
||||
<div class="step">3 tone labels</div>
|
||||
<div class="step">Knowledge base updated</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="panel" style="margin-bottom: 112px;">
|
||||
<div class="section-title">
|
||||
<span>Suggested assistants</span>
|
||||
<span class="mini">Generated from your latest material</span>
|
||||
</div>
|
||||
<div class="assistants">
|
||||
<div class="assistant">
|
||||
<div class="assistant-top">
|
||||
<h3>AI Startup Scriptwriter</h3>
|
||||
<div class="badge">1 KB</div>
|
||||
</div>
|
||||
<p>Sharp hook in the first sentence, short explanatory middle, strong “do this now” ending. Built from founder-style narration.</p>
|
||||
</div>
|
||||
<div class="assistant">
|
||||
<div class="assistant-top">
|
||||
<h3>Emotion-driven Sales Closer</h3>
|
||||
<div class="badge">2 KBs</div>
|
||||
</div>
|
||||
<p>More intimate and persuasive. Best for conversion-driven scripts, private-domain follow-up, and urgency messaging.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<nav class="tabbar">
|
||||
<div class="tab active">Explore</div>
|
||||
<div class="tab">Production</div>
|
||||
<div class="tab">Mine</div>
|
||||
</nav>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
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