Join a video meeting as an AI bot with voice, avatar, and screenshare across four operating modes.
Coding
Skill Collision Guard
Try itDetect and suppress conflicting agent skills
What it does
Use the deterministic CLI bundled with this skill instead of judging conflicts from names alone. Resolve the runtime root from this path:
The skill document
Skill Collision Guard
Use the deterministic CLI bundled with this skill instead of judging conflicts from names alone. Resolve the runtime root from this SKILL.md path:
- Standalone/ClawHub bundle: use this skill directory.
- Host plugin bundle: use the nearest ancestor that contains
bin/skill-guard.jsandsrc/.
Then run:
node /bin/skill-guard.js check-install --agent --session
The candidate can be a local skill/plugin path, a GitHub URL or owner/repo, or a locally configured plugin@marketplace reference.
Runtime and Access
- Requires Node.js 18 or newer. Remote Git candidates also use the declared
gitbinary. - Inventory scans read
SKILL.mdfiles only from the explicit project, user, system, extension, and plugin-cache roots owned by the selected host. They do not crawl the entire home directory. - Local candidate checks read files below the user-supplied candidate path. The detector parses instructions but never executes candidate skill code.
- Remote candidate checks launch
git clone --depth 1as a child process with a 20-second default timeout. The clone is created under the operating-system temporary directory and removed after success or failure. - Suppression writes only a small JSON state file under
$SKILL_GUARD_STATE_DIR,$XDG_STATE_HOME/skill-collision-guard, or the platform user-state directory. Session end removes only that session file. - The detector does not install, remove, rename, or edit another skill. It does not request credentials or transmit the contents of installed skills to a service.
Decisions
name-shadow: two skills expose the same normalized name. Recommend keeping one.capability-collision: differently named skills provide the same capability. Compare their full instructions before choosing one.capability-conflict: the same capability is governed by incompatible roles or behavior. Ask which behavior applies.capability-overlap: related capability facets may coexist if their trigger boundaries are clear.behavioral-interference: a global write policy can alter a fixed workflow. Keep the fixed workflow authoritative and suppress the overlay while they overlap.complementary: the skills cover separate, useful passes. Keep both and run them separately.policy-conflict: their scopes overlap but their instructions disagree. Ask which policy applies to the current task.probable-duplicate: their goals and instructions substantially overlap. Recommend the narrower or better-maintained skill.overlap: both may trigger, but can coexist if their descriptions clearly separate their scopes.
Show the compared names, paths, descriptions, relationship type, score, evidence source, affected workflows, opposing policies, and recommendation. Treat curated and automatic results as evidence requiring semantic review, except exact same-name shadowing. For a consequential decision, read both SKILL.md files before advising which one to remove. Never remove, rename, or edit an installed skill without the user's approval.
An exit status of 2 means installation needs a user decision, including medium behavioral interference. Do not bypass it silently.
Session Suppression
Prefer reversible session suppression when the user only needs one skill temporarily:
node /bin/skill-guard.js suppress --session
node /bin/skill-guard.js restore --session
With lifecycle hooks enabled, /skill-guard suppress and /skill-guard restore [name-or-path] update the same session state. Suppression is an instruction-level session overlay: it does not move or delete files. The session-end hook removes it automatically.
If the host has no lifecycle hook support, keep the suppression instruction in the active conversation and use status before each skill invocation. State clearly that this is cooperative rather than host-enforced.
Installed Inventory
Use scan to find cross-agent duplicates already present:
node /bin/skill-guard.js scan --agent
The codex scope includes both Codex-specific roots and portable .agents/skills. Do not treat a clean heuristic result as proof of semantic compatibility. Capability families are deliberately curated; if two unclassified skills affect the same high-risk workflow, compare their full instructions even when their score is below the warning threshold.
Related skills
Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.
Read and write Excel workbooks, worksheets, ranges, tables, and charts in OneDrive through Microsoft Graph with managed OAuth.
Generate and edit Draw.io, Mermaid, and Excalidraw diagrams from natural language using a structured JSON spec.
Save, search, and manage personal notes and knowledge bases in Get笔记 on explicit request.
Run Git operations — commits, branches, merges, rebases, conflict resolution, and recovery — with safety rules enforced.