4 SoT 모듈:
- huberman-protocols.md (v4, 29 Huberman 원자 프로토콜, 33 인용 검증 완료)
- habit-todo-methodologies.md (21 방법론 + 6 가드레일 + 5-Tier Reward + L0~L3 프레임)
- habit-breaking-protocols.md (끊기 8 카테고리 + 공통 5 프레임 + 의학적 면책)
- nutrition/ 별도 Gitea repo (joungmin/nutrition) — .gitignore 처리
데이터 모델:
- data-model.md — entity 관계 + R1~R8 운영 규칙 + 예시
- schema/ — JSON Schema 18개 (Draft 2020-12), R1~R8을 enum + application + UI 3층 강제
운영 가드레일:
- 동시 active build ≤ 3, break ≤ 1
- 일일 운영 ≤ 2분
- frame.level ∈ {L2, L3} (L0/L1 거부)
- tracker_entry.value = done/blank 2값
- phase = 6주 사이클
- reward는 누적 milestone(T0~T4)만, 매일 직후 X
- "Never miss twice"
진행 중: Dose Variant 설계 결정 대기 (SESSION-LOG.md Pending #1)
25 lines
1013 B
JSON
25 lines
1013 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://life-helper.local/schema/reward_claim.schema.json",
|
|
"title": "Reward Claim (실제 milestone 달성 기록)",
|
|
"description": "reward_declaration의 milestone_rule이 충족된 시점 + 사용자가 실제 보상을 받았는지.",
|
|
"type": "object",
|
|
"required": ["id", "declaration_id", "milestone_reached_at", "fulfilled"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"id": { "type": "string" },
|
|
"declaration_id": { "type": "string" },
|
|
"milestone_reached_at": { "$ref": "enums.schema.json#/$defs/DateTimeString" },
|
|
"fulfilled": {
|
|
"type": "boolean",
|
|
"description": "사용자가 실제로 보상을 받았는지 (선언만 하고 안 받을 수도 있음)"
|
|
},
|
|
"fulfilled_at": { "$ref": "enums.schema.json#/$defs/DateTimeString" },
|
|
"reflection": {
|
|
"type": "string",
|
|
"maxLength": 500,
|
|
"description": "보상을 받고 난 후 짧은 회고 (옵션)"
|
|
}
|
|
}
|
|
}
|