Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/LONG_CONTEXT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Generate LONG_CONTEXT.md

지금까지의 대화 내용을 기반으로 LONG_CONTEXT.md를 생성해줘.

LONG_CONTEXT.md의 목적은 새로운 Session 또는 새로운 Model이 현재 상황을 빠르게 복구할 수 있도록 하는 것이다.

이 문서는 프로젝트 문서가 아니다.

다음 목적을 가진 Session Bootstrap 문서다.

- 새로운 Session 시작
- 새로운 Model 사용
- 장기간 중단 후 프로젝트 재개
- 채팅 Context 소실 복구

작성 원칙:

1. 대화 내용을 단순 요약하지 말 것
2. 프로젝트의 현재 상태를 설명할 것
3. 중요한 의사결정과 그 이유를 기록할 것
4. 논의 과정에서 얻은 핵심 통찰을 기록할 것
5. 앞으로 이어서 논의해야 할 사항을 기록할 것
6. 현재 사용자가 중요하게 생각하는 철학과 원칙을 기록할 것
7. AGENTS.md, ARCHITECTURE.md, TASKS.md에 이미 존재하는 내용을 장황하게 복사하지 말 것
8. 새로운 모델이 "왜 이런 구조가 되었는가"를 이해할 수 있도록 작성할 것
9. 세부 구현보다 의사결정 배경을 우선 기록할 것

포함 항목:

- Current Project
- Current Status
- Key Decisions
- Important Insights
- Open Questions
- Current Direction
- Next Discussion Topics

출력은 LONG_CONTEXT.md 전체 문서만 작성할 것.
100 changes: 100 additions & 0 deletions docs/MANIFESTO.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
---
title: 'REPL Works Manifesto'
date: 2026-06-06
---

## Introduction

We are discovering better ways to build products with AI.

AI models generate better code every year.

Yet long-term projects continue to fail for familiar reasons.

Project intent disappears.

Architecture drifts.

The same mistakes repeat.

Context is lost between sessions.

Changing models often means starting over.

We do not believe this happens because AI lacks intelligence.

We believe it happens because projects lack memory.

---

## Core Belief

AI memory is temporary.

Project memory must be externalized.

Models forget.

Projects must not.

---

## Values

We value Project Memory over Model Memory.

We value Architecture over Prompt Engineering.

We value Persistent Knowledge over Long Conversations.

We value Workflow Consistency over Agent Intelligence.

We value Model Independence over Single Model Dependency.

We value Sustainable Development over Fast Implementation.

---

## Principles

### Project knowledge must exist outside the model

Projects must survive model upgrades, vendor changes, and new sessions.

### Project memory must be persistent

Knowledge that matters should not disappear when a conversation ends.

### Architecture defines intent

Implementation should follow architecture, not replace it.

### Context is a limited resource

Important context must be preserved, not repeatedly reconstructed.

### Models are replaceable

Project continuity should not depend on a specific model.

### Long-term development requires long-term memory

Projects live longer than sessions.

Memory must live longer than context windows.

---

## Final Statement

We are not trying to make AI smarter.

We are trying to make projects more durable.

The future of AI development is not better memory inside models.

It is better memory outside them.

Models forget.

Projects must not.
Loading
Loading