boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Assist with system migration planning
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/migration-assistantContext preview
What this command does when you run it.
Assist with system migration planning
Assist with system migration planning
1. **Check Prerequisites**
2. **Parse Migration Parameters**
3. **Initialize Migration Environment**
4. **Execute Migration Action** Based on the selected action:
migration-assistant [action] [options]
# Plan GitHub to Linear migration migration-assistant plan --source github --target linear # Analyze migration scope migration-assistant analyze --scope all # Dry run migration migration-assistant migrate --dry-run --parallel 4 # Execute migration with checkpoints migration-assistant migrate --checkpoint --backup # Verify migration completeness migration-assistant verify --deep-check # Rollback if needed migration-assistant rollback --transaction-id 12345
mappings:
github_to_linear:
issue:
title: title
body: description
state: status
labels: labels
milestone: cycle
assignees: assignees
custom_fields:
- source: "custom.priority"
target: "priority"
transform: "map_priority"
relationships:
- type: "parent-child"
source: "depends_on"
target: "parent"
linear_to_github:
issue:
title: title
description: body
status: state
priority: labels
cycle: milestone{
"checkpoint": {
"id": "mig-20240120-1430",
"progress": {
"total_items": 5000,
"completed": 3750,
"failed": 12,
"pending": 1238
},
"state": {
"last_processed_id": "issue-3750",
"batch_number": 75,
"error_count": 12
}
}
}1. Map GitHub labels to Linear labels/projects 2. Convert milestones to cycles 3. Preserve issue numbers as references 4. Migrate comments with user mapping 5. Handle attachments and images
1. Map Linear statuses to GitHub states 2. Convert cycles to milestones 3. Preserve Linear IDs in issue body 4. Map Linear projects to labels 5. Handle custom fields
-
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:…