File tree Expand file tree Collapse file tree 3 files changed +52
-24
lines changed
Expand file tree Collapse file tree 3 files changed +52
-24
lines changed Original file line number Diff line number Diff line change 3434
3535** 핵심 인사이트** : AI는 코드를 읽습니다. 그러니 맥락을 코드 안에 넣으세요.
3636
37- ``` mermaid
38- flowchart LR
39- A["🧑💻 Claude와 코딩"] --> B{"결정 내림?"}
40- B -->|예| C["codesyncer-decision 태그 추가"]
41- B -->|아니오| D{"추론 했음?"}
42- D -->|예| E["codesyncer-inference 태그 추가"]
43- D -->|아니오| F["계속 코딩"]
44- C --> G["📝 코드에 영구 저장"]
45- E --> G
46- G --> H["🔄 다음 세션"]
47- H --> I["Claude가 코드 읽음"]
48- I --> J["✅ 맥락 복구 완료!"]
37+ ```
38+ ┌─────────────────────────┐
39+ │ 🧑💻 Claude와 코딩 │
40+ └───────────┬─────────────┘
41+ ▼
42+ ┌──────────────┐
43+ │ 결정함? │
44+ └──────┬───────┘
45+ ▼
46+ ┌─────────────────────────┐
47+ │ @codesyncer-decision │
48+ │ @codesyncer-inference │
49+ └───────────┬─────────────┘
50+ ▼
51+ ┌─────────────────────────┐
52+ │ 📝 코드에 영구 저장 │
53+ └───────────┬─────────────┘
54+ ▼
55+ ┌─────────────────────────┐
56+ │ 🔄 다음 세션 │
57+ │ Claude가 코드 읽음 │
58+ └───────────┬─────────────┘
59+ ▼
60+ ┌─────────────────────────┐
61+ │ ✅ 맥락 복구 완료! │
62+ └─────────────────────────┘
4963```
5064
5165``` typescript
Original file line number Diff line number Diff line change 3434
3535** The core insight** : AI reads code. So put your context IN the code.
3636
37- ``` mermaid
38- flowchart LR
39- A["🧑💻 You code with Claude"] --> B{"Decision made?"}
40- B -->|Yes| C["Add codesyncer-decision tag"]
41- B -->|No| D{"Inference made?"}
42- D -->|Yes| E["Add codesyncer-inference tag"]
43- D -->|No| F["Continue coding"]
44- C --> G["📝 Saved in code forever"]
45- E --> G
46- G --> H["🔄 Next session"]
47- H --> I["Claude reads code"]
48- I --> J["✅ Context recovered!"]
37+ ```
38+ ┌─────────────────────────┐
39+ │ 🧑💻 Code with Claude │
40+ └───────────┬─────────────┘
41+ ▼
42+ ┌──────────────┐
43+ │ Decision? │
44+ └──────┬───────┘
45+ ▼
46+ ┌─────────────────────────┐
47+ │ @codesyncer-decision │
48+ │ @codesyncer-inference │
49+ └───────────┬─────────────┘
50+ ▼
51+ ┌─────────────────────────┐
52+ │ 📝 Saved in code │
53+ └───────────┬─────────────┘
54+ ▼
55+ ┌─────────────────────────┐
56+ │ 🔄 Next session │
57+ │ Claude reads code │
58+ └───────────┬─────────────┘
59+ ▼
60+ ┌─────────────────────────┐
61+ │ ✅ Context recovered! │
62+ └─────────────────────────┘
4963```
5064
5165``` typescript
You can’t perform that action at this time.
0 commit comments