From d333b2332641d455b174940acb96d59e8ca4788b Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Fri, 27 Feb 2026 17:19:58 -0800 Subject: [PATCH] chore(workflows): add learning_ai_clock to all repo_* workspace workflows Updated all 5 repo_ workflows to cover all 4 workspace repos: - repo_sync-repos.md - repo_push-repos.md - repo_backup-and-push.md - repo_backup-main-branch.md - repo_commit-workspace.md --- .windsurf/workflows/repo_backup-and-push.md | 3 ++- .windsurf/workflows/repo_backup-main-branch.md | 1 + .windsurf/workflows/repo_commit-workspace.md | 3 ++- .windsurf/workflows/repo_push-repos.md | 7 ++++--- .windsurf/workflows/repo_sync-repos.md | 7 ++++--- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.windsurf/workflows/repo_backup-and-push.md b/.windsurf/workflows/repo_backup-and-push.md index 68d226a3..f448a6c1 100644 --- a/.windsurf/workflows/repo_backup-and-push.md +++ b/.windsurf/workflows/repo_backup-and-push.md @@ -18,7 +18,7 @@ Run `bash scripts/backup-main.sh` from any repository root // turbo ```bash -for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents; do +for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock; do echo "━━━ Pushing $repo ━━━" (cd ~/code/mygh/$repo && git push origin main 2>&1) done @@ -36,6 +36,7 @@ echo "✨ All repos pushed!" - learning_ai_common_plat - learning_voice_ai_agent - learning_multimodal_memory_agents +- learning_ai_clock ## When to use: diff --git a/.windsurf/workflows/repo_backup-main-branch.md b/.windsurf/workflows/repo_backup-main-branch.md index e0a51552..85c80e91 100644 --- a/.windsurf/workflows/repo_backup-main-branch.md +++ b/.windsurf/workflows/repo_backup-main-branch.md @@ -22,6 +22,7 @@ Run `bash scripts/backup-main.sh` from any repository root - learning_ai_common_plat - learning_voice_ai_agent - learning_multimodal_memory_agents +- learning_ai_clock ## Features: diff --git a/.windsurf/workflows/repo_commit-workspace.md b/.windsurf/workflows/repo_commit-workspace.md index 27494097..a717422d 100644 --- a/.windsurf/workflows/repo_commit-workspace.md +++ b/.windsurf/workflows/repo_commit-workspace.md @@ -12,10 +12,11 @@ Scans all repositories for pending changes and commits them in logical order wit ## What it does: -1. **Scans** all 3 repos for changes: +1. **Scans** all 4 repos for changes: - learning_ai_common_plat - learning_voice_ai_agent - learning_multimodal_memory_agents + - learning_ai_clock 2. **Analyzes** changed files to determine: - Commit scope (auth, ci, docs, feat, chore, etc.) diff --git a/.windsurf/workflows/repo_push-repos.md b/.windsurf/workflows/repo_push-repos.md index c349e065..97f18e05 100644 --- a/.windsurf/workflows/repo_push-repos.md +++ b/.windsurf/workflows/repo_push-repos.md @@ -1,5 +1,5 @@ --- -description: Push local main branch to origin for all 3 workspace repos +description: Push local main branch to origin for all 4 workspace repos --- # Push Repos @@ -9,7 +9,7 @@ Pushes local `main` to `origin/main` for all workspace repositories. // turbo ```bash -for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents; do +for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock; do echo "━━━ $repo ━━━" (cd ~/code/mygh/$repo && git push origin main) done @@ -17,7 +17,7 @@ done ## What it does: -1. Iterates over all 3 workspace repos +1. Iterates over all 4 workspace repos 2. Runs `git push origin main` in each 3. Fails fast if a repo has diverged from remote (resolve with rebase manually) @@ -26,6 +26,7 @@ done - learning_ai_common_plat - learning_voice_ai_agent - learning_multimodal_memory_agents +- learning_ai_clock ## When to use: diff --git a/.windsurf/workflows/repo_sync-repos.md b/.windsurf/workflows/repo_sync-repos.md index 619f1200..dd3fca34 100644 --- a/.windsurf/workflows/repo_sync-repos.md +++ b/.windsurf/workflows/repo_sync-repos.md @@ -1,5 +1,5 @@ --- -description: Pull latest from origin main across all workspace repos +description: Pull latest from origin main across all 4 workspace repos --- # Sync Repos @@ -9,7 +9,7 @@ Pulls the latest changes from `origin/main` for all workspace repositories. // turbo ```bash -for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents; do +for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock; do echo "━━━ $repo ━━━" (cd ~/code/mygh/$repo && git pull --ff-only origin main) done @@ -17,7 +17,7 @@ done ## What it does: -1. Iterates over all 3 workspace repos +1. Iterates over all 4 workspace repos 2. Runs `git pull --ff-only origin main` in each 3. Fails fast if there are local divergent commits (use `git pull --rebase` manually in that case) @@ -26,6 +26,7 @@ done - learning_ai_common_plat - learning_voice_ai_agent - learning_multimodal_memory_agents +- learning_ai_clock ## When to use: