Agent Skillsmtarcure/claude-vibe-squad › rule6-rights-gate

rule6-rights-gate

GitHub

在媒体资产发布前执行权利与肖像权合规检查,验证许可、来源及真人同意情况,确保无未决风险后输出机器可读的门禁记录。

.agents/skills/rule6-rights-gate/SKILL.md mtarcure/claude-vibe-squad

Trigger Scenarios

内容或图像/视频/音频资产准备发布 S4 验证步骤中的合规审查

Install

npx skills add mtarcure/claude-vibe-squad --skill rule6-rights-gate -g -y
More Options

Non-standard path

npx skills add https://github.com/mtarcure/claude-vibe-squad/tree/main/.agents/skills/rule6-rights-gate -g -y

Use without installing

npx skills use mtarcure/claude-vibe-squad@rule6-rights-gate

指定 Agent (Claude Code)

npx skills add mtarcure/claude-vibe-squad --skill rule6-rights-gate -a claude-code -g -y

安装 repo 全部 skill

npx skills add mtarcure/claude-vibe-squad --all -g -y

预览 repo 内 skill

npx skills add mtarcure/claude-vibe-squad --list

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

  1. Bind the decision to an immutable subject_id / subject_hash / subject_version and a versioned checklist. A modified asset (new hash) requires a NEW gate record — a prior PASS does not carry over.
  2. 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.
  3. 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.
  4. 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.
  5. 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.
  6. 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 is specialist, model-lanes/SKILL-HOMES.md requires .agents/skills/rule6-rights-gate/SKILL.md to be a byte-identical regular file mirror.
  • Distinct from privacy-steward (PII/data-flow) and asset-provenance-and-rights-auditor (the heightened-risk role that owns clearance) — this skill is the media S4 self-gate + record emitter.

Version History

  • d5262e2 Current 2026-09-11 11:25

Same Skill Collection

.agents/skills/accessible-media-authoring/SKILL.md
.agents/skills/agent-prompt-engineering/SKILL.md
.agents/skills/agentic-safety-audit/SKILL.md
.agents/skills/audio-event-map-authoring/SKILL.md
.agents/skills/auto-scaffold/SKILL.md
.agents/skills/claim-verification/SKILL.md
.agents/skills/code-reachability-audit/SKILL.md
.agents/skills/code-review-loop/SKILL.md
.agents/skills/color-theory/SKILL.md
.agents/skills/conversation-design/SKILL.md
.agents/skills/copy-refinement/SKILL.md
.agents/skills/cross-file-relationship-synthesis/SKILL.md
.agents/skills/dependency-cycle-audit/SKILL.md
.agents/skills/dependency-health-triage/SKILL.md
.agents/skills/detection-as-code/SKILL.md
.agents/skills/diff-aware-semgrep-scan/SKILL.md
.agents/skills/differential-review/SKILL.md
.agents/skills/dimensional-analysis-check/SKILL.md
.agents/skills/dual-level-retrieval/SKILL.md
.agents/skills/figma-implement-design/SKILL.md
.agents/skills/forensic-timeline-authoring/SKILL.md
.agents/skills/game-design-fundamentals/SKILL.md
.agents/skills/game-mechanics-balancing/SKILL.md
.agents/skills/head-tail/SKILL.md
.agents/skills/incident-response-runbook/SKILL.md
.agents/skills/interactive-audio-design/SKILL.md
.agents/skills/interface-ambiguity-check/SKILL.md
.agents/skills/keyword-clustering/SKILL.md
.agents/skills/knowledge-base-integration/SKILL.md
.agents/skills/layered-analysis-loop/SKILL.md
.agents/skills/level-design-patterns/SKILL.md
.agents/skills/locale-adaptation/SKILL.md
.agents/skills/narrative-structure/SKILL.md
.agents/skills/platform-compliance/SKILL.md
.agents/skills/player-engagement-psychology/SKILL.md
.agents/skills/requirements-elicitation/SKILL.md
.agents/skills/rule8-truth-gate/SKILL.md
.agents/skills/sandbox-provision-discipline/SKILL.md
.agents/skills/scope-decomposition/SKILL.md
.agents/skills/scope-estimation/SKILL.md
.agents/skills/security-ownership-map/SKILL.md
.agents/skills/security-threat-model/SKILL.md
.agents/skills/semgrep-rule-author/SKILL.md
.agents/skills/skill-description-trigger-authoring/SKILL.md
.agents/skills/sound-design-principles/SKILL.md
.agents/skills/structured-data-authoring/SKILL.md
.agents/skills/supply-chain-audit/SKILL.md
.agents/skills/take-over-resume/SKILL.md
.agents/skills/technical-seo-audit/SKILL.md

Metadata

Files
0
Version
d5262e2
Hash
642fc86f
Indexed
2026-09-11 11:25

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-13 05:14
浙ICP备14020137号-1 $Map of visitor$