boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Send keyboard input (text or key combinations) to a Tauri application
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/typeContext preview
What this command does when you run it.
Send keyboard input (text or key combinations) to a Tauri application
name: rust:tauri:type description: Send keyboard input (text or key combinations) to a Tauri application allowed-tools: mcp__tauri-mcp__send_keyboard_input, mcp__tauri-mcp__take_screenshot author: Quintin Henry (https://github.com/qdhenry/)
<objective> Send keyboard input to a Tauri application. Can type text or send special key combinations. </objective>
<instructions> Send keyboard input to the Tauri application: **$ARGUMENTS**
Arguments format: `[process_id] [keys_or_text]`
1. **Send the Input** Use `mcp__tauri-mcp__send_keyboard_input` with:
2. **Verify Result** Optionally take a screenshot to confirm input was received.
# Type text /tauri:type 12345 Hello World # Type in a search field (after clicking it) /tauri:click 12345 200 50 /tauri:type 12345 search query # Special keys (format depends on MCP implementation) /tauri:type 12345 Enter /tauri:type 12345 Tab /tauri:type 12345 Escape # Key combinations /tauri:type 12345 Cmd+A /tauri:type 12345 Ctrl+C /tauri:type 12345 Shift+Tab
</instructions>
<output_format>
=== Keyboard Input Sent === Process: [PID] Input: "[keys_or_text]" Type: [text/key/combination]
</output_format>
<common_keys> **Navigation:**
**Editing:**
**App Navigation:**
</common_keys>
<workflow_example> **Fill a Form:**
# Click first input /tauri:click 12345 200 100 # Type name /tauri:type 12345 John Doe # Tab to next field /tauri:type 12345 Tab # Type email /tauri:type 12345 john@example.com # Tab to submit /tauri:type 12345 Tab # Press Enter to submit /tauri:type 12345 Enter
</workflow_example>
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:…