boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Manage cross-platform reference links
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cross-reference-managerContext preview
What this command does when you run it.
Manage cross-platform reference links
Manage cross-platform reference links
1. **Check Tool Availability**
2. **Parse Command Arguments**
3. **Initialize Reference Database**
4. **Execute Selected Action** Based on the action provided:
cross-reference-manager [action] [options]
# Audit all references cross-reference-manager audit # Repair broken references with preview cross-reference-manager repair --dry-run # Map references for specific date range cross-reference-manager map --since "2024-01-01" # Deep validation with orphan fixes cross-reference-manager validate --deep-scan --fix-orphans # Export reference data cross-reference-manager export --format json > refs.json
{
"mappings": {
"github_issue_123": {
"linear_id": "LIN-456",
"type": "issue",
"created": "2024-01-15T10:30:00Z",
"last_verified": "2024-01-20T14:00:00Z",
"confidence": 0.95
}
},
"metadata": {
"last_audit": "2024-01-20T14:00:00Z",
"total_references": 1543,
"broken_references": 12
}
}This command maintains a local reference database for performance and reliability. The database is automatically backed up before modifications.
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:…