boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Call a Tauri IPC command with arguments and view the response
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/call-ipcContext preview
What this command does when you run it.
Call a Tauri IPC command with arguments and view the response
name: rust:tauri:call-ipc description: Call a Tauri IPC command with arguments and view the response allowed-tools: mcp__tauri-mcp__call_ipc_command, mcp__tauri-mcp__list_ipc_handlers author: Quintin Henry (https://github.com/qdhenry/)
<objective> Invoke a Tauri IPC command (same as frontend `invoke()` calls) directly from the command line. Useful for testing backend commands without UI interaction. </objective>
<instructions> Call IPC command: **$ARGUMENTS**
Arguments format: `[process_id] [command_name] [args_json]`
1. **Parse Arguments** Extract process_id, command_name, and optional args from $ARGUMENTS.
2. **Call the IPC Command** Use `mcp__tauri-mcp__call_ipc_command` with:
3. **Format Response**
# Simple command with no args
/tauri:call-ipc 12345 get_projects
# Command with arguments
/tauri:call-ipc 12345 get_project {"id": "abc-123"}
# Create operation
/tauri:call-ipc 12345 create_task {"title": "Test Task", "project_id": "proj-1"}
# Update with complex args
/tauri:call-ipc 12345 update_task_status {"task_id": "task-1", "status": "completed"}</instructions>
<output_format>
=== IPC Call Result === Command: [command_name] Process: [PID] --- Request --- Args: [formatted JSON args] --- Response --- [formatted JSON response] --- Timing --- Duration: [X]ms
For errors:
=== IPC Call Failed === Command: [command_name] Error: [error message] Suggestion: [troubleshooting hint]
</output_format>
<common_patterns> **CRUD Operations:**
# Create
/tauri:call-ipc [pid] create_[entity] {"field": "value"}
# Read
/tauri:call-ipc [pid] get_[entity] {"id": "..."}
/tauri:call-ipc [pid] list_[entities] {}
# Update
/tauri:call-ipc [pid] update_[entity] {"id": "...", "field": "new_value"}
# Delete
/tauri:call-ipc [pid] delete_[entity] {"id": "..."}**Query with Filters:**
/tauri:call-ipc [pid] search_tasks {"query": "bug", "status": "open"}</common_patterns>
<troubleshooting> **"Command not found":**
**"Invalid arguments":**
**"Serialization error":**
</troubleshooting>
A comprehensive development toolkit designed following Anthropic's Claude Code Best Practices for AI-assisted software development.
Repo: qdhenry/Claude-Command-Suite
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Analyze semantic position relative to knowledge boundaries to prevent hallucination and identify uncertainty zones.
Generate a visual heatmap of knowledge boundaries showing safe zones, risk areas, and semantic coverage.
Evaluate the current risk level and provide detailed analysis of potential hallucination or reasoning failure.
Find and construct semantic bridges to safely navigate from current position to target concept without crossing dangerous boundaries.
Takes an input prompt and returns ONLY a token-optimized version that preserves meaning while minimizing token count. Based on LLM tokenization principles:…