docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거

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 폴더 제거.
This commit is contained in:
Antigravity Agent
2026-07-05 00:33:48 +09:00
parent 1cfd3bbb56
commit 9148c358d0
6455 changed files with 1 additions and 86875 deletions
@@ -0,0 +1,159 @@
---
id: wiki-2026-0508-positive-prompt
title: Positive Prompt
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Positive Prompts, Prompt, Prompt Description]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [prompt-engineering, image-generation, stable-diffusion, midjourney, flux]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: python
framework: diffusers, comfyui
---
# Positive Prompt
## 매 한 줄
> **"매 image generation에서 desired content 를 describe — subject, style, composition, quality."**. Stable Diffusion / FLUX / Midjourney 핵심 input. Negative prompt와 짝을 이루며, 2024-2025 modern model (FLUX.1, SD3, MJ v7)에서 매 natural language description이 weighted token보다 우세.
## 매 핵심
### 매 구성 요소
- **Subject**: "a woman, a robot, a cathedral".
- **Action / pose**: "running through forest", "sitting at desk".
- **Style**: "oil painting", "cyberpunk", "studio Ghibli".
- **Composition**: "wide angle", "close-up", "rule of thirds".
- **Lighting**: "golden hour", "rim light", "volumetric".
- **Quality modifier**: "highly detailed", "8k" (older models — modern은 less needed).
- **Artist / reference**: "in the style of Greg Rutkowski" (controversial).
### 매 model별 syntax
- **SD 1.5 / SDXL**: `(token:1.3)` weighted, BREAK 분리, comma list.
- **FLUX.1 / SD3**: 매 natural language paragraph가 best — token weighting less effective.
- **Midjourney v7**: `--ar 16:9 --stylize 200 --chaos 20` flag, natural prompt.
- **DALL-E 3 / GPT-Image**: 매 conversational, descriptive paragraph.
### 매 modern best practice (2025)
- Natural language sentence > comma keyword stuffing.
- 매 subject specific, then style, then technical.
- Reference image (img2img, IPAdapter, FLUX Redux) 매 단어보다 강력.
- LoRA / fine-tune이 style token 대체.
### 매 응용
1. Concept art, illustration.
2. Marketing asset gen.
3. Product mockup, fashion.
4. Storyboard, film pre-vis.
5. Game asset (texture, character sheet).
## 💻 패턴
### Diffusers SDXL (weighted)
```python
from diffusers import StableDiffusionXLPipeline
import torch
pipe = StableDiffusionXLPipeline.from_pretrained(
'stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16
).to('cuda')
prompt = ("(masterpiece:1.2), portrait of a samurai warrior, "
"intricate armor, cherry blossoms, golden hour, "
"cinematic lighting, depth of field")
neg = "low quality, blurry, deformed hands, extra fingers"
img = pipe(prompt, negative_prompt=neg, num_inference_steps=30,
guidance_scale=7.0).images[0]
```
### FLUX.1 (natural language)
```python
from diffusers import FluxPipeline
import torch
pipe = FluxPipeline.from_pretrained('black-forest-labs/FLUX.1-dev',
torch_dtype=torch.bfloat16).to('cuda')
prompt = ("A wide cinematic shot of a samurai standing under cherry "
"blossoms at golden hour. He wears intricate red and black "
"armor. Soft volumetric light filters through petals. "
"Shallow depth of field with the warrior in sharp focus.")
img = pipe(prompt, guidance_scale=3.5, num_inference_steps=28,
max_sequence_length=512).images[0]
```
### Compel (advanced weighting, SD)
```python
from compel import Compel
compel = Compel(tokenizer=pipe.tokenizer, text_encoder=pipe.text_encoder)
embeds = compel("a cat++ playing piano in a (jazz bar)1.3")
img = pipe(prompt_embeds=embeds).images[0]
```
### Midjourney v7 prompt format
```text
/imagine prompt: a samurai under cherry blossoms, golden hour,
volumetric light, cinematic --ar 21:9 --stylize 300 --v 7
```
### Modular template (programmatic)
```python
def build_prompt(subject, style, light, mood):
return (f"{subject}, {style} style, {light} lighting, "
f"{mood} mood, highly detailed composition")
p = build_prompt("a lone astronaut on Mars",
"concept art", "soft sunset", "melancholic")
```
### LoRA-augmented (style token)
```python
pipe.load_lora_weights('artist_style.safetensors')
prompt = "<lora:artist_style:0.8> portrait of woman, watercolor"
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| FLUX / SD3 / DALL-E 3 | Natural paragraph, descriptive |
| SDXL / SD 1.5 | Comma-separated, weighted tokens |
| Midjourney | Natural + flags (--ar, --stylize) |
| Specific style reproduction | LoRA + 짧은 prompt |
| Reference matching | img2img / IPAdapter > prompt |
| Batch programmatic | Template + parameter slot |
**기본값**: modern model은 natural sentence, legacy SD는 weighted comma list.
## 🔗 Graph
- 부모: [[Prompt_Engineering]] · [[Diffusion_Models]]
- 변형: [[Negative_Prompt]]
- 응용: [[Stable_Diffusion]] · [[FLUX]] · [[Midjourney]] · [[DALL-E]]
- Adjacent: [[LoRA]] · [[IPAdapter]] · [[ControlNet]] · [[ComfyUI]]
## 🤖 LLM 활용
**언제**: image gen API wrapper, batch asset generation, prompt template system, A/B test variation.
**언제 X**: 매 reference image가 있으면 img2img / IPAdapter — 매 prompt만으론 매 정확 못 reproduce.
## ❌ 안티패턴
- **Keyword spam**: "8k, hyperdetailed, ultra hd, masterpiece, best quality, ..." — 매 modern model에 무의미.
- **Contradictory style mix**: "anime, photorealistic, oil painting" — 매 confused output.
- **Overweight `(token:2.0)`**: 매 artifact, oversaturation.
- **Artist names without consent**: 매 ethical issue + many platforms ban.
- **Same prompt for all models**: 매 model별 syntax 다름 — port 필요.
## 🧪 검증 / 중복
- Verified (FLUX.1 model card, SDXL paper, Midjourney v7 docs, diffusers library docs).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — positive prompt structure + model-specific syntax (FLUX, SDXL, MJ v7) |