Files
2nd/10_Wiki/Topic_Programming/DevOps_and_Security/Digital Intellectual Property Rights.md
T
Antigravity Agent 9148c358d0 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 폴더 제거.
2026-07-05 00:33:48 +09:00

5.3 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-digital-intellectual-property-ri Digital Intellectual Property Rights 10_Wiki/Topics verified self
Digital IP
Software IP
Digital Rights
none A 0.9 applied
legal
ip
licensing
copyright
2026-05-10 pending
language framework
legal licenses

Digital Intellectual Property Rights

매 한 줄

"매 digital IP 의 의미: 매 software / data / model 의 매 ownership, license, attribution 권리". 매 copyright (default) + 매 license (grant) + 매 patent (algorithm) + 매 trade secret 의 4 axis. 매 2026 AI 시대 의 매 training data 권리, 매 model weights 권리, 매 LLM output 권리 의 매 hot frontier.

매 핵심

매 4 axis

  • Copyright: 매 expression (code, art, text) 의 default 보호 — 매 author 의 lifetime + 70년
  • License: 매 author 의 매 grant — MIT, Apache, GPL, proprietary
  • Patent: 매 invention (algorithm, system) — 매 20년, 매 applied required
  • Trade secret: 매 confidential 정보 — 매 indefinite, 매 reasonable protection 요구

Open Source 의 매 spectrum

  • Permissive: MIT, Apache 2.0, BSD — 매 commercial use OK
  • Weak copyleft: LGPL, MPL — 매 modified file 만 share
  • Strong copyleft: GPL, AGPL — 매 entire derivative work share
  • Source-available: BUSL, SSPL — 매 commercial restriction (NOT OSI-approved)

매 AI/ML specific (2026)

  • Training data: 매 fair use 논쟁 (NYT v. OpenAI, Authors Guild v. Anthropic)
  • Model weights: 매 copyrightable? (매 unsettled, 매 case law evolving)
  • AI output: 매 US Copyright Office (2023) — 매 human authorship required
  • Style transfer: 매 artist 의 매 trademark 가능성

매 응용

  1. 매 OSS dependency audit (license compatibility).
  2. 매 employee invention assignment.
  3. 매 LLM output 의 commercial use 결정.

💻 패턴

License File 의 매 MIT

MIT License

Copyright (c) 2026 Acme Corp

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND...

SPDX 의 매 file header

// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 Acme Corp

License Audit 의 매 tooling

# 매 npm 의 license check
npx license-checker --production --summary

# 매 SBOM 생성 (CycloneDX)
npx @cyclonedx/cyclonedx-npm --output-format JSON --output-file sbom.json

# 매 incompatible license 의 매 fail
npx license-checker --failOn 'GPL-3.0;AGPL-3.0'

CLA / DCO (Contributor)

# DCO sign-off
git commit -s -m "feat: add foo"
# Signed-off-by: Jane <jane@acme.com>

REUSE Compliance (EU 표준)

# .reuse/dep5
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Files: src/*
Copyright: 2026 Acme Corp
License: Apache-2.0

Files: vendor/*
Copyright: 2024 Original Author
License: MIT

AI Model Card 의 매 license clarity

# Model Card: acme-llm-v2

## License
- **Weights**: Llama 3 Community License (Meta)
- **Code**: Apache 2.0 (Acme)
- **Training data**: Mixed (CC-BY, public domain, licensed proprietary)

## Permitted Use
- Commercial use < 700M MAU OK (per Llama license)
- Fine-tuning OK
- Redistributing weights: see Llama license restrictions

매 결정 기준

상황 Approach
Internal-only project 매 proprietary, 매 no public license
Open source library 매 MIT (max adoption) / Apache 2.0 (patent grant)
Want commercial fork prevention 매 AGPL / BUSL
Enterprise SaaS 매 proprietary EULA + 매 SOC2
AI model release 매 OpenRAIL / 매 community license + 매 model card

기본값: 매 Apache 2.0 (OSS) / 매 proprietary EULA (commercial).

🔗 Graph

🤖 LLM 활용

언제: 매 license compatibility 의 first-pass check, 매 EULA draft 의 starter, 매 model card 의 generation. 언제 X: 매 actual legal advice — 매 lawyer required. 매 jurisdiction-specific (US v. EU v. JP) 의 매 LLM error 위험.

안티패턴

  • 매 license 의 X (no LICENSE file): 매 default = all rights reserved → 매 사용 불가.
  • 매 GPL code 의 매 proprietary product 에 mix: 매 entire codebase 의 GPL infect.
  • 매 LLM output 의 무비판 commercial 사용: 매 training data attribution 위험.
  • 매 employee NDA 없음: 매 trade secret 의 protection 불가.

🧪 검증 / 중복

  • Verified (OSI license list, SPDX, US Copyright Office AI guidance 2023).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Digital IP rights full content