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 폴더 제거.
6.2 KiB
6.2 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-brand-identity-management | Brand Identity Management | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Brand Identity Management
매 한 줄
"매 brand 의 systematic codification". 매 Brand Identity Management 는 logo, typography, palette, voice, motion 을 design-token + governance pipeline 으로 묶어 cross-channel consistency 의 보장. 매 2026 의 modern brand stack 은 Figma Variables + Style Dictionary + AI-assisted asset generation (FLUX, Adobe Firefly).
매 핵심
매 brand asset 분류
- Visual: logo, color palette, typography, iconography, photography style.
- Verbal: tone of voice, lexicon, naming convention.
- Motion: easing curves, timing, transition vocabulary.
- Sonic: audio logo, UI sounds.
매 governance layer
- Design tokens: 매 single source of truth (Figma Variables → Style Dictionary → CSS/iOS/Android).
- Brand portal: 매 self-service asset library (Frontify, Brandfolder).
- Approval workflow: 매 marketing automation 의 brand-safe template.
매 응용
- Multi-product company 의 sub-brand 관리 (Atlassian Jira/Confluence/Trello).
- Localization 의 culturally-adapted asset variant.
- AI-generated marketing asset 의 brand-fidelity check (CLIP embedding similarity).
💻 패턴
패턴 1: Design Token 정의 (Style Dictionary)
{
"color": {
"brand": {
"primary": { "value": "#FF6B35", "comment": "Antigravity Orange" },
"accent": { "value": "#1B1B1F" },
"surface": { "value": "#FAFAFA" }
}
},
"typography": {
"display": {
"value": {
"fontFamily": "Inter",
"fontWeight": 700,
"fontSize": "48px",
"lineHeight": 1.1
}
}
}
}
패턴 2: Token → Multi-platform output
// style-dictionary.config.js
module.exports = {
source: ['tokens/**/*.json'],
platforms: {
css: { transformGroup: 'css', buildPath: 'dist/css/', files: [{ destination: 'tokens.css', format: 'css/variables' }] },
ios: { transformGroup: 'ios', buildPath: 'dist/ios/', files: [{ destination: 'Tokens.swift', format: 'ios-swift/class.swift' }] },
android:{ transformGroup: 'android',buildPath: 'dist/android/',files: [{ destination: 'tokens.xml', format: 'android/resources' }] }
}
};
패턴 3: Brand-fidelity check (CLIP)
import torch
import clip
from PIL import Image
device = "cuda" if torch.cuda.is_available() else "cpu"
model, preprocess = clip.load("ViT-B/32", device=device)
BRAND_PROMPT = "Antigravity orange, minimal modern tech brand, geometric"
def brand_fidelity(image_path: str) -> float:
image = preprocess(Image.open(image_path)).unsqueeze(0).to(device)
text = clip.tokenize([BRAND_PROMPT]).to(device)
with torch.no_grad():
image_features = model.encode_image(image)
text_features = model.encode_text(text)
sim = torch.cosine_similarity(image_features, text_features).item()
return sim # > 0.28 → on-brand
패턴 4: AI-generated asset 의 brand guardrail
from anthropic import Anthropic
client = Anthropic()
def critique_asset(asset_url: str, guidelines: str) -> dict:
response = client.messages.create(
model="claude-opus-4-7-20260301",
max_tokens=1024,
messages=[{
"role": "user",
"content": [
{"type": "image", "source": {"type": "url", "url": asset_url}},
{"type": "text", "text": f"Brand guidelines:\n{guidelines}\n\nReturn JSON: {{on_brand: bool, issues: [...], score: 0-1}}"}
]
}]
)
return response.content[0].text
패턴 5: Tone-of-voice classifier
TONE_REFERENCE = {
"playful": ["hey", "let's", "boom", "yay"],
"formal": ["please", "kindly", "we regret"],
"antigravity": ["lift", "soar", "weightless", "boundless"]
}
def classify_tone(text: str) -> str:
scores = {tone: sum(text.lower().count(w) for w in words)
for tone, words in TONE_REFERENCE.items()}
return max(scores, key=scores.get)
패턴 6: Logo placement validator (CV)
import cv2
import numpy as np
def safe_zone_violation(image, logo_bbox, min_padding_ratio=0.1):
h, w = image.shape[:2]
x, y, lw, lh = logo_bbox
pad_x = min_padding_ratio * w
pad_y = min_padding_ratio * h
return (x < pad_x or y < pad_y or
x + lw > w - pad_x or y + lh > h - pad_y)
매 결정 기준
| 상황 | Approach |
|---|---|
| Multi-platform consistency | Style Dictionary + Figma Variables |
| AI-asset workflow | CLIP fidelity gate + human review |
| Sub-brand 관리 | shared core tokens + brand-specific overrides |
| Rapid iteration startup | Figma Library only, defer token build |
| Enterprise compliance | Frontify/Brandfolder + approval workflow |
기본값: Figma Variables → Style Dictionary → CLIP gate. 매 token-first.
🔗 Graph
- 부모: Design Systems · Marketing
- Adjacent: Style Dictionary Pipelines · Figma Variables · CLIP
🤖 LLM 활용
언제: brand audit, tone consistency check, asset critique, copy generation 의 voice guardrail. 언제 X: 매 high-stakes legal trademark review — 매 lawyer 의 영역.
❌ 안티패턴
- Token sprawl: 매 ad-hoc 50+ color token. 매 semantic naming (primary/secondary) 으로 collapse.
- Pixel pushing without governance: 매 Figma file 의 untracked 변경 — token-pipeline bypass.
- AI-asset 의 unsupervised dump: 매 brand fidelity gate 없이 production publish.
🧪 검증 / 중복
- Verified (Style Dictionary docs, Figma Variables docs, Frontify case studies).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — substantive content + 2026 stack (CLIP gate, AI-asset workflow) |