From dd9d919a29c2852145bfec9582c4517752ade442 Mon Sep 17 00:00:00 2001 From: Samgu Lee Date: Sat, 6 Jun 2026 23:12:41 +0900 Subject: [PATCH] feat: create `WHY` page --- TASKS.md | 2 +- src/pages/why.astro | 120 ++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 112 insertions(+), 10 deletions(-) diff --git a/TASKS.md b/TASKS.md index bd3ba5b..014c3e5 100644 --- a/TASKS.md +++ b/TASKS.md @@ -99,7 +99,7 @@ Propose TASK update ## CORE CONTENT - [x] T211 Create Home Page -- [ ] T212 Create Why Page +- [x] T212 Create Why Page - [ ] T213 Publish Manifesto v1 - [ ] T214 Publish Specification v1 - [ ] T215 Publish Workflow v1 diff --git a/src/pages/why.astro b/src/pages/why.astro index e0fc128..4e53980 100644 --- a/src/pages/why.astro +++ b/src/pages/why.astro @@ -2,14 +2,116 @@ import SiteLayout from '../layouts/SiteLayout.astro'; --- - -
-

Why REPL Works?

-

- This page is a placeholder for the Why section. The shared site shell is - configured and ready for content. -

+ +
+
+

+ Problem +

+

+ AI is improving, but projects still fail. +

+

+ Teams build with better models every year, yet knowledge remains + fragmented across chat history, prompt notes, and scattered docs. The + moment a session ends or a model is replaced, critical context vanishes. +

+
+ +
+
+

+ Observation +

+

+ Projects leak memory in multiple ways. +

+
    +
  • Chat history grows long and hard to search.
  • +
  • Prompt context is reused without structure.
  • +
  • Context windows reset when agents restart.
  • +
  • Agents run independently and lose shared state.
  • +
  • Personal notes become trapped in silos.
  • +
+
+ +
+

+ Consequence +

+

+ The result is project amnesia. +

+
    +
  • Repeated mistakes when context is lost.
  • +
  • Architecture drift because decisions are forgotten.
  • +
  • Lost decisions when reasoning is not captured.
  • +
  • Lost context as sessions end and models change.
  • +
  • Long-term projects lose momentum and memory.
  • +
+
+
+ +
+

+ Question +

+

+ Why does REPL Works exist? +

+

+ It exists because AI alone cannot preserve project memory. Without a + durable place to record knowledge, every long-term effort becomes + vulnerable to forgotten context, lost decisions, and repeated effort. +

+

+ This is not just a technical inconvenience—it is a real barrier to + sustained, reliable AI development. +

+
+ +
+

+ Next +

+

+ The manifesto explains the solution. +

+

+ If the problem feels real, the next step is to understand the principles + that make long-term project memory possible. +

+ + Read the Manifesto + +