Precision Source Code Sync
This workflow automates the transfer of code from the active development repository (mcp-server-nucleus) to the public release repository (nucleus-mcp) with absolute certainty that no private files, histories, ledgers, or uncommitted work leak into the public domain.
Execution
- Navigate to the
mcp-server-nucleusdirectory where the syncing script is kept. - Ensure the active development repository is currently sitting on a stable branch without critical uncommitted work, as only committed work will be transferred.
- Execute the precision sync script: // turbo
- Run
./scripts/sync_public_repo.sh
Verification
- If successful, navigate to the
nucleus-mcpdirectory and review the changes. // turbo - Run
cd ../nucleus-mcp && git status - Instruct the user to verify the changes if necessary.
- If the user is satisfied, they can manually commit and push, or you can run
git commit -m "🚀 Sync: <message>" && git push origin HEADon their behalf.