refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조

에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게
[공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류.
문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인).

- Topic_Programming → Domain_Programming (내부 구조 보존)
- Topic_Graphic → Domain_Design
- Topic_Business → Domain_Product
- Topic_General → Domain_General
- _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning),
  Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing)
- 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서)
- 빈 폴더 정리 (memory/procedures)
- 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Antigravity Agent
2026-07-11 11:05:56 +09:00
parent 6549ead309
commit c24165b8bc
6193 changed files with 1717 additions and 31 deletions
@@ -0,0 +1,184 @@
---
id: wiki-2026-0508-brand-identity-management
title: Brand Identity Management
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [P-REINFORCE-AUTO-F8EDF9, Brand Identity, BI Management]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [branding, marketing, design-systems, identity]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: typescript
framework: figma-tokens
---
# 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.
### 매 응용
1. Multi-product company 의 sub-brand 관리 (Atlassian Jira/Confluence/Trello).
2. Localization 의 culturally-adapted asset variant.
3. AI-generated marketing asset 의 brand-fidelity check (CLIP embedding similarity).
## 💻 패턴
### 패턴 1: Design Token 정의 (Style Dictionary)
```json
{
"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
```js
// 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)
```python
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
```python
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
```python
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)
```python
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|Style Dictionary]] · [[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) |