Skip to content

Commit eb3a57b

Browse files
authored
chore: polish (#4)
1 parent 90c4f47 commit eb3a57b

3 files changed

Lines changed: 21 additions & 7 deletions

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
Live: [https://tape.systems](https://tape.systems)
44

5-
A minimal site describing the tape-based context model behind [bub.build](https://bub.build). Source: [bubbuild/bub](https://github.com/bubbuild/bub).
5+
A minimal site describing a tape-based context model, practiced in [bub.build](https://bub.build). Source: [bubbuild/bub](https://github.com/bubbuild/bub).
6+
7+
## What’s Inside
8+
9+
- Mechanisms: Append, Anchor, Handoff
10+
- Session Modeling: Single, Multi-turn, Isolation, Topic Threading
11+
- Context Strategies: Compact, Summary, Fork-Merge
12+
- Advanced: Memory assembly from anchor graphs
13+
- Teams: shared tape + cross-tape views
614

715
## Tech Stack
816

components/hero.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ export function Hero() {
3636

3737
{/* Subtitle */}
3838
<p className="mt-5 text-sm md:text-base text-muted-foreground leading-relaxed text-center text-pretty max-w-md">
39+
<span>{t("hero.subtitle.line2")}</span>
40+
<br />
3941
<span>{t("hero.subtitle.line1")}</span>
4042
<br />
4143
<span>

lib/i18n.tsx

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,23 @@ const translations: Translations = {
2121
en: "Tape as Context",
2222
},
2323
"hero.subtitle.line1": {
24-
zh: "Append, Anchor, Handoff, Fork/Merge",
25-
en: "Append, Anchor, Handoff, Fork/Merge",
24+
zh: "Handoff, Fork/Merge, Memory, Teams, Topic Threading",
25+
en: "Handoff, Fork/Merge, Memory, Teams, Topic Threading",
26+
},
27+
"hero.subtitle.line2": {
28+
zh: "一个面向长周期、多团队协作的统一上下文模型。",
29+
en: "A unified context model for long-running, multi-team work.",
2630
},
2731
"hero.subtitle.line2Prefix": {
28-
zh: "",
29-
en: "A unified context model behind ",
32+
zh: "",
33+
en: "Practiced in ",
3034
},
3135
"hero.subtitle.line2Between": {
32-
zh: " 背后的统一上下文模型,",
36+
zh: " 践行,源码在",
3337
en: ", ",
3438
},
3539
"hero.subtitle.source": {
36-
zh: "查看源码",
40+
zh: "这里",
3741
en: "view source",
3842
},
3943
"hero.cta": { zh: "开始探索", en: "Explore" },

0 commit comments

Comments
 (0)