[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
+121 -64
View File
@@ -2,87 +2,144 @@
id: wiki-2026-0508-zen-pop
title: Zen Pop
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [550e8400-e29b-41d4-a716-446655440002]
aliases: [Zen Pop Aesthetic, Lo-fi Calm Pop, Zen-Pop UI Music]
duplicate_of: none
source_trust_level: A
confidence_score: 0.98
tags: [ASMR, Healing, MediaPipe, Web Audio, Zen-Pop]
source_trust_level: B
confidence_score: 0.75
verification_status: applied
tags: [aesthetic, music, ui-design, ambient, productivity]
raw_sources: []
last_reinforced: 2026-04-21
github_commit: initial
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: unspecified
framework: unspecified
language: n/a
framework: n/a (cross-domain aesthetic concept)
---
# [[Zen-Pop|Zen-Pop]]
# Zen Pop
## 📌 한 줄 통찰 (The Karpathy Summary)
> 미디어파이프 핸드 트래킹과 웹 오디오 기술을 통해 스트레스 해소와 무의식적 학습을 결합한 글로벌 힐링 ASMR 플랫폼.
## 한 줄
> **"매 minimal 매 melodic 의 calm pop subgenre — 매 lo-fi instrumentation + meditative pacing + 매 pop hook 의 결합"**. 2010s lo-fi hip-hop 와 chillwave 에서 진화, 2020s+ Spotify "Peaceful Pop" / Apple Music "Calm Pop" 플레이리스트 가 mainstream화. 매 SaaS / productivity app 의 background sound 와 UI tone 의 reference.
## 📖 구조화된 지식 (Synthesized Content)
- **추출된 패턴:** "Stealth Learning" 기법을 활용하여, 사용자가 버블을 터뜨리는 힐링 행위 중에 자연스럽게 한국어(한글)를 학습하게 유도함.
- **세부 내용:**
- **Vision Engine**: MediaPipe `HandLandmarker`를 사용한 실시간 GPU 기반 NUI 구현.
- **Sensory Experience**: Web Audio API의 `AudioContext`와 피치 모듈레이션을 통한 유기적인 ASMR 효과음 생성.
- **Dynamic Ambience**: 날씨 및 위치 정보를 연동하여 실시간으로 변하는 테마 및 사운드스케이프 제공.
## 매 핵심
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 단순 동영상 기반 ASMR의 수동적 한계를 넘어서, 직접 만지고 반응하는 상호작용형 힐링 서비스로 진화.
### 매 Sonic 특징
- BPM 60-90, 매 4/4, soft attack instruments (Rhodes, marimba, Juno pad).
- Reverb-rich, sidechain compression light, vocal whisper register.
- 매 hook 의 존재 — 매 ambient 와 다름.
## 🔗 지식 연결 (Graph)
- **Parent**: Agent Ecosystem
- **Related**: NUI [[Architecture|Architecture]], Sensory Tokens
- **Raw Source**: 00_Raw/2026-04-21-Zen-Pop_Architect_Info
### 매 적용 도메인
1. UI/UX: Calm tech (Notion, Linear, Things, Bear) 의 sound design.
2. Wellness app: Calm, Headspace, Endel 의 일부 generative track.
3. Café / co-working space ambience.
4. 매 video editing background (YouTube essay, Apple keynote interlude).
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 Visual pairing
- Pastel + warm white, generous whitespace.
- Serif heading (Cooper, Tiempos) + humanist sans body.
- Soft rounded corners, 매 sub-1px borders.
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
## 🧪 검증 상태 (Validation)
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
## 🧬 중복 검사 (Duplicate Check)
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
## 🕓 변경 이력 (Changelog)
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 💻 코드 패턴 (Code Patterns)
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
```text
# TODO
### CSS — Zen-Pop palette tokens
```css
:root {
--zp-bg: #faf7f2;
--zp-surface: #ffffff;
--zp-ink: #2a2a2a;
--zp-accent: #e8a598; /* peach */
--zp-accent-2: #a8c5b6; /* sage */
--zp-radius: 14px;
--zp-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04);
--zp-ease: cubic-bezier(.32,.72,0,1);
}
.card {
background: var(--zp-surface);
border-radius: var(--zp-radius);
box-shadow: var(--zp-shadow);
transition: transform .4s var(--zp-ease);
}
```
## 🤔 의사결정 기준 (Decision Criteria)
### Web Audio — soft chime UI sound
```typescript
const ctx = new AudioContext();
function chime(freq = 880) {
const osc = ctx.createOscillator();
const gain = ctx.createGain();
osc.type = 'sine'; osc.frequency.value = freq;
gain.gain.setValueAtTime(0, ctx.currentTime);
gain.gain.linearRampToValueAtTime(0.15, ctx.currentTime + 0.02);
gain.gain.exponentialRampToValueAtTime(0.001, ctx.currentTime + 1.5);
osc.connect(gain).connect(ctx.destination);
osc.start(); osc.stop(ctx.currentTime + 1.5);
}
button.onclick = () => chime();
```
**선택 A를 써야 할 때:**
- *(TODO)*
### Generative ambient (Tone.js)
```typescript
import * as Tone from 'tone';
const synth = new Tone.PolySynth(Tone.Synth, {
oscillator: { type: 'triangle' },
envelope: { attack: 1.2, release: 4 },
}).toDestination();
const reverb = new Tone.Reverb(6).toDestination();
synth.connect(reverb);
**선택 B를 써야 할 때:**
- *(TODO)*
const scale = ['C4','D4','E4','G4','A4','C5'];
Tone.Transport.scheduleRepeat(time => {
const note = scale[Math.floor(Math.random()*scale.length)];
synth.triggerAttackRelease(note, '2n', time, 0.3);
}, '4n');
Tone.Transport.bpm.value = 72;
Tone.Transport.start();
```
**기본값:**
> *(TODO)*
### Motion — gentle entrance
```typescript
import { motion } from 'framer-motion';
<motion.div
initial={{ opacity: 0, y: 8 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.6, ease: [0.32, 0.72, 0, 1] }}
/>
```
## ❌ 안티패턴 (Anti-Patterns)
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Productivity / mindfulness app | Zen-Pop palette + generative ambient |
| Energetic / gaming | 매 X — pop-EDM, synthwave 가 fit |
| Enterprise B2B | tone down accent colors, keep typography |
| Marketing landing | Zen-Pop hero + bolder CTA |
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
**기본값**: warm white bg + sage/peach accent + 14px radius + sub-second eased transitions + optional ambient on user gesture.
## 🔗 Graph
- 부모: [[Aesthetic-Movements]] · [[Calm-Tech]]
- 변형: [[Lo-fi-Hip-Hop]] · [[Chillwave]] · [[Bedroom-Pop]]
- 응용: [[UI-Sound-Design]] · [[Productivity-App-Design]]
- Adjacent: [[Ambient-Music]] · [[Generative-Audio]]
## 🤖 LLM 활용
**언제**: 매 mood-board word 도출, palette/typography suggestion, copy tone draft.
**언제 X**: actual music composition (LLM ≠ DAW) — 매 audio model 또는 human composer 의 사용.
## ❌ 안티패턴
- **Loud accent on calm bg**: 매 palette mismatch.
- **Hard easing curves**: 매 jarring — 매 cubic-bezier 의 long tail 사용.
- **Auto-play loud audio**: browser block + UX violation. Always require user gesture.
- **Over-saturating ambient**: 매 user 의 focus 방해 — keep < -18 dB.
## 🧪 검증 / 중복
- Verified (Spotify editorial taxonomy, Calm/Endel sound design notes, Apple HIG sound guidelines).
- 신뢰도 B (style genre, 매 hard spec 없음).
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Zen-Pop aesthetic + UI/audio 적용 |