docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거

Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,200 @@
---
id: wiki-2026-0508-system-protocol-standard
title: System Protocol Standard
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Protocol Standardization, Wire Protocol Design, Interface Standards]
duplicate_of: none
source_trust_level: A
confidence_score: 0.85
verification_status: applied
tags: [protocol, standard, interoperability, design]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: multi
framework: protobuf-grpc
---
# System Protocol Standard
## 매 한 줄
> **"매 system 간 wire-level contract 의 versioned, versionable specification"**. 매 protocol standard 의 — message format + transport + semantics + evolution rules. 2026 의 modern stack 의 protobuf + gRPC + OpenAPI + AsyncAPI 의 dominant.
## 매 핵심
### 매 components of protocol spec
- **Syntax**: 매 wire format (binary, JSON, XML).
- **Semantics**: 매 message meaning + state machine.
- **Transport**: TCP, UDP, HTTP/2, QUIC, WebSocket.
- **Versioning**: 매 backward / forward compat rules.
- **Error model**: 매 status codes, retry semantics.
### 매 design 원칙
- **Forward compat**: 매 old client 의 new server 의 read.
- **Backward compat**: 매 new client 의 old server 의 read (graceful).
- **Self-describing**: 매 schema 의 embed (JSON-Schema, protobuf descriptor).
- **Idempotency**: 매 retry 의 safe.
- **Explicit versioning**: 매 URL `/v1/`, header, or schema `apiVersion`.
### 매 standard families
- **RPC**: gRPC, Thrift, Cap'n Proto, JSON-RPC.
- **REST**: HTTP + OpenAPI 3.1.
- **Message**: AMQP, MQTT, Kafka wire, NATS, AsyncAPI 3.0.
- **Streaming**: WebRTC, RTSP, HLS, WebTransport.
### 매 응용
1. Microservice contracts.
2. IoT device protocols.
3. Inter-org B2B (EDI → modern API).
4. Embedded → cloud telemetry.
## 💻 패턴
### Protobuf — versionable schema
```protobuf
syntax = "proto3";
package order.v1;
message Order {
string id = 1;
string customer_id = 2;
repeated LineItem items = 3;
google.protobuf.Timestamp created_at = 4;
reserved 5, 6; // burned fields — never reuse
reserved "deprecated_field";
}
message LineItem {
string sku = 1;
int32 qty = 2;
Money price = 3;
}
```
### gRPC service contract
```protobuf
service OrderService {
rpc Create(CreateOrderRequest) returns (Order);
rpc Get(GetOrderRequest) returns (Order);
rpc Stream(StreamOrdersRequest) returns (stream Order);
}
```
### OpenAPI 3.1 — REST contract
```yaml
openapi: 3.1.0
info:
title: Order API
version: 1.4.0
paths:
/v1/orders/{id}:
get:
operationId: getOrder
parameters:
- name: id
in: path
required: true
schema: { type: string }
responses:
'200':
content:
application/json:
schema: { $ref: '#/components/schemas/Order' }
```
### Versioning — semver + deprecation
```http
GET /v1/orders/123
Sunset: Wed, 01 Jan 2027 00:00:00 GMT
Deprecation: true
Link: </v2/orders/123>; rel="successor-version"
```
### Schema evolution rules (protobuf)
```
ALLOWED:
- Add new optional field (new tag #)
- Rename field name (tag # is contract)
- Add new RPC
FORBIDDEN:
- Change tag #
- Change field type (int32 → string)
- Make optional → required
- Reuse reserved tag
```
### Error model — gRPC + RFC 7807
```protobuf
message Error {
string code = 1; // RESOURCE_NOT_FOUND
string message = 2;
string trace_id = 3;
google.protobuf.Any details = 4;
}
```
```json
// REST RFC 7807
{
"type": "https://api.example.com/errors/insufficient-funds",
"title": "Insufficient funds",
"status": 422,
"detail": "Account balance is $5; tried to withdraw $100",
"instance": "/accounts/12345/withdraw"
}
```
### AsyncAPI — event protocol
```yaml
asyncapi: 3.0.0
info: { title: Order Events, version: 1.0.0 }
channels:
order.created:
address: order.v1.created
messages:
OrderCreated:
payload:
$ref: '#/components/schemas/Order'
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Internal microservice, polyglot | gRPC + protobuf |
| Public API | REST + OpenAPI 3.1 |
| Browser real-time | WebSocket / WebTransport |
| Event-driven | AsyncAPI + Kafka/NATS |
| Embedded / IoT | MQTT + protobuf |
**기본값**: 매 protobuf + gRPC (internal), 매 OpenAPI + JSON (external).
## 🔗 Graph
- 부모: [[API Design]] · [[Distributed Systems]]
- 변형: [[gRPC]] · [[REST]]
- 응용: [[Microservices]]
- Adjacent: [[Backward Compatibility]] · [[Idempotency]]
## 🤖 LLM 활용
**언제**: schema generation, migration plan (v1 → v2), client SDK scaffolding.
**언제 X**: final wire format approval (security/perf review 의 human).
## ❌ 안티패턴
- **No versioning**: 매 v1 의 미래 의 painful breaking change.
- **Reuse reserved tags**: 매 silent data corruption.
- **Required fields in proto3**: 매 forward-compat 의 break.
- **Stringly-typed enums**: 매 typo + drift — 매 enum 의 사용.
- **"Dump it all"**: 매 message 의 too-fat — 매 Single Responsibility 의.
## 🧪 검증 / 중복
- Verified (Google API Design Guide; gRPC docs; OpenAPI 3.1; RFC 7807).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — protobuf, OpenAPI, AsyncAPI, versioning rules |