Files
2nd/10_Wiki/Topics/Domain_Programming/AI_and_ML/Authenticity.md
T
Antigravity Agent c24165b8bc 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>
2026-07-11 11:05:56 +09:00

6.0 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-authenticity Authenticity 10_Wiki/Topics verified self
진정성
AI authenticity
content provenance
C2PA
deepfake detection
none B 0.85 applied
authenticity
ethics
branding
ai-disclosure
c2pa
watermark
provenance
deepfake
2026-05-10 pending
language applicable_to
ethics / cryptography
Brand Strategy
Content Provenance
AI Disclosure

Authenticity

📌 한 줄 통찰

"매 진짜 의 힘". 매 internal value + 매 external action 의 일치. 매 deepfake 시대 의 가장 큰 differentiator. 매 AI 의 "I'm an AI" 의 honesty 의 trust 의 maximum.

📖 핵심

매 layer

  1. Internal consistency: 매 self 의 honesty.
  2. Relational transparency: 매 mask X.
  3. Moral courage: 매 cost 가 있어도 매 belief.
  4. Vulnerability: 매 weakness 의 share (Brené Brown).
  5. Provenance: 매 origin 의 verify 가능.

매 modern context

  1. Brand authenticity: 매 marketing 의 가장 큰 lever (Edelman Trust Barometer).
  2. Influencer: 매 BeReal, 매 unfiltered.
  3. AI content: 매 disclosure 의 default.
  4. Deepfake era: 매 provenance 의 의무.
  5. Whistleblower / journalism: 매 source verify.

매 AI 시대 의 challenge

  • Generative content: 매 image / voice / video 의 indistinguishable.
  • Personalized deepfake: 매 target 의 specific.
  • Voice cloning: 매 3 second 로 OK.
  • Synthetic media: 매 election interference.
  • Bot persona: 매 Twitter / Reddit 의 manipulation.

매 verification standard

C2PA (Coalition for Content Provenance)

  • 매 cryptographic signature 의 manifest.
  • 매 camera → edit → publish 의 chain.
  • 매 Adobe / Microsoft / Sony 의 backing.

IPTC Photo Metadata

  • 매 EXIF 의 extension.
  • 매 capture / edit history.

Watermark (visible / invisible)

  • 매 SynthID (Google).
  • 매 statistical watermark in LLM output.

Blockchain provenance

  • 매 NFT 의 origin.
  • 매 immutable timestamp.

매 detection

  • Deepfake detection: 매 ML 기반 (FaceForensics++).
  • Voice deepfake: 매 spectral analysis.
  • AI-text detection: 매 GPTZero, 매 Originality.ai (매 false positive 많음).
  • Reverse image search: 매 source 의 trace.

매 ethical 권장

  • AI 사용 의 disclose.
  • Synthetic content 의 watermark.
  • Source 의 verify.
  • Persona 의 honest (no false biography).
  • Vulnerability OK.

💻 패턴 (응용 — provenance + disclosure)

C2PA manifest (구조)

{
  "claim_generator": "Adobe Photoshop 25.0",
  "format": "image/jpeg",
  "instance_id": "xmp:iid:abc123",
  "claim": {
    "title": "My Photo",
    "format": "image/jpeg",
    "assertions": [
      { "label": "c2pa.actions",
        "data": { "actions": [{ "action": "c2pa.created" },
                              { "action": "c2pa.edited",
                                "parameters": { "name": "color-correct" } }] } },
      { "label": "c2pa.training-mining",
        "data": { "entries": { "c2pa.ai_generative_training": { "use": "notAllowed" } } } }
    ]
  },
  "signature": "..."
}

AI disclosure (UI)

<Message author="AI Assistant">
  <DisclosureBadge>AI-generated</DisclosureBadge>
  {content}
</Message>

→ 매 message-level explicit.

LLM watermark (Aaronson scheme)

# 매 generation 의 token 선택 의 cryptographic hash 의 bias
def watermark_logits(logits, prev_token, key):
    h = hash(prev_token + key)
    bias = derive_bias(h, vocab_size)  # 매 small bias
    return logits + bias

# Detection
def detect_watermark(text, key):
    score = sum(check(token, prev, key) for prev, token in pairs(text))
    return score > THRESHOLD

Content authentication (verify chain)

def verify_c2pa(image_path):
    manifest = read_c2pa_manifest(image_path)
    if not manifest: return 'unverified'
    
    if not verify_signature(manifest): return 'tampered'
    
    chain = manifest.get('chain', [])
    for step in chain:
        if not verify_step(step): return 'broken_chain'
    
    return f'authentic, {len(chain)} edits tracked'

Persona honesty

const aiPersona = {
  name: 'Aria',
  identity: 'AI assistant',  // 매 honest
  // ❌ NOT biography: 'Born in Seattle, 25 years old'
  greeting: "Hi! I'm Aria, an AI. How can I help?",
  responseToHumanQuestion: () =>
    "I'm an AI — I don't have personal experiences, but I can help you think through this.",
};

🤔 결정 기준

상황 적용
Brand strategy Vulnerability + consistency + transparency
AI agent Identity disclose + persona honest
Generative content C2PA + watermark + disclosure
Journalism Source verify + provenance
Marketing Genuine story > polished
Influencer Behind-the-scenes + flaws OK

기본값: 매 disclose + provenance + vulnerability.

🔗 Graph

🤖 LLM 활용

언제: 매 brand / agent persona design. 매 content provenance system. 매 AI disclosure policy. 언제 X: 매 fake "vulnerability" 의 manipulation. 매 manufactured 'authentic' marketing.

안티패턴

  • Performative vulnerability: 매 fake 의 share.
  • Fake AI persona biography: 매 deception.
  • No disclosure: 매 trust 의 long-term destroy.
  • Watermark 의 옵션 (audit 없이): 매 disable 의 OK.
  • C2PA 의 partial: 매 missing step 의 invalidate.
  • "매 perfect = 매 authentic": 매 polished 의 manufactured 의 의심.

🧪 검증 / 중복

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — layers + C2PA + watermark + AI disclosure