Compare commits
1 Commits
codex/n8n-
...
codex/vers
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a2b9649cba |
26
concepts/explore-first/README.md
Normal file
26
concepts/explore-first/README.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# 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
|
||||
387
concepts/explore-first/index.html
Normal file
387
concepts/explore-first/index.html
Normal file
@@ -0,0 +1,387 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user