detect_intent_conflicts
Detect potential conflicts between your active intent and other team members' intents, highlighting overlapping files and decisions to coordinate before merging.
Instructions
Find intents from other team members that potentially conflict with the active intent.
When to use:
Before committing, to surface overlapping team work so the user can coordinate before merging.
Inputs of note:
intentId: the active intent to check against.minScore(optional): minimum match score to include in results.
Returns scored conflict candidates with:
score: how strongly the candidate matches (higher = more likely conflict).overlappingFiles: files affected by both intents.decisions: decisions attached to the conflicting intent.author: who is working on the conflicting intent.
The list is informational — review candidates and their decisions to decide whether coordination is needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| intentId | Yes | The active intent ID | |
| minScore | No | Minimum similarity score threshold (default: 0.5) | |
| repoPath | Yes | Local path to the repository root | |
| forkAuthor | No | Fork attribution; usually resolved by Muninn automatically — pass only for override / testing. | |
| repoOrigin | No | Git remote origin URL. Auto-detected from repoPath via git if not provided. | |
| workspaceId | No | Workspace identifier; usually resolved by Muninn automatically — pass only for override / testing. |