Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add khalilbenaz/claude-skills-collection --skill conflict-resolvergit clone --depth 1 https://github.com/khalilbenaz/claude-skills-collectionWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/conflict-resolver)<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/conflict-resolver"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/conflict-resolver/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/conflict-resolver"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/conflict-resolver.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00099 | $0.03286 |
| Opus 5 | $0.00049 | $0.01643 |
| Sonnet 5 | $0.00020 | $0.00657 |
| Haiku 4.5 | $0.00010 | $0.00329 |
Grade A, and why
conflict-resolver scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 305 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Conflict Resolver
Quand utiliser ce skill
Utilise ce skill quand deux agents ou plus ont produit des résultats contradictoires, incompatibles ou mutuellement exclusifs sur la même question ou tâche. Typiquement : pipelines parallèles, validation croisée, ou agent de vérification qui contredit l'agent de production.
Conditions de déclenchement concrètes :
- Agent A retourne
True, agent B retourneFalsesur le même prédicat - Deux agents calculent des montants différents pour la même transaction
- Deux agents recommandent des actions incompatibles (ex. : "accepter" vs "rejeter")
- Un agent de vérification invalide le résultat d'un agent de génération
- N agents en majorité vs minorité sur une classification
Workflow en 10 étapes
1. Détecter le conflit
Implémente une couche de comparaison après chaque gather parallèle. Classe chaque conflit par type et sévérité avant toute action.
| Type | Exemple | Sévérité par défaut |
|---|---|---|
direct_contradiction |
True vs False | critical |
numerical_inconsistency |
1500€ vs 2300€ (>10%) | major |
logical_conflict |
Deux conclusions mutuellement exclusives | major |
priority_conflict |
Action X incompatible avec action Y | minor → critical selon domaine |
from dataclasses import dataclass
from typing import Any
@dataclass
class ConflictDetectionResult:
has_conflict: bool
conflict_type: str # "direct_contradiction" | "numerical_inconsistency" | "logical_conflict" | "priority_conflict"
severity: str # "critical" | "major" | "minor"
agent_a: str
agent_b: str
output_a: Any
output_b: Any
description: str
def detect_conflict(output_a: Any, agent_a: str, output_b: Any, agent_b: str) -> ConflictDetectionResult:
# Détection numérique
if isinstance(output_a, (int, float)) and isinstance(output_b, (int, float)):
diff_pct = abs(output_a - output_b) / max(abs(output_a), abs(output_b), 1)
if diff_pct > 0.10:
return ConflictDetectionResult(
has_conflict=True, conflict_type="numerical_inconsistency",
severity="major" if diff_pct > 0.30 else "minor",
agent_a=agent_a, agent_b=agent_b,
output_a=output_a, output_b=output_b,
description=f"Écart de {diff_pct:.1%} entre {agent_a} et {agent_b}"
)
# Détection booléenne
if isinstance(output_a, bool) and isinstance(output_b, bool) and output_a != output_b:
return ConflictDetectionResult(
has_conflict=True, conflict_type="direct_contradiction", severity="critical",
agent_a=agent_a, agent_b=agent_b, output_a=output_a, output_b=output_b,
description=f"{agent_a} dit {output_a}, {agent_b} dit {output_b}"
)
return ConflictDetectionResult(
has_conflict=False, conflict_type="none", severity="none",
agent_a=agent_a, agent_b=agent_b, output_a=output_a, output_b=output_b, description=""
)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 305 lines · 99 tokens per session scan A 688a5e47d43b
conflict-resolver is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 17d ago), licensed MIT. It adds 99 tokens to every session and 3,286 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
night-watch
Autonomous maintenance (dep updates, dead code, small refactors) in isolated branch, off-hours. Triggers: night watch, autonomous maintenance, dep updates.
git-mastery
Advanced Git: rebase, bisect, reflog, cherry-pick, worktrees, LFS. Triggers: rebase, bisect, cherry-pick, reflog, force push, merge conflict, worktree.
instinct-review
Reviews/promotes/removes instincts from .claude/instincts/.md. Triggers: instinct review, curate instincts, manage instincts, promote instinct.
pr
Creates GitHub PR after pre-flight checks (lint/typecheck/tests), structured summary from commits. Triggers: pr, pull request, create PR, ready to merge.
repeat
Runs prompt/slash command on recurring interval until done or limit. Triggers: repeat, recurring task, poll status, run every N minutes, interval.
rollback
Rolls back git commit, DB migration, or deploy to known-good with safety + health checks. Triggers: rollback, revert deploy, revert migration, rollback commit, git revert.