boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Monitor CPU, memory, and resource usage of a running 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.
/resourcesContext preview
What this command does when you run it.
Monitor CPU, memory, and resource usage of a running Tauri application
name: rust:tauri:resources description: Monitor CPU, memory, and resource usage of a running Tauri application allowed-tools: mcp__tauri-mcp__monitor_resources author: Quintin Henry (https://github.com/qdhenry/)
<objective> Monitor the resource consumption of a running Tauri application to identify performance issues or memory leaks. </objective>
<instructions> Monitor resources for the Tauri application: **$ARGUMENTS**
Arguments: `[process_id]`
1. **Query Resource Metrics** Use `mcp__tauri-mcp__monitor_resources` with the process ID.
2. **Analyze Results**
3. **Provide Recommendations** Based on the metrics, suggest:
# Check current resource usage /tauri:resources 12345 # Use in a monitoring loop (manual) /tauri:resources 12345 # wait, perform actions /tauri:resources 12345 # compare results
</instructions>
<output_format>
=== Resource Usage === Process ID: [PID] Timestamp: [time] --- CPU --- Usage: [X]% [assessment: low/moderate/high] --- Memory --- Resident: [X] MB Virtual: [X] MB [assessment: normal/elevated/concerning] --- Other Metrics --- [any additional available metrics] --- Assessment --- [Overall health: Good/Warning/Investigate] [Recommendations if any]
</output_format>
<baselines> **Typical Healthy Values (Tauri Desktop App):**
**Warning Signs:**
</baselines>
<use_cases> **Performance Testing:** Measure resource usage during specific operations.
**Memory Leak Detection:** Monitor over time to detect growing memory usage.
**Optimization Validation:** Compare before/after metrics when optimizing code.
**CI/CD Integration:** Automated resource checks in test pipelines. </use_cases>
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:…