mcpbeat Sign in

Find Duplicate Ownership Agent Skill

Find duplicate ownership, hidden second sources of truth, and contract drift in layered codebases. Use when reviewing normalization, validation, defaulting, canonicalization, persistence mapping, runtime-vs-durable state, duplicated helpers, query or cache ownership, or any "who owns this rule?" architecture question. Especially useful for SSOT audits across frontend, backend, shared core, and adapter layers, and when the user explicitly asks for duplicate-ownership exploration with subagents.

3k tokens
context cost
the whole folder, loaded on every use
7
files
instructions only
0
copies elsewhere
how many repositories repackaged it
131
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/instructa/agent-skills --skill find-duplicate-ownership

What comes with it

6 458 bytes besides the instruction
README.md
agents/duplicate-ownership-explorer.toml
agents/openai.yaml
agents/ownership-taxonomy-mapper.toml
agents/ssot-judge.toml
references/audit-prompts.md

What it tells the agent to use

found in the instruction text
Task spawns other agents

The instruction itself

8 sections, as written by the author

Find Duplicate Ownership

Overview

Audit the codebase for multiply-owned rules instead of blindly grepping normalize.

Classify each case as real SSOT drift, local dedupe cleanup, legitimate boundary work, or legitimate domain constraint.

Workflow

  • Define the audit target before searching.

Narrow by feature, contract, package, service, or file slice when possible.

Good targets: session state, persistence contracts, runtime geometry, provider options, path helpers, JSON canonicalization.

  • Build a taxonomy first.

Use these buckets:

  • architecture / SSOT bug: same business rule owned in more than one layer
  • local dedupe cleanup: same helper semantics copied nearby
  • legitimate boundary adapter: wire, vendor, or untrusted input transformation with one clear owner
  • legitimate domain constraint: runtime clamp, math, security, or path logic that cannot be removed architecturally
  • Search for ownership smells, not words.

Look for:

  • validation, defaults, or clamps duplicated across frontend and backend
  • generated bindings or shared type aliases hiding the real contract owner
  • runtime mutators calling boundary repair or coercion
  • persisted shape differing from runtime shape and requiring glue
  • query, store, or cache logic re-owning domain policy
  • two helpers with the same semantics but different names
  • thin wrapper functions that hide a second path
  • copied deterministic serializers or hash inputs
  • local component, hook, or service helper clones instead of one domain owner
  • Separate true duplicates from valid boundaries.

Do not flag these by default:

  • pure UI formatting or presentation transforms
  • provider or protocol adapters with one clear boundary owner
  • security or path canonicalization with one clear security owner
  • runtime-only clamp or math logic with one clear runtime owner
  • For each finding, name the winning owner.

Always answer:

  • what exact rule is multiply owned
  • who owns it today
  • who should own it
  • what gets deleted in a hard cut
  • whether anything remains as real boundary adapter code

Heuristics

  • Be suspicious when frontend and backend both shape or repair the same contract.
  • Be suspicious when trusted runtime state is "normalized" after every mutation.
  • Be suspicious when query glue, cache glue, or store glue maps between two supposedly canonical state shapes.
  • Be suspicious when multiple languages or services define the same min, max, enum, or default constants independently.
  • Be suspicious when a helper exists in a domain library and again in a hook, component, controller, or service.

Subagent Use

Only use subagents when the user explicitly asks for them or asks for parallel exploration.

Reusable read-only agent definitions live in this skill's agents/ directory:

  • ownership-taxonomy-mapper.toml

Use first for broad slice mapping and taxonomy.

  • duplicate-ownership-explorer.toml

Use one per independent slice: persistence, runtime state, contracts, helpers, adapters.

  • ssot-judge.toml

Use after explorers when you need one strict verdict on winning owner and hard-cut cleanup.

Recommended fan-out:

  • 1 taxonomy mapper
  • 2 to 5 explorers for disjoint slices
  • 1 SSOT judge to merge and challenge findings

Tell subagents:

  • stay read-only
  • cite files and symbols
  • do not propose compatibility shims
  • distinguish duplicate ownership from legitimate boundary work
  • return winner owner plus delete or keep plan

Output Contract

For each finding, return:

  • severity
  • rule or contract being multiply owned
  • competing owners
  • why it is a duplicate-owner bug or why it is legitimate boundary work
  • exact files or symbols
  • recommended single owner
  • hard-cut cleanup:
  • delete
  • keep
  • rename
  • classification:
  • architecture / SSOT bug
  • local dedupe cleanup
  • legitimate boundary adapter
  • legitimate domain constraint

Order findings by severity, then finish with a prioritized backlog by impact versus effort.

Prompting

Use prompt patterns from references/audit-prompts.md.

Guardrails

  • Do not reduce the audit to rg normalize.
  • Do not flag every adapter or clamp as bad architecture.
  • Do not recommend wrappers, fallbacks, shims, or dual paths.
  • Prefer deleting the losing owner, not introducing a mediator.
  • If ownership is ambiguous because the diff is mixed or the contract is unclear, say so explicitly.

Other skills for the same job

different authors, same section of the catalogue
Hook Development
by anthropics
vendor ×2

This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.

16k tokens scripts
Hook Development
by anthropics
vendor ×2

This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.

16k tokens scripts
Copilot SDK
by christophacham
×2

Build agentic applications with GitHub Copilot SDK. Use when embedding AI agents in apps, creating custom tools, implementing streaming responses, managing sessions, connecting to MCP servers, or creating custom agents. Triggers on Copilot SDK, GitHub SDK, agentic app, embed Copilot, programmable agent, MCP server, custom agent.

6k tokens
Cass
by Dicklesworthstone
×2

Coding Agent Session Search - unified CLI/TUI to index and search local coding agent history from Claude Code, Codex, Gemini, Cursor, Aider, ChatGPT, Pi-Agent, Factory, and more. Purpose-built for AI agent consumption with robot mode.

6k tokens
Dcg
by Dicklesworthstone
×2

Destructive Command Guard - High-performance Rust hook for Claude Code that blocks dangerous commands before execution. SIMD-accelerated, modular pack system, whitelist-first architecture. Essential safety layer for agent workflows.

4k tokens
Makepad Skills
by ComeOnOliver
×2

Makepad UI development skills for Rust apps: setup, patterns, shaders, packaging, and troubleshooting.

2k tokens
Varlock Claude Skill
by ComeOnOliver
×2

Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits

3k tokens
Create Agentsmd
by github
vendor ×1

Prompt for generating an AGENTS.md file for a repository

2k tokens

How to use it

Copy the folder

Take instructa/find-duplicate-ownership from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.