boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Launch a Tauri desktop application and return its process ID for subsequent operations
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/launchContext preview
What this command does when you run it.
Launch a Tauri desktop application and return its process ID for subsequent operations
name: rust:tauri:launch description: Launch a Tauri desktop application and return its process ID for subsequent operations allowed-tools: mcp__tauri-mcp__launch_app, mcp__tauri-mcp__get_app_logs, mcp__tauri-mcp__get_window_info, Bash, Read author: Quintin Henry (https://github.com/qdhenry/)
<objective> Launch a Tauri desktop application and prepare it for interaction. Returns the process ID needed for all subsequent tauri commands. </objective>
<context> Project Tauri app location: !`ls -la apps/desktop/src-tauri/target/release/*.app 2>/dev/null || ls -la apps/desktop/src-tauri/target/debug/*.app 2>/dev/null || echo "No built app found - run 'bun run build' in apps/desktop first"` Current running apps: !`pgrep -l -f "tauri\|monotask" 2>/dev/null || echo "No Tauri apps currently running"` </context>
<instructions> Launch the Tauri application: **$ARGUMENTS**
If no path is provided, attempt to find and launch the project's desktop app.
1. **Determine App Path**
2. **Launch the Application** Use `mcp__tauri-mcp__launch_app` with:
3. **Wait for Startup** After launching, wait 2-3 seconds for the app to initialize.
4. **Verify Launch Success**
5. **Report Results** Provide:
# Launch project's desktop app /tauri:launch # Launch specific app /tauri:launch /Applications/MyTauriApp.app # Launch with arguments /tauri:launch apps/desktop/src-tauri/target/release/bundle/macos/Monotask.app --dev
</instructions>
<output_format> Provide a concise summary:
App Launched Successfully - Process ID: [PID] - Window: [width]x[height] at ([x], [y]) - Status: [visible/minimized/etc] Use this process_id for subsequent /tauri: commands.
Or if launch failed:
Launch Failed - Error: [error message] - Suggestion: [how to fix]
</output_format>
<troubleshooting> **"No built app found":**
**"Permission denied":**
**App launches but window doesn't appear:**
</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:…