File size: 1,390 Bytes
4fdd358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Script to sync between local projects and Hugging Face

echo "🔗 Syncing project configurations..."

# 1. Copy updated workspace config
cp /home/mrdbo/projects/MyProjects.code-workspace /home/mrdbo/projects/moltbot-hybrid-engine/

# 2. Copy critical instructions for reference
cp /home/mrdbo/projects/courtBundleGenerator2/memory-bank/CRITICAL_INSTRUCTIONS.md /home/mrdbo/projects/moltbot-hybrid-engine/

# 3. Generate project manifest
cat > /home/mrdbo/projects/moltbot-hybrid-engine/PROJECT_MANIFEST.md << EOF
# Project Manifest - $(date)

## Active Projects
1. **courtBundleGenerator2** - Legacy bundler with enhanced features
   - Path: /home/mrdbo/projects/courtBundleGenerator2
   - Entry: enhanced_bundler_wrapper.patched.py
   - Output: /home/mrdbo/court_data/CourtBundleOutput

2. **courtBundleGenerator3** - Main bundler with dual categorization
   - Path: /home/mrdbo/projects/courtBundleGenerator3
   - Entry: generate_bundles_final_corrected.py
   - Output: /home/mrdbo/court_data/2nd_CourtBundleOutput

3. **moltbot-hybrid-engine** - Cloud processing & JIRA integration
   - Path: /home/mrdbo/projects/moltbot-hybrid-engine
   - Cloud: https://huggingface.co/spaces/deebee7/moltbot-hybrid-engine
   - Purpose: GPU acceleration & automated workflows

## Synchronization
- Workspace: MyProjects.code-workspace
- Last sync: $(date)
EOF

echo "✅ Sync complete!"