rule6-rights-gate
GitHub在媒体资产发布前执行权利与肖像权合规检查,验证许可、来源及真人同意情况,确保无未决风险后输出机器可读的门禁记录。
触发场景
安装
npx skills add mtarcure/claude-vibe-squad --skill rule6-rights-gate -g -y
SKILL.md
Frontmatter
{
"name": "rule6-rights-gate",
"type": "skill",
"audience": "specialist",
"description": "Hard Rule 6 pre-publication rights gate — check licensing\/provenance AND likeness\/voice consent over a generated or third-party media asset before publish\/use, and emit the machine-readable gate record. Use at the S4 Verify step of content\/image, content\/video, content\/audio-assets (or any asset headed for publication)."
}
Rule-6 Rights Gate
Fuses rights-and-provenance-gate + consent-and-likeness-check into one invokable pre-publication gate over a
media asset. It binds the decision to an immutable asset hash, checks licensing/provenance + real-person
likeness/voice consent, and emits a machine gate record. It uses non-legal language and never adjudicates fair
use / de-minimis; a material unresolved check is a HOLD, not a PASS.
Procedure
- Bind the decision to an immutable
subject_id/subject_hash/subject_versionand a versioned checklist. A modified asset (new hash) requires a NEW gate record — a prior PASS does not carry over. - Provenance + licensing, each with evidence: license/provenance, usage-terms fit (channel / territory / duration), trademark, watermark / C2PA markers, and music match. Record "identified match/similarity" in non-legal language; do NOT decide de-minimis or fair use, and never assert infringement from similarity alone.
- Likeness + consent: detect real-person likeness — voice, face, or persona. Require documented consent scope on file, OR confirm the asset is synthetic-generic (no identifiable person). Confirm the intended use (channel / territory / duration) falls within the consent granted.
- HOLD on any material unresolved check — a lookup/verification tool not wired, an unconsented real-person
likeness, an unresolved license — is
HOLD, never PASS on uncertainty. Do not self-clear a likeness. - Route PII / biometric processing to
privacy-steward(likeness work may need both; neither is legal counsel). Genuinely legal-uncertain items surface to a human / counsel, not adjudicated here. - Emit the gate record (see below).
Machine gate record (emit this)
rule6_rights_gate: # this block key names the gate type (was gate_type=rights)
result: PASS | HOLD | FAIL
gate_version: <schema/checklist version> # folded from asset-provenance-and-rights-auditor
subject_id: <stable asset id> # folded in; identifies the asset across versions
subject_hash: <hash> # decision is bound to this exact asset version
subject_version: <version> # folded in; the asset revision this decision covers
assurance: <full | restricted> # restricted when reverse-image / registry / C2PA lookups are unavailable
checklist: # each item: evidenced | held
license_provenance: <...>
usage_terms_fit: <...>
trademark: <...>
watermark_c2pa: <...>
music_match: <...>
likeness_consent: <...>
evidence_refs: [<refs>] # folded in; evidence backing the checklist items
unresolved: [<items>] # any material item here forces HOLD
privacy_handoff: <yes|no> # yes if PII/biometric processing is involved
specialist: <role> # folded in; who ran the gate
reviewer: <role> # who reviewed it
timestamp: <iso> # completion time (was completed_at)
override: <actor + reason, if a human override was recorded> # holds override_actor + override_reason
Single source. This is the one schema for the Rule-6 gate record;
departments/content/specialists/asset-provenance-and-rights-auditor.md references it rather than
restating it (one fact, one home). gate_type is dropped as redundant — the rule6_rights_gate:
block key already names the gate.
When to invoke
- The S4 Verify step of
content/image,content/video,content/audio-assets— any asset (generated or third-party) headed for publication/use.
When NOT to invoke
- Purely internal, non-published scratch assets with no real-person likeness and no third-party material — but when in doubt, run it.
- As legal advice — it produces a risk record for a human/counsel, not a legal determination.
Acceptance
- Decision is hash-bound; every checklist item is evidenced or HELD. No PASS on a material unresolved check.
- No infringement asserted from similarity alone; legal uncertainty is surfaced, not adjudicated.
- Any real-person likeness has consent on file or is HELD; consent scope matches intended use; privacy/biometric handoff made where processing is involved.
Notes — supersession + cross-lane home
- Sources fully subsumed:
shared/skills/_retired/rights-and-provenance-gate.md+shared/skills/_retired/consent-and-likeness-check.md. Every component step and acceptance condition is represented by the combined procedure and record above; the standalone skills are retirement candidates rather than parallel S4 triggers. - Canonical home:
.claude/skills/rule6-rights-gate/SKILL.md. Because its audience isspecialist,model-lanes/SKILL-HOMES.mdrequires.agents/skills/rule6-rights-gate/SKILL.mdto be a byte-identical regular file mirror. - Distinct from
privacy-steward(PII/data-flow) andasset-provenance-and-rights-auditor(the heightened-risk role that owns clearance) — this skill is the media S4 self-gate + record emitter.
版本历史
- d5262e2 当前 2026-09-11 11:25


