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>
5.4 KiB
5.4 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-island-architecture | Island Architecture | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Island Architecture
매 한 줄
"매 mostly-static HTML 의 sea 의 isolated interactive 'island' 의 selective hydration 의 통한 ship-less-JS". 매 Katie Sylor-Miller (2019) 의 term, Jason Miller (2020) 의 popularization, 매 Astro (2021) / Fresh (Deno) / Marko / Qwik 의 implementation — 매 SPA-everything 의 over-hydration 의 backlash.
매 핵심
매 핵심 idea
- Server 의 HTML 의 render (default).
- 매 interactive component (island) 의 isolated hydration boundary.
- 매 island 의 own JS bundle, 매 nothing else 의 ship.
- 매 island 간 의 share state 의 X (or framework-specific signal).
매 Hydration directive (Astro)
client:load— 매 page load 의 즉시.client:idle—requestIdleCallback.client:visible— IntersectionObserver.client:media="(min-width: 768px)"— viewport conditional.client:only="react"— server render skip, client only.
매 응용
- Content sites (blog, docs, marketing).
- E-commerce (정적 product page + interactive cart island).
- News / publishing (정적 article + comment island).
💻 패턴
Astro — React Island
---
// src/pages/index.astro
import Counter from '../components/Counter.tsx';
import Newsletter from '../components/Newsletter.tsx';
const posts = await fetch(import.meta.env.CMS_URL).then(r => r.json());
---
<html>
<body>
<h1>Blog</h1>
<ul>{posts.map(p => <li>{p.title}</li>)}</ul>
<Counter client:visible /> <!-- island, lazy hydrate -->
<Newsletter client:idle /> <!-- island, idle hydrate -->
</body>
</html>
Astro — Mixed Frameworks (one page, multiple)
---
import VueWidget from './Widget.vue';
import SvelteChart from './Chart.svelte';
import SolidSearch from './Search.tsx';
---
<VueWidget client:load />
<SvelteChart client:visible />
<SolidSearch client:idle />
Fresh (Deno) — Island
// islands/Counter.tsx
import { useSignal } from '@preact/signals';
export default function Counter() {
const count = useSignal(0);
return <button onClick={() => count.value++}>{count.value}</button>;
}
// routes/index.tsx
import Counter from '../islands/Counter.tsx';
export default function Home() {
return <main><h1>Home</h1><Counter /></main>;
}
Qwik — Resumability (zero hydration)
// src/routes/index.tsx
import { component$, useSignal } from '@builder.io/qwik';
export default component$(() => {
const count = useSignal(0);
return (
<button onClick$={() => count.value++}>
Clicks: {count.value}
</button>
);
});
// 매 click 의 시 의 only 의 download — true progressive
Marko 5 — Streaming Islands
<!doctype html>
<html>
<body>
<h1>Products</h1>
<await(productPromise)>
<@then|products|>
<for|p| of=products>
<product-card p=p/>
</for>
</@then>
</await>
</body>
</html>
Performance Budget Check
# .lighthouserc.yml
ci:
collect: { url: ['https://example.com/'] }
assert:
assertions:
total-byte-weight: ['error', { maxNumericValue: 200000 }]
total-blocking-time: ['error', { maxNumericValue: 200 }]
interaction-to-next-paint: ['error', { maxNumericValue: 200 }]
매 결정 기준
| 상황 | Approach |
|---|---|
| Content-heavy, low interactivity | Astro (default) |
| Per-route framework choice | Astro multi-framework |
| Edge / Deno preference | Fresh |
| App-shell SPA feel | Next.js / Remix (RSC + Suspense) |
| Zero-hydration target | Qwik |
기본값: 매 marketing/blog/docs — Astro + island per interactive component. 매 dashboard-y app — Next.js RSC.
🔗 Graph
- 부모: Web-Rendering-Strategies · 프론트엔드 및 UIUX 표준
- 변형: Partial-Hydration · Resumability · Streaming SSR
- 응용: Astro · Qwik
- Adjacent: React Server Components — 경계 의식 · Incremental-Static-Regeneration-ISR · MPA
🤖 LLM 활용
언제: page 의 island boundary 의 propose, hydration directive 의 select, JS bundle 의 reduction 의 suggest. 언제 X: 매 framework 의 final choice (team skill, ecosystem fit 의 human decision).
❌ 안티패턴
- Island sprawl: 매 component 의
client:load→ SPA equivalent. - Cross-island state: 매 island 의 shared store 의 hack — 매 framework boundary 의 violation.
- Server-only data 의 island leak: secret/PII 의 client island prop 의 pass.
client:onlyoveruse: server render 의 skip → SEO 의 hurt + LCP 의 regress.- Wrong tool: 매 highly interactive app (Figma-like) 의 Astro 의 force-fit.
🧪 검증 / 중복
- Verified (Jason Miller "Islands Architecture" 2020, Astro 4 docs, Fresh docs, web.dev).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — island architecture (Astro/Fresh/Qwik) 의 full content |