Install
$ agentstack add skill-sexymonk-agent-capability-core-skill-merge-governor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Skill Merge Governor
Prevent contributor merges from silently creating overlapping skills, ambiguous triggers, duplicate scripts, or fragmented ownership.
Goal
Given an incoming branch, PR, or local diff that touches skills/, scripts/, references/, or other workflow assets:
- find likely overlaps with existing repo content
- decide whether to merge into an existing skill, keep a distinct boundary, or extract shared helpers
- leave behind a clear merge decision with minimal ambiguity
Core rules
- Treat overlap detection as a merge-governance task, not a portability audit and not a generic Git conflict task.
- Prefer updating or extending an existing skill over accepting a near-duplicate skill with fuzzy boundaries.
- Keep legitimately distinct skills separate when their trigger, owner, or output contract is materially different.
- Prefer extracting shared logic into a script/reference helper when two skills need the same deterministic behavior.
- Do not merge two skills just because they use adjacent tools; merge only when the user-facing trigger and workflow contract substantially overlap.
- Do not accept a new skill with a vague description that could trigger where an existing skill already owns the request.
Workflow
- Identify the review scope.
- Prefer a concrete diff such as
base...head, a PR patch, or a list of changed paths. - Focus first on files under
skills/, then repo-levelscripts/,docs/, and schemas that support those skills.
- Run
scripts/audit_merge_overlap.pyin this skill with either:
--base-ref --head-reffor Git diff review, or--changed-pathfor explicitly supplied paths.- add
--report-outwhen you want a ready-to-review Markdown merge report
- Review the overlap report.
- Treat the script as triage, not as the final decision-maker.
- Read the SKILL.md files for the flagged pairs before deciding.
- Resolve each finding using [references/review-checklist.md](references/review-checklist.md).
- choose one of: merge into existing, keep separate with sharper boundary, extract shared helper, or reject until clarified
- If accepting the contribution, patch the repo so the final state has one clear owner per trigger/workflow.
- If declining or deferring the merge, report the exact ambiguity or redundancy that blocked acceptance.
- Update this skill's learning log when the session reveals a reusable governance rule or avoided path.
Decision standard
Merge into an existing skill when
- the new skill's trigger language substantially overlaps an existing skill
- the main workflow is the same with only minor wording or asset differences
- the new script duplicates an existing helper with only superficial changes
Keep a separate skill when
- the trigger boundary is clear and narrow
- the workflow or output contract is materially different
- combining them would make the owner skill too broad or vague
Extract a shared helper when
- two skills need the same script or reference logic
- duplication is deterministic rather than purely instructional wording
- a shared helper reduces future drift without collapsing distinct skills
Required checks
- Compare incoming skill descriptions against existing skill descriptions.
- Compare incoming script names and exact file hashes against existing scripts.
- Check whether new references merely restate an existing workflow with different wording.
- Verify that
workspace.manifest.yamland docs stay consistent if a skill is added, renamed, merged, or removed. - Reject unresolved ambiguity instead of tolerating it.
Validation checklist
Before finishing, verify:
- every added or modified skill has a clear owner and trigger boundary
- no accepted near-duplicate skill remains without explicit justification
- shared scripts are unified or intentionally duplicated with documented reason
- manifest/docs were updated if exported skills changed
- the final report names the chosen resolution for every flagged overlap
References
- Use [references/review-checklist.md](references/review-checklist.md) for the merge review sequence and resolution matrix.
- Use [references/report-template.md](references/report-template.md) for the expected review-report shape.
- Use [references/learning-log.md](references/learning-log.md) to preserve durable governance rules and avoided paths.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sexymonk
- Source: sexymonk/agent-capability-core
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.