c24165b8bc
에이전트 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>
4.5 KiB
4.5 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-cssom | CSSOM | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
CSSOM
매 한 줄
"매 CSS 의 JS-accessible object tree". CSSOM (CSS Object Model) 은 browser 가 parsed CSS 의 representation 의 object 의 노출 의 API. DOM 의 sibling 의 매 render tree 의 input. 2026 modern browser 의 매
getComputedStyle, CSS Typed OM (Houdini) 의 안정 사용.
매 핵심
매 CSSOM 구조
document.styleSheets—StyleSheetList- 각
CSSStyleSheet→cssRules(CSSRule list) CSSStyleRule→selectorText,style(CSSStyleDeclaration)element.style— inline style 의 declarationgetComputedStyle(el)— cascaded + inherited final value
매 Render pipeline 의 위치
- HTML → DOM tree
- CSS → CSSOM tree
- DOM + CSSOM → Render tree
- Layout (reflow) → Paint → Composite
매 CSSOM 조작 의 cost
style읽기/쓰기: 매 cheap (inline 만)getComputedStyle: 매 expensive (force layout)cssRules의 mutation: 매 sheet 전체 invalidation
매 응용
- Theme switching (CSS variable 의 JS 조작).
- Animation (Web Animations API).
- Style introspection (DevTools, testing).
- Houdini (CSS Typed OM, Paint Worklet).
- Stylesheet 의 동적 generation.
💻 패턴
CSS Variable 의 JS 조작
const root = document.documentElement;
root.style.setProperty('--accent', '#0070f3');
// 읽기
const accent = getComputedStyle(root)
.getPropertyValue('--accent')
.trim();
getComputedStyle (final value)
const el = document.querySelector('.card');
const styles = getComputedStyle(el);
console.log(styles.fontSize); // "16px"
console.log(styles.color); // "rgb(17, 17, 17)"
console.log(styles.gridTemplateColumns); // resolved tracks
Inline style 직접
el.style.transform = 'translateX(100px)';
el.style.setProperty('--x', '100px');
CSSStyleSheet API (constructable)
const sheet = new CSSStyleSheet();
sheet.replaceSync(`
.toast { background: #111; color: #fff; padding: 1rem; }
`);
document.adoptedStyleSheets = [...document.adoptedStyleSheets, sheet];
CSS Typed OM (Houdini)
const el = document.querySelector('.box');
el.attributeStyleMap.set('width', CSS.px(200));
const w = el.computedStyleMap().get('width');
console.log(w.value, w.unit); // 200, "px"
Stylesheet 의 inspection
for (const sheet of document.styleSheets) {
try {
for (const rule of sheet.cssRules) {
if (rule.type === CSSRule.STYLE_RULE) {
console.log(rule.selectorText, rule.style.cssText);
}
}
} catch (e) {
// CORS-blocked external sheet
}
}
Web Animations API (CSSOM 기반)
el.animate(
[{ opacity: 0 }, { opacity: 1 }],
{ duration: 300, easing: 'ease-out', fill: 'forwards' }
);
매 결정 기준
| 상황 | Approach |
|---|---|
| Final computed value 필요 | getComputedStyle |
| CSS variable toggle | style.setProperty('--x', ...) |
| Dynamic stylesheet | CSSStyleSheet + adoptedStyleSheets |
| Type-safe value | CSS Typed OM (CSS.px()) |
| 1회 animation | Web Animations API |
| 큰 DOM 의 style read | batch — RAF 의 sync |
기본값: CSS variable + setProperty (가장 cheap + composable).
🔗 Graph
- 부모: DOM · Browser Rendering
- 응용: Theme Switching · Web Animations API
- Adjacent: Render Tree · Critical Rendering Path (CRP) · CSS_Architecture_and_Styling
🤖 LLM 활용
언제: theme system, dynamic styling, JS-driven animation 코드 generation. 언제 X: 매 declarative CSS 의 sufficient — 매 JS 의 X.
❌ 안티패턴
- Layout thrashing: read → write → read pattern — 매 batch read first.
style.cssText의 overwrite: 기존 style 의 destroy — 매 individual property.!important의 JS 의 abuse: cascade 의 deadlock.- 모든 frame 의
getComputedStyle: layout force — RAF 의 sync.
🧪 검증 / 중복
- Verified (W3C CSSOM spec, MDN CSSOM, Houdini).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — CSSOM API + Typed OM + WAAPI |