boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Create a new semantic tree for persistent memory storage and reasoning tracking in the WFGY system.
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/semantic-tree-initContext preview
What this command does when you run it.
Create a new semantic tree for persistent memory storage and reasoning tracking in the WFGY system.
tools: - read - write - bash - glob arguments: $TREE_NAME
Create a new semantic tree for persistent memory storage and reasoning tracking in the WFGY system.
Based on the WFGY project: https://github.com/onestardao/WFGY
1. **Parse Tree Configuration**
2. **Create Tree Structure**
{
"id": "tree_uuid",
"name": "$TREE_NAME",
"created": "ISO_8601_timestamp",
"modified": "ISO_8601_timestamp",
"metadata": {
"version": "1.0.0",
"node_count": 0,
"total_deltaS": 0,
"avg_deltaS": 0,
"max_depth": 0,
"modules_used": []
},
"config": {
"auto_record": true,
"deltaS_threshold": 0.6,
"compression_threshold": 100,
"max_nodes": 10000
},
"nodes": [],
"checkpoints": []
}3. **Initialize Tree Storage**
4. **Configure Tree Settings**
5. **Activate Tree**
Semantic Tree Created Successfully ═══════════════════════════════════════ Tree Name: $TREE_NAME Tree ID: [uuid] Created: [timestamp] Configuration: - Auto-record: Enabled - ΔS Threshold: 0.6 - Max Nodes: 10,000 - Compression: At 100 nodes Status: Active ✓ Next Steps: 1. Start building nodes with /semantic:node-build 2. View tree structure with /semantic:tree-view 3. Configure settings in .wfgy/trees/$TREE_NAME.json
Common tree patterns:
After creation:
# Switch to different tree /semantic:tree-switch "Another Tree" # View current tree /semantic:tree-view # Export tree /semantic:tree-export # Build nodes /semantic:node-build "First concept"
Custom tree settings in `.wfgy/trees/$TREE_NAME.json`:
{
"config": {
"auto_record": true,
"deltaS_threshold": 0.5,
"lambda_triggers": ["divergent", "recursive"],
"compression_threshold": 50,
"prune_after_days": 30,
"backup_frequency": "daily"
}
}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:…