9148c358d0
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 폴더 제거.
4.6 KiB
4.6 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-zen-pop | Zen Pop | 10_Wiki/Topics | verified | self |
|
none | B | 0.75 | applied |
|
2026-05-10 | pending |
|
Zen Pop
매 한 줄
"매 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.
매 핵심
매 Sonic 특징
- BPM 60-90, 매 4/4, soft attack instruments (Rhodes, marimba, Juno pad).
- Reverb-rich, sidechain compression light, vocal whisper register.
- 매 hook 의 존재 — 매 ambient 와 다름.
매 적용 도메인
- UI/UX: Calm tech (Notion, Linear, Things, Bear) 의 sound design.
- Wellness app: Calm, Headspace, Endel 의 일부 generative track.
- Café / co-working space ambience.
- 매 video editing background (YouTube essay, Apple keynote interlude).
매 Visual pairing
- Pastel + warm white, generous whitespace.
- Serif heading (Cooper, Tiempos) + humanist sans body.
- Soft rounded corners, 매 sub-1px borders.
💻 패턴
CSS — Zen-Pop palette tokens
: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);
}
Web Audio — soft chime UI sound
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();
Generative ambient (Tone.js)
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);
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();
Motion — gentle entrance
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] }}
/>
매 결정 기준
| 상황 | 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 |
기본값: warm white bg + sage/peach accent + 14px radius + sub-second eased transitions + optional ambient on user gesture.
🔗 Graph
🤖 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 적용 |