infographic-build.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1080">
  6. <title>AI Memory System Optimization — Build Studio Style</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap" rel="stylesheet">
  8. <style>
  9. * { margin: 0; padding: 0; box-sizing: border-box; }
  10. body {
  11. width: 1080px;
  12. height: 1920px;
  13. overflow: hidden;
  14. margin: 0;
  15. background: #FAFAF8;
  16. font-family: 'Inter', sans-serif;
  17. color: #2A2A2A;
  18. }
  19. .container {
  20. width: 100%;
  21. height: 100%;
  22. padding: 80px 80px 64px 80px;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: space-between;
  26. }
  27. /* Header */
  28. .label {
  29. font-size: 10px;
  30. font-weight: 400;
  31. letter-spacing: 5px;
  32. text-transform: uppercase;
  33. color: #B0ACA4;
  34. margin-bottom: 32px;
  35. }
  36. .title {
  37. font-size: 36px;
  38. font-weight: 200;
  39. line-height: 1.35;
  40. color: #1A1A1A;
  41. letter-spacing: -0.5px;
  42. max-width: 680px;
  43. }
  44. .title strong {
  45. font-weight: 500;
  46. }
  47. /* Hero Numbers */
  48. .hero {
  49. margin-top: 56px;
  50. display: flex;
  51. align-items: flex-end;
  52. gap: 48px;
  53. }
  54. .hero-block {
  55. display: flex;
  56. flex-direction: column;
  57. }
  58. .hero-label {
  59. font-size: 10px;
  60. font-weight: 400;
  61. letter-spacing: 4px;
  62. text-transform: uppercase;
  63. color: #B0ACA4;
  64. margin-bottom: 8px;
  65. }
  66. .hero-number {
  67. font-size: 112px;
  68. font-weight: 200;
  69. line-height: 0.9;
  70. color: #1A1A1A;
  71. letter-spacing: -4px;
  72. }
  73. .hero-number .unit {
  74. font-size: 28px;
  75. font-weight: 300;
  76. letter-spacing: 0;
  77. color: #B0ACA4;
  78. margin-left: 4px;
  79. }
  80. .hero-number.gold {
  81. color: #1A1A1A;
  82. }
  83. .hero-number.gold .unit {
  84. color: #D4A574;
  85. opacity: 0.7;
  86. }
  87. .hero-number.gold .dot-accent {
  88. color: #D4A574;
  89. }
  90. .hero-connector {
  91. display: flex;
  92. align-items: center;
  93. margin-bottom: 24px;
  94. }
  95. .hero-connector svg {
  96. opacity: 0.25;
  97. }
  98. .hero-reduction {
  99. display: flex;
  100. flex-direction: column;
  101. align-items: center;
  102. margin-bottom: 24px;
  103. }
  104. .reduction-badge {
  105. font-size: 13px;
  106. font-weight: 400;
  107. color: #D4A574;
  108. letter-spacing: 2px;
  109. }
  110. /* Subtle line */
  111. .divider {
  112. width: 48px;
  113. height: 1px;
  114. background: #D4A574;
  115. margin: 48px 0;
  116. opacity: 0.4;
  117. }
  118. /* Stats Row */
  119. .stats-row {
  120. display: flex;
  121. gap: 0;
  122. }
  123. .stat-item {
  124. flex: 1;
  125. padding: 24px 0;
  126. position: relative;
  127. }
  128. .stat-item::after {
  129. content: '';
  130. position: absolute;
  131. right: 0;
  132. top: 50%;
  133. transform: translateY(-50%);
  134. width: 1px;
  135. height: 40px;
  136. background: #E0DCDA;
  137. }
  138. .stat-item:last-child::after {
  139. display: none;
  140. }
  141. .stat-value {
  142. font-size: 40px;
  143. font-weight: 200;
  144. color: #1A1A1A;
  145. line-height: 1;
  146. margin-bottom: 8px;
  147. }
  148. .stat-desc {
  149. font-size: 11px;
  150. font-weight: 300;
  151. color: #B0ACA4;
  152. line-height: 1.5;
  153. letter-spacing: 0.5px;
  154. }
  155. /* Memory Cards */
  156. .cards-section {
  157. margin-top: 40px;
  158. }
  159. .cards-label {
  160. font-size: 10px;
  161. font-weight: 400;
  162. letter-spacing: 5px;
  163. text-transform: uppercase;
  164. color: #B0ACA4;
  165. margin-bottom: 24px;
  166. }
  167. .cards-grid {
  168. display: grid;
  169. grid-template-columns: 1fr 1fr;
  170. gap: 16px;
  171. }
  172. .card {
  173. background: #FFFFFF;
  174. padding: 32px;
  175. box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
  176. border-radius: 2px;
  177. position: relative;
  178. }
  179. .card-index {
  180. font-size: 40px;
  181. font-weight: 200;
  182. color: #E8E4E0;
  183. line-height: 1;
  184. margin-bottom: 16px;
  185. }
  186. .card-title-zh {
  187. font-size: 18px;
  188. font-weight: 500;
  189. color: #1A1A1A;
  190. margin-bottom: 4px;
  191. line-height: 1.3;
  192. }
  193. .card-title-en {
  194. font-size: 10px;
  195. font-weight: 400;
  196. color: #C0BCB6;
  197. letter-spacing: 2px;
  198. text-transform: uppercase;
  199. margin-bottom: 16px;
  200. }
  201. .card-desc {
  202. font-size: 12px;
  203. font-weight: 300;
  204. color: #999;
  205. line-height: 1.7;
  206. }
  207. .card.featured {
  208. border-left: 1.5px solid #D4A574;
  209. }
  210. .card.featured .card-index {
  211. color: #D4A574;
  212. opacity: 0.35;
  213. }
  214. /* Flow */
  215. .flow-section {
  216. margin-top: 40px;
  217. }
  218. .flow-label {
  219. font-size: 10px;
  220. font-weight: 400;
  221. letter-spacing: 5px;
  222. text-transform: uppercase;
  223. color: #B0ACA4;
  224. margin-bottom: 32px;
  225. }
  226. .flow-timeline {
  227. position: relative;
  228. padding-left: 0;
  229. }
  230. .flow-steps {
  231. display: flex;
  232. justify-content: space-between;
  233. position: relative;
  234. }
  235. .flow-steps::before {
  236. content: '';
  237. position: absolute;
  238. top: 8px;
  239. left: 36px;
  240. right: 36px;
  241. height: 1px;
  242. background: linear-gradient(to right, #E0DCDA, #D4A574 50%, #E0DCDA);
  243. }
  244. .flow-step {
  245. display: flex;
  246. flex-direction: column;
  247. align-items: center;
  248. gap: 16px;
  249. flex: 1;
  250. position: relative;
  251. z-index: 1;
  252. }
  253. .flow-dot {
  254. width: 12px;
  255. height: 12px;
  256. border-radius: 50%;
  257. background: #FAFAF8;
  258. border: 1px solid #D0CCC6;
  259. flex-shrink: 0;
  260. }
  261. .flow-dot.active {
  262. border-color: #D4A574;
  263. background: #D4A574;
  264. }
  265. .flow-step-label {
  266. font-size: 9px;
  267. font-weight: 400;
  268. letter-spacing: 2px;
  269. text-transform: uppercase;
  270. color: #C0BCB6;
  271. }
  272. .flow-step-text {
  273. font-size: 13px;
  274. font-weight: 400;
  275. color: #2A2A2A;
  276. text-align: center;
  277. line-height: 1.4;
  278. }
  279. /* Quote */
  280. .quote-section {
  281. margin-top: 0;
  282. padding-top: 32px;
  283. border-top: 1px solid #EEECE8;
  284. }
  285. .quote-line {
  286. width: 32px;
  287. height: 1px;
  288. background: #D4A574;
  289. margin-bottom: 24px;
  290. opacity: 0.5;
  291. }
  292. .quote-text {
  293. font-size: 22px;
  294. font-weight: 200;
  295. color: #1A1A1A;
  296. line-height: 1.6;
  297. letter-spacing: -0.3px;
  298. max-width: 680px;
  299. }
  300. .quote-text em {
  301. font-style: normal;
  302. color: #D4A574;
  303. font-weight: 400;
  304. }
  305. /* Results */
  306. .results-row {
  307. display: flex;
  308. gap: 48px;
  309. margin-top: 32px;
  310. }
  311. .result-item {
  312. display: flex;
  313. align-items: center;
  314. gap: 12px;
  315. }
  316. .result-icon {
  317. width: 6px;
  318. height: 6px;
  319. border-radius: 50%;
  320. background: #D4A574;
  321. flex-shrink: 0;
  322. opacity: 0.6;
  323. }
  324. .result-text {
  325. font-size: 13px;
  326. font-weight: 400;
  327. color: #999999;
  328. letter-spacing: 0.3px;
  329. }
  330. /* Footer */
  331. .footer {
  332. margin-top: 32px;
  333. display: flex;
  334. justify-content: space-between;
  335. align-items: center;
  336. }
  337. .footer-text {
  338. font-size: 9px;
  339. font-weight: 300;
  340. color: #D0CCC6;
  341. letter-spacing: 3px;
  342. text-transform: uppercase;
  343. }
  344. </style>
  345. </head>
  346. <body>
  347. <div class="container">
  348. <!-- Label -->
  349. <div class="label">System Architecture</div>
  350. <!-- Title -->
  351. <div class="title">
  352. AI记忆系统<br>
  353. CLAUDE.md <strong>从 93KB<br>优化到 22KB</strong>
  354. </div>
  355. <!-- Hero Numbers -->
  356. <div class="hero">
  357. <div class="hero-block">
  358. <span class="hero-label">Before</span>
  359. <span class="hero-number">93<span class="unit">KB</span></span>
  360. </div>
  361. <div class="hero-connector">
  362. <svg width="48" height="8" viewBox="0 0 48 8">
  363. <line x1="0" y1="4" x2="40" y2="4" stroke="#D4A574" stroke-width="0.75" opacity="0.5"/>
  364. <line x1="36" y1="1" x2="42" y2="4" stroke="#D4A574" stroke-width="0.75" opacity="0.5"/>
  365. <line x1="36" y1="7" x2="42" y2="4" stroke="#D4A574" stroke-width="0.75" opacity="0.5"/>
  366. </svg>
  367. </div>
  368. <div class="hero-block">
  369. <span class="hero-label">After</span>
  370. <span class="hero-number gold">22<span class="unit">KB</span></span>
  371. </div>
  372. <div class="hero-reduction">
  373. <span class="reduction-badge">-76%</span>
  374. </div>
  375. </div>
  376. <!-- Stats -->
  377. <div class="divider"></div>
  378. <div class="stats-row">
  379. <div class="stat-item">
  380. <div class="stat-value">2400<span style="font-size:18px;color:#AAAAAA">+</span></div>
  381. <div class="stat-desc">lines before<br>in single file</div>
  382. </div>
  383. <div class="stat-item" style="padding-left: 24px;">
  384. <div class="stat-value">4</div>
  385. <div class="stat-desc">structured<br>memory categories</div>
  386. </div>
  387. <div class="stat-item" style="padding-left: 24px;">
  388. <div class="stat-value">0</div>
  389. <div class="stat-desc">information<br>loss</div>
  390. </div>
  391. </div>
  392. <!-- Memory Cards -->
  393. <div class="cards-section">
  394. <div class="cards-label">Memory Categories</div>
  395. <div class="cards-grid">
  396. <div class="card featured">
  397. <div class="card-index">01</div>
  398. <div class="card-title-zh">核心身份</div>
  399. <div class="card-title-en">Core Identity</div>
  400. <div class="card-desc">Immutable traits, facts, fundamental identity markers</div>
  401. </div>
  402. <div class="card">
  403. <div class="card-index">02</div>
  404. <div class="card-title-zh">偏好设置</div>
  405. <div class="card-title-en">Preferences</div>
  406. <div class="card-desc">Style choices, tool habits, accumulated over sessions</div>
  407. </div>
  408. <div class="card">
  409. <div class="card-index">03</div>
  410. <div class="card-title-zh">项目状态</div>
  411. <div class="card-title-en">Project State</div>
  412. <div class="card-desc">Active tasks, deadlines, priorities, evolving context</div>
  413. </div>
  414. <div class="card">
  415. <div class="card-index">04</div>
  416. <div class="card-title-zh">日志流水</div>
  417. <div class="card-title-en">Daily Logs</div>
  418. <div class="card-desc">Session records, never auto-loaded, search on demand</div>
  419. </div>
  420. </div>
  421. </div>
  422. <!-- Flow -->
  423. <div class="flow-section">
  424. <div class="flow-label">Processing Flow</div>
  425. <div class="flow-timeline">
  426. <div class="flow-steps">
  427. <div class="flow-step">
  428. <div class="flow-dot"></div>
  429. <div class="flow-step-label">Input</div>
  430. <div class="flow-step-text">User<br>Input</div>
  431. </div>
  432. <div class="flow-step">
  433. <div class="flow-dot"></div>
  434. <div class="flow-step-label">Route</div>
  435. <div class="flow-step-text">Workspace<br>Detection</div>
  436. </div>
  437. <div class="flow-step">
  438. <div class="flow-dot active"></div>
  439. <div class="flow-step-label">Load</div>
  440. <div class="flow-step-text">Relevant<br>Memory</div>
  441. </div>
  442. <div class="flow-step">
  443. <div class="flow-dot"></div>
  444. <div class="flow-step-label">Execute</div>
  445. <div class="flow-step-text">Task<br>Processing</div>
  446. </div>
  447. <div class="flow-step">
  448. <div class="flow-dot"></div>
  449. <div class="flow-step-label">Update</div>
  450. <div class="flow-step-text">Memory<br>Write-back</div>
  451. </div>
  452. </div>
  453. </div>
  454. </div>
  455. <!-- Quote -->
  456. <div class="quote-section">
  457. <div class="quote-line"></div>
  458. <div class="quote-text">
  459. Like <em>Marie Kondo</em> for AI memory<br>
  460. — keep only what sparks joy.
  461. </div>
  462. <div class="results-row">
  463. <div class="result-item">
  464. <div class="result-icon"></div>
  465. <span class="result-text">Faster context loading</span>
  466. </div>
  467. <div class="result-item">
  468. <div class="result-icon"></div>
  469. <span class="result-text">More relevant responses</span>
  470. </div>
  471. <div class="result-item">
  472. <div class="result-icon"></div>
  473. <span class="result-text">Zero information loss</span>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Footer -->
  478. <div class="footer">
  479. <span class="footer-text">Build Studio Style</span>
  480. <span class="footer-text">2026</span>
  481. </div>
  482. </div>
  483. </body>
  484. </html>