Dry-run an ICR intent check
Dry-run an ICR intent check to preview how a tool call would be classified and routed without executing it. Use this to safely test commands, understand ICR's decision-making, or verify custom severity rules before taking action.
/plugin marketplace add az9713/icr/plugin install az9713-icr@az9713/icrSimulate an intent check for a hypothetical tool call without actually executing.
/icr:simulate Bash "rm -rf /tmp/old-builds/*.tar.gz"/icr:simulate Write "/path/to/file.txt" "content here"/icr:simulate Edit "/path/to/file.txt" "old text" "new text"/icr:simulate Task "Deploy the application"This shows what would happen if the tool call were made:
Intent Document - The structured interpretation that would be generated
Confidence Score - The calculated confidence with component breakdown
Severity Classification - How the action would be classified
Decision Route - What would happen
ICR Simulation
---------------------------------------------------------------------
Tool: Bash
Args: rm -rf /tmp/old-builds/*.tar.gz
INTENT DOCUMENT (simulated):
Task: Delete all .tar.gz files in /tmp/old-builds/ directory
Affected:
- /tmp/old-builds/*.tar.gz (unknown count)
Excluded:
- Other file types in same directory
- Files in subdirectories (unless -r affects them)
Boundaries:
- Will not delete the directory itself
- Will not affect files outside /tmp/old-builds/
Reversibility:
Can undo: NO
Method: Restore from backup
Effort: Impossible (permanent deletion)
CLASSIFICATION:
Severity: CRITICAL
Classified by: userRule
Reason: Command contains "rm -rf"
CONFIDENCE: 0.65
Ambiguity: 0.60 (moderate - "old-builds" is descriptive)
Distance: 0.80 (close - explicit delete command)
Historical: 0.50 (no similar patterns)
Uncertainty: 0.70 (no hedging, clear intent)
DECISION: HUMAN_REVIEW
Confidence 0.65 < AI review threshold 0.90 for CRITICAL
Would require human approval before executing
---------------------------------------------------------------------
Note: This is a simulation. No action was taken.