Manage cross-platform reference links
Manages cross-platform reference links between GitHub and Linear with audit, repair, and validation capabilities.
/plugin marketplace add davepoon/buildwithclaude/plugin install commands-integration-sync@buildwithclaudeValid actions: audit, repair, map, validate, exportManage cross-platform reference links
Check Tool Availability
gh) is installed and authenticatedParse Command Arguments
Initialize Reference Database
Execute Selected Action Based on the action provided:
cross-reference-manager [action] [options]
audit - Scan and report on reference integrityrepair - Fix broken or missing referencesmap - Display reference mappingsvalidate - Verify reference consistencyexport - Export reference data--scope <type> - Limit to specific types (issues, prs, tasks)--fix-orphans - Automatically fix orphaned references--dry-run - Preview changes without applying--deep-scan - Perform thorough validation--format <type> - Output format (json, csv, table)--since <date> - Process items created after date--backup - Create backup before modifications# 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
Reference Integrity Checking
Smart Reference Repair
Comprehensive Mapping
Audit Trail
{
"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.