boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Stop a running Tauri application by process ID
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/stopContext preview
What this command does when you run it.
Stop a running Tauri application by process ID
name: rust:tauri:stop description: Stop a running Tauri application by process ID allowed-tools: mcp__tauri-mcp__stop_app, mcp__tauri-mcp__get_app_logs, Bash author: Quintin Henry (https://github.com/qdhenry/)
<objective> Gracefully stop a running Tauri application. Captures final logs before termination. </objective>
<context> Running Tauri processes: !`pgrep -l -f "tauri\|monotask" 2>/dev/null || echo "No Tauri apps currently running"` </context>
<instructions> Stop the Tauri application: **$ARGUMENTS**
The argument should be a process ID from a previous `/tauri:launch` command.
1. **Get Final Logs** Before stopping, capture any remaining logs using `mcp__tauri-mcp__get_app_logs`:
2. **Stop the Application** Use `mcp__tauri-mcp__stop_app` with:
3. **Verify Termination** Confirm the process has stopped using a quick process check.
4. **Report Results**
# Stop by process ID /tauri:stop 12345 # Stop with "process_id" prefix (from copy-paste) /tauri:stop process_id: 12345
</instructions>
<output_format>
App Stopped Successfully - Process ID: [PID] - Final Status: [exit status if available] Notable final logs: [any errors or important messages]
</output_format>
<troubleshooting> **"Process not found":**
**"Failed to stop":**
</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:…