674 lines
20 KiB
HTML
674 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='zh-CN'>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<meta name='viewport' content='width=device-width, initial-scale=1' />
|
|
<title>Open Design — 在温暖纸张上设计智能。</title>
|
|
<meta name='description' content='Open Design 以 kami 单页风格呈现。温暖羊皮纸底色,墨蓝强调色,单一字重的衬线体,无斜体,无冷灰色。' />
|
|
<link rel='preconnect' href='https://fonts.googleapis.com' />
|
|
<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
|
|
<link href='https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@400;500&family=Source+Sans+3:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap' rel='stylesheet' />
|
|
<style>
|
|
/*
|
|
* kami (紙 / 纸) — canonical one-pager stylesheet.
|
|
*
|
|
* SINGLE SOURCE OF TRUTH for the kami-landing skill's visual system.
|
|
* Tokens, type rules, and the "ten invariants" are defined by
|
|
* design-systems/kami/DESIGN.md. Do not invent new tokens here;
|
|
* extend the design system first.
|
|
*
|
|
* Typeface choice: Source Serif 4 (Charter family) is the EN default
|
|
* because Charter itself is not Google-hosted. The fallback chain
|
|
* resolves to Charter on macOS and to Georgia / Palatino elsewhere.
|
|
*/
|
|
|
|
:root {
|
|
/* ----- Surface ----- */
|
|
--parchment: #f5f4ed;
|
|
--ivory: #faf9f5;
|
|
--warm-sand: #e8e6dc;
|
|
|
|
/* ----- Brand (single chromatic accent) ----- */
|
|
--brand: #1B365D;
|
|
--brand-light: #2D5A8A;
|
|
|
|
/* ----- Text (four levels — no fifth) ----- */
|
|
--near-black: #141413;
|
|
--dark-warm: #3d3d3a;
|
|
--olive: #504e49;
|
|
--stone: #6b6a64;
|
|
|
|
/* ----- Border ----- */
|
|
--border: #e8e6dc;
|
|
--border-soft: #e5e3d8;
|
|
|
|
/* ----- Tag tints (solid hex, NEVER rgba) ----- */
|
|
--tag-08: #EEF2F7;
|
|
--tag-14: #E4ECF5;
|
|
--tag-22: #D0DCE9;
|
|
--tag-30: #D6E1EE;
|
|
|
|
/* ----- Type stacks ----- */
|
|
--serif: 'Source Serif 4', Charter, Georgia, Palatino, 'Times New Roman', serif;
|
|
--sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
--mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', Consolas, Monaco, monospace;
|
|
|
|
/* ----- Motion ----- */
|
|
--whisper: 0 4px 24px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
html, body { background: var(--parchment); color: var(--near-black); }
|
|
body {
|
|
font-family: var(--serif);
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 1.55;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-feature-settings: 'liga', 'calt';
|
|
}
|
|
strong { font-weight: 500; }
|
|
img { max-width: 100%; display: block; }
|
|
a { color: var(--brand); text-decoration: none; border-bottom: 1px solid currentColor; }
|
|
a:hover { color: var(--brand-light); }
|
|
|
|
.shell {
|
|
max-width: 1120px;
|
|
margin: 0 auto;
|
|
padding: 88px 64px 120px;
|
|
position: relative;
|
|
}
|
|
|
|
/* ---------- eyebrow strip (top meta) ---------- */
|
|
.eyebrow-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-family: var(--sans);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 1.2px;
|
|
text-transform: uppercase;
|
|
color: var(--stone);
|
|
border-bottom: 1px solid var(--border);
|
|
padding-bottom: 18px;
|
|
margin-bottom: 88px;
|
|
}
|
|
.eyebrow-row .lang {
|
|
display: inline-flex;
|
|
gap: 16px;
|
|
}
|
|
.eyebrow-row .lang a {
|
|
color: var(--stone);
|
|
border-bottom: none;
|
|
}
|
|
.eyebrow-row .lang a.active { color: var(--brand); }
|
|
.eyebrow-row .meta {
|
|
display: inline-flex;
|
|
gap: 22px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.eyebrow-row .meta b { color: var(--near-black); font-weight: 500; }
|
|
|
|
/* ---------- hero ---------- */
|
|
.hero {
|
|
display: grid;
|
|
grid-template-columns: 1.45fr 0.55fr;
|
|
gap: 64px;
|
|
align-items: end;
|
|
margin-bottom: 96px;
|
|
}
|
|
.hero-copy h1 {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: clamp(60px, 7.4vw, 106px);
|
|
line-height: 1.05;
|
|
letter-spacing: -1.2px;
|
|
color: var(--near-black);
|
|
margin-bottom: 28px;
|
|
}
|
|
.hero-copy h1 .ink { color: var(--brand); }
|
|
.hero-copy .tagline {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 21px;
|
|
line-height: 1.45;
|
|
color: var(--olive);
|
|
max-width: 38ch;
|
|
}
|
|
.hero-tokens {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
align-items: flex-end;
|
|
font-family: var(--mono);
|
|
font-size: 11px;
|
|
letter-spacing: 0.4px;
|
|
color: var(--stone);
|
|
text-transform: uppercase;
|
|
}
|
|
.hero-tokens .row {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
background: var(--ivory);
|
|
border: 1px solid var(--border);
|
|
border-radius: 6px;
|
|
padding: 10px 14px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.hero-tokens .row b {
|
|
color: var(--brand);
|
|
font-weight: 500;
|
|
font-family: var(--serif);
|
|
font-size: 14px;
|
|
}
|
|
.hero-tokens .row span { font-family: var(--sans); }
|
|
|
|
/* ---------- manifesto (pull paragraph + signature) ---------- */
|
|
.manifesto {
|
|
border-top: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 44px 0 40px;
|
|
margin-bottom: 88px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1.85fr;
|
|
gap: 56px;
|
|
align-items: start;
|
|
}
|
|
.manifesto .label {
|
|
font-family: var(--sans);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 1.2px;
|
|
text-transform: uppercase;
|
|
color: var(--stone);
|
|
}
|
|
.manifesto .body {
|
|
font-family: var(--serif);
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 1.65;
|
|
letter-spacing: 0.05em;
|
|
color: var(--olive);
|
|
border-left: 2px solid var(--brand);
|
|
padding: 4px 0 4px 24px;
|
|
}
|
|
.manifesto .body strong { color: var(--near-black); font-weight: 500; }
|
|
.manifesto .signature {
|
|
margin-top: 22px;
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
color: var(--dark-warm);
|
|
display: inline-flex;
|
|
gap: 10px;
|
|
align-items: baseline;
|
|
}
|
|
.manifesto .signature span { color: var(--stone); }
|
|
|
|
/* ---------- metrics row ---------- */
|
|
.metrics {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 0;
|
|
border-top: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
margin-bottom: 88px;
|
|
}
|
|
.metric {
|
|
padding: 28px 22px 26px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
border-right: 1px solid var(--border-soft);
|
|
}
|
|
.metric:last-child { border-right: 0; }
|
|
.metric .value {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 36px;
|
|
line-height: 1;
|
|
color: var(--brand);
|
|
font-variant-numeric: tabular-nums;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
.metric .label {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 13px;
|
|
color: var(--near-black);
|
|
margin-top: 8px;
|
|
}
|
|
.metric .sub {
|
|
font-family: var(--serif);
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
color: var(--olive);
|
|
line-height: 1.5;
|
|
max-width: 28ch;
|
|
}
|
|
|
|
/* ---------- chapters ---------- */
|
|
.chapters {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 72px;
|
|
margin-bottom: 96px;
|
|
}
|
|
.chapter {
|
|
display: grid;
|
|
grid-template-columns: 1fr 2.6fr;
|
|
gap: 56px;
|
|
align-items: start;
|
|
}
|
|
.chapter .head { display: flex; flex-direction: column; gap: 14px; }
|
|
.chapter .num {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
color: var(--brand);
|
|
letter-spacing: 0.4px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.chapter .title {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 28px;
|
|
line-height: 1.2;
|
|
color: var(--near-black);
|
|
letter-spacing: 0.4px;
|
|
}
|
|
.chapter .lede {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
color: var(--olive);
|
|
line-height: 1.5;
|
|
max-width: 30ch;
|
|
}
|
|
.chapter .body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
.chapter .body p {
|
|
font-family: var(--serif);
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: var(--dark-warm);
|
|
line-height: 1.55;
|
|
max-width: 62ch;
|
|
}
|
|
.chapter .body p strong { color: var(--near-black); font-weight: 500; }
|
|
.chapter .body code {
|
|
font-family: var(--mono);
|
|
font-size: 12.5px;
|
|
color: var(--brand);
|
|
background: var(--tag-08);
|
|
padding: 1px 6px;
|
|
border-radius: 3px;
|
|
}
|
|
.chapter ul.dash {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 4px 0 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
.chapter ul.dash li {
|
|
position: relative;
|
|
padding-left: 16px;
|
|
font-family: var(--serif);
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
color: var(--dark-warm);
|
|
line-height: 1.55;
|
|
}
|
|
.chapter ul.dash li::before {
|
|
content: '\2013';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--brand);
|
|
}
|
|
|
|
/* ---------- chapter aside (pull-out card) ---------- */
|
|
.chapter-aside {
|
|
background: var(--ivory);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 22px 22px 20px;
|
|
margin-top: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.chapter-aside:hover { box-shadow: var(--whisper); }
|
|
.chapter-aside .a-label {
|
|
font-family: var(--sans);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.4px;
|
|
text-transform: uppercase;
|
|
color: var(--stone);
|
|
}
|
|
.chapter-aside .a-body {
|
|
font-family: var(--mono);
|
|
font-size: 12px;
|
|
color: var(--near-black);
|
|
white-space: pre;
|
|
overflow-x: auto;
|
|
background: var(--parchment);
|
|
border: 1px solid var(--border-soft);
|
|
border-radius: 6px;
|
|
padding: 12px 14px;
|
|
line-height: 1.65;
|
|
}
|
|
.chapter-aside .a-body .k { color: var(--brand); }
|
|
.chapter-aside .a-body .c { color: var(--stone); }
|
|
|
|
/* ---------- tag system ---------- */
|
|
.tag {
|
|
display: inline-block;
|
|
font-family: var(--sans);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 2px 7px;
|
|
border-radius: 2px;
|
|
color: var(--brand);
|
|
background: var(--tag-08);
|
|
letter-spacing: 0.4px;
|
|
}
|
|
.tag.standard { background: var(--tag-14); padding: 2px 8px; border-radius: 4px; }
|
|
.tag.brush {
|
|
background: linear-gradient(to right, #D6E1EE, #E4ECF5 70%, #EEF2F7);
|
|
}
|
|
.tag-row { display: inline-flex; gap: 8px; flex-wrap: wrap; align-items: center; }
|
|
|
|
/* ---------- footer ---------- */
|
|
.footer {
|
|
border-top: 1px solid var(--border);
|
|
padding-top: 56px;
|
|
display: grid;
|
|
grid-template-columns: 1.4fr 0.85fr 0.85fr 0.9fr;
|
|
gap: 48px;
|
|
align-items: start;
|
|
}
|
|
.footer .kicker {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 56px;
|
|
line-height: 1.05;
|
|
letter-spacing: -0.6px;
|
|
color: var(--near-black);
|
|
margin-bottom: 14px;
|
|
}
|
|
.footer .kicker .ink { color: var(--brand); }
|
|
.footer .colophon {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 13px;
|
|
color: var(--olive);
|
|
max-width: 32ch;
|
|
line-height: 1.55;
|
|
}
|
|
.footer .col h4 {
|
|
font-family: var(--sans);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 1.2px;
|
|
text-transform: uppercase;
|
|
color: var(--stone);
|
|
margin-bottom: 16px;
|
|
}
|
|
.footer .col ul { list-style: none; padding: 0; margin: 0; }
|
|
.footer .col li {
|
|
font-family: var(--serif);
|
|
font-weight: 500;
|
|
font-size: 13px;
|
|
color: var(--dark-warm);
|
|
margin-bottom: 8px;
|
|
}
|
|
.footer .col li a { color: var(--dark-warm); border-bottom: none; }
|
|
.footer .col li a:hover { color: var(--brand); }
|
|
.footer .col li small {
|
|
display: block;
|
|
font-family: var(--sans);
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--stone);
|
|
letter-spacing: 0.4px;
|
|
margin-top: 1px;
|
|
}
|
|
|
|
.legal {
|
|
margin-top: 56px;
|
|
border-top: 1px solid var(--border-soft);
|
|
padding-top: 22px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-family: var(--mono);
|
|
font-size: 11px;
|
|
color: var(--stone);
|
|
letter-spacing: 0.4px;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
.legal b { color: var(--near-black); font-weight: 500; }
|
|
|
|
/* ---------- responsive ---------- */
|
|
@media (max-width: 1080px) {
|
|
.shell { padding: 64px 48px 96px; }
|
|
.hero { grid-template-columns: 1fr; gap: 36px; align-items: start; }
|
|
.hero-tokens { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
|
|
.manifesto { grid-template-columns: 1fr; gap: 22px; }
|
|
.metrics { grid-template-columns: repeat(2, 1fr); }
|
|
.metric:nth-child(2n) { border-right: 0; }
|
|
.metric:nth-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
|
|
.chapter { grid-template-columns: 1fr; gap: 22px; }
|
|
.footer { grid-template-columns: 1fr 1fr; gap: 36px; }
|
|
.footer .kicker { font-size: 44px; }
|
|
}
|
|
@media (max-width: 640px) {
|
|
.shell { padding: 48px 24px 72px; }
|
|
.hero-copy h1 { font-size: 46px; line-height: 1.08; letter-spacing: -0.6px; }
|
|
.hero-copy .tagline { font-size: 17px; }
|
|
.metrics { grid-template-columns: 1fr; }
|
|
.metric { border-right: 0; border-bottom: 1px solid var(--border-soft); }
|
|
.metric:last-child { border-bottom: 0; }
|
|
.footer { grid-template-columns: 1fr; gap: 28px; }
|
|
.footer .kicker { font-size: 36px; }
|
|
.chapter .body p { font-size: 13.5px; }
|
|
.legal { flex-direction: column; gap: 10px; align-items: flex-start; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<main class='shell'>
|
|
|
|
<!-- ============ 顶部元信息栏 ============ -->
|
|
<div class='eyebrow-row' data-od-id='eyebrow-row'>
|
|
<div class='lang'>
|
|
<a href='#' class='active'>EN</a>
|
|
<a href='#'>中文</a>
|
|
<a href='#'>日本語</a>
|
|
</div>
|
|
<div class='meta'>
|
|
<span><b>Vol. 01</b> · 期号 Nº 26</span>
|
|
<span><b>v0.2.0</b></span>
|
|
<span>Apache-2.0</span>
|
|
<span>MMXXVI</span>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- ============ 英雄区 ============ -->
|
|
<section class='hero' data-od-id='hero'>
|
|
<div class='hero-copy'>
|
|
<h1>在温暖<span class='ink'>纸张</span>上设计智能。</h1>
|
|
<p class='tagline'>面向编辑文档、白皮书和单页的开源工作室——由你自己的编程代理排版。</p>
|
|
</div>
|
|
<div class='hero-tokens'>
|
|
<span class='row'><b>31</b> <span>项技能</span></span>
|
|
<span class='row'><b>72</b> <span>套设计系统</span></span>
|
|
<span class='row'><b>12</b> <span>款代理 · BYOK</span></span>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ============ 宣言 ============ -->
|
|
<section class='manifesto' data-od-id='manifesto'>
|
|
<span class='label'>宣言 · Nº 01</span>
|
|
<div>
|
|
<p class='body'>
|
|
我们将你现有的编程代理视为一位<strong>创意协作者</strong>,而非一个黑箱。Open Design 赋予它 31 项可组合的技能和 72 套品牌级设计系统,然后让路。输出的是一个真正的文件——而非一段提示词——你明天就可以交给客户。
|
|
</p>
|
|
<div class='signature'>
|
|
— Open Design Studio
|
|
<span>柏林 · 开放 · 地球 · 52.5200° N · 13.4050° E</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ============ 指标行 ============ -->
|
|
<section class='metrics' data-od-id='metrics'>
|
|
<div class='metric'>
|
|
<div class='value'>31</div>
|
|
<div class='label'>项技能</div>
|
|
<div class='sub'>基于文件,今天即可交付,与 Claude Code 即插即用。</div>
|
|
</div>
|
|
<div class='metric'>
|
|
<div class='value'>72</div>
|
|
<div class='label'>套设计系统</div>
|
|
<div class='sub'>可移植的 DESIGN.md 设计令牌——Linear、Vercel、Stripe、Apple、kami……</div>
|
|
</div>
|
|
<div class='metric'>
|
|
<div class='value'>12</div>
|
|
<div class='label'>款代理 CLI</div>
|
|
<div class='sub'>在 $PATH 中自动检测;一键切换后端。</div>
|
|
</div>
|
|
<div class='metric'>
|
|
<div class='value'>3</div>
|
|
<div class='label'>条命令</div>
|
|
<div class='sub'>从 <code>git clone</code> 到第一个成品,本地离线完成。</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ============ 章节 ============ -->
|
|
<section class='chapters' data-od-id='chapters'>
|
|
|
|
<article class='chapter' data-od-id='chapter-01'>
|
|
<div class='head'>
|
|
<p class='num'>01</p>
|
|
<h2 class='title'>它是什么</h2>
|
|
<p class='lede'>一个面向你已信任的代理的本地优先设计工作室。</p>
|
|
</div>
|
|
<div class='body'>
|
|
<p>
|
|
Open Design 是 <strong>Anthropic 的 Claude Design 的开源替代品</strong>。它在你的笔记本电脑上运行。你的代理读取一个 <code>SKILL.md</code> 文件文件夹和一个 <code>DESIGN.md</code> 系统文件夹,然后生成真实文件——落地页、幻灯片、白皮书、单页、移动端原型、仪表盘。
|
|
</p>
|
|
<p>
|
|
技能提供行为。系统提供品味。适配器桥接代理。<strong>BYOK 尊重你的钱包。</strong>每个输出都是可移植的 HTML 或 Markdown——没有专有文件格式,没有供应商锁定。
|
|
</p>
|
|
<ul class='dash'>
|
|
<li>文件,而非不透明的提示词——每项技能都是一个 Markdown 文件夹。</li>
|
|
<li>确定性的视觉方向,而非随机生成。</li>
|
|
<li>沙箱化 iframe 预览,真实的 <code>cwd</code>,可导出的成品。</li>
|
|
</ul>
|
|
<div class='chapter-aside'>
|
|
<div class='a-label'>三条命令 · 30 秒</div>
|
|
<pre class='a-body'><span class="c"># 克隆、安装、启动本地守护进程。</span>
|
|
git clone <span class="k">https://github.com/nexu-io/open-design</span>
|
|
pnpm install
|
|
pnpm tools-dev</pre>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
|
|
<article class='chapter' data-od-id='chapter-02'>
|
|
<div class='head'>
|
|
<p class='num'>02</p>
|
|
<h2 class='title'>它的感受</h2>
|
|
<p class='lede'>编辑纪律,而非聊天窗口的即兴发挥。</p>
|
|
</div>
|
|
<div class='body'>
|
|
<p>
|
|
一个新项目始于一个 30 秒的问题表单:品牌、受众、规模、语言。代理在 OKLch 色空间中选择五种视觉方向之一,锁定字体堆栈,将成品写入磁盘。<strong>你可以阅读它触碰过的每一个文件。</strong>
|
|
</p>
|
|
<p>
|
|
每次迭代都在沙箱化的 iframe 预览中审阅,每个可编辑元素都带有注释模式锚点,这样你可以给出有针对性的反馈,而无需重述整份简报。重新运行是确定性的——相同的简报,相同的输出。
|
|
</p>
|
|
<p>
|
|
结果就是 <em class='tag standard'>看起来像 AI</em> 和 <em class='tag standard'>看起来像已发布</em> 之间的区别。<span class='tag brush'>按惯例每页一个笔刷标签</span>;其余部分保持纯色十六进制。
|
|
</p>
|
|
</div>
|
|
</article>
|
|
|
|
<article class='chapter' data-od-id='chapter-03'>
|
|
<div class='head'>
|
|
<p class='num'>03</p>
|
|
<h2 class='title'>下一步发布什么</h2>
|
|
<p class='lede'>2026 年第二季度——打包、多租户令牌、守护进程加固。</p>
|
|
</div>
|
|
<div class='body'>
|
|
<p>
|
|
路线图是公开的。我们现在正在推进的三条线索:
|
|
</p>
|
|
<ul class='dash'>
|
|
<li><strong>打包桌面构建</strong>——签名版 Mac、Windows NSIS、Linux AppImage,全部源自 <code>tools-pack</code>。</li>
|
|
<li><strong>多租户品牌令牌</strong>——一个运行的守护进程,多个租户;<code>OD_DATA_DIR</code> 和 <code>OD_MEDIA_CONFIG_DIR</code> 已打下基础。</li>
|
|
<li><strong>守护进程端成品持久化</strong>——每次渲染都是磁盘上的一个文件,位于 <code>.od/artifacts/</code> 下,带有稳定的 SHA,因此设计历史在每次代理重启后都能保留。</li>
|
|
</ul>
|
|
<p>
|
|
此列表中的任何内容都不需要付费计划。<strong>Open Design 将永远保持 Apache-2.0 许可</strong>;工作室通过销售品牌级设计系统来盈利,而非限制运行时功能。
|
|
</p>
|
|
</div>
|
|
</article>
|
|
|
|
</section>
|
|
|
|
<!-- ============ 页脚 ============ -->
|
|
<footer class='footer' data-od-id='footer'>
|
|
<div>
|
|
<h2 class='kicker'>Open <span class='ink'>Design.</span></h2>
|
|
<p class='colophon'>
|
|
在温暖纸张上设计并发布,来自柏林 · 开放 · 地球。Apache-2.0 许可,可用于任何用途,商业或非商业。
|
|
</p>
|
|
</div>
|
|
<div class='col'>
|
|
<h4>源码</h4>
|
|
<ul>
|
|
<li><a href='#'>github.com/nexu-io</a><small>/open-design</small></li>
|
|
<li><a href='#'>发布版本<small>v0.2.0 · MMXXVI</small></a></li>
|
|
<li><a href='#'>Issues<small>开放 · 23</small></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class='col'>
|
|
<h4>技能</h4>
|
|
<ul>
|
|
<li><a href='#'>kami-landing<small>本页面</small></a></li>
|
|
<li><a href='#'>kami-deck<small>幻灯片伴侣</small></a></li>
|
|
<li><a href='#'>open-design-landing<small>品牌营销</small></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class='col'>
|
|
<h4>工作室</h4>
|
|
<ul>
|
|
<li><a href='#'>宣言<small>v0.2.0 · 2.4k 字符</small></a></li>
|
|
<li><a href='#'>路线图<small>2026 年 Q2 / Q3</small></a></li>
|
|
<li><a href='#'>联系<small>提交一个 Issue</small></a></li>
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
|
|
<div class='legal'>
|
|
<span><b>Open Design</b> · Apache-2.0 · MMXXVI</span>
|
|
<span>以 kami 排版 · 紙 · 纸 · 纸张优先</span>
|
|
</div>
|
|
|
|
</main>
|
|
</body>
|
|
</html>
|