boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Set up the tauri-mcp MCP server for Claude Code with Node.js wrapper
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/setup-tauri-mcpContext preview
What this command does when you run it.
Set up the tauri-mcp MCP server for Claude Code with Node.js wrapper
name: setup-tauri-mcp description: Set up the tauri-mcp MCP server for Claude Code with Node.js wrapper allowed-tools: Bash, Read, Write, Edit, WebFetch author: Quintin Henry (https://github.com/qdhenry/)
<objective> Install and configure the tauri-mcp MCP server for use with Claude Code.
The tauri-mcp server provides AI-assisted interaction with Tauri desktop applications, including process management, window manipulation, input simulation, screenshots, and IPC command execution. This command handles the complete setup including the Node.js wrapper required for stdio communication with Claude Code. </objective>
<context> Check current state:
</context>
<process> 1. **Install the Rust binary** (if not already installed):
cargo install tauri-mcp
This installs to `~/.cargo/bin/tauri-mcp`
2. **Set up the Node.js wrapper** (required for Claude Code compatibility): The Rust binary's `serve` command runs an HTTP server, but Claude Code needs stdio communication. The Node.js wrapper bridges this gap.
mkdir -p ~/.local/share/tauri-mcp cd ~/.local/share/tauri-mcp curl -sL https://raw.githubusercontent.com/dirvine/tauri-mcp/main/server/index.js -o index.js curl -sL https://raw.githubusercontent.com/dirvine/tauri-mcp/main/server/package.json -o package.json npm install
3. **Create tauri-mcp.toml config** (optional, in project root):
auto_discover = true session_management = true event_streaming = false performance_profiling = false network_interception = false
4. **Configure .mcp.json** in the project: Add or update the tauri-mcp entry:
{
"mcpServers": {
"tauri-mcp": {
"command": "node",
"args": ["~/.local/share/tauri-mcp/index.js"],
"env": {
"TAURI_MCP_BINARY": "~/.cargo/bin/tauri-mcp",
"TAURI_MCP_LOG_LEVEL": "info"
}
}
}
}Note: Replace `~` with actual home directory path in the JSON.
5. **Verify installation**:
# Test Node.js wrapper starts TAURI_MCP_BINARY=~/.cargo/bin/tauri-mcp node ~/.local/share/tauri-mcp/index.js & sleep 2 kill %1 2>/dev/null
6. **Enable in Claude Code**:
</process>
<available_tools> Once enabled, you'll have access to these MCP tools:
</available_tools>
<troubleshooting> **Server shows "failed" status:**
**"command not found" errors:**
**Debug logging:**
**Verify paths:**
</troubleshooting>
<success_criteria>
</success_criteria>
<references>
</references>
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:…