chore: sync chat history workflows and repo metadata

This commit is contained in:
saravanakumardb1 2026-03-11 09:13:49 -07:00
parent 9a00fbd86a
commit c8b520ba12
4 changed files with 62 additions and 7 deletions

View File

@ -1,9 +1,9 @@
Last refresh: 2026-03-10T06:00:06Z (2026-03-09 23:00:06 PDT)
Cascade conversations: 50 (329M)
Memories: 68
Last refresh: 2026-03-11T14:36:06Z (2026-03-11 07:36:06 PDT)
Cascade conversations: 50 (297M)
Memories: 77
Implicit context: 20
Code tracker dirs: 168
File edit history: 2560 entries
Workspace storage: 28 workspaces
Code tracker dirs: 190
File edit history: 2782 entries
Workspace storage: 29 workspaces
Repo docs: 7 files across 2 repos
Repo workflows: 38 files across 8 repos
Repo workflows: 40 files across 9 repos

View File

@ -9,3 +9,5 @@ learning_ai_clock
learning_ai_fastgap
learning_ai_jarvis_jr
learning_ai_peakpulse
learning_ai_notes
learning_ai_flowmonk

View File

@ -0,0 +1,16 @@
# FlowMonk Workflows
Product-specific workflows for FlowMonk, the agent-first planning and execution platform.
## Repo-management Workflows
Cross-repo workflows are maintained centrally in `learning_ai_common_plat/.windsurf/workflows/`:
- `/repo_sync-repos` — Pull latest from all repos
- `/repo_commit-workspace` — Commit changes across repos
- `/repo_backup-main-branch` — Backup main branches
- `/repo_backup-and-push` — Backup then push all repos
## Product Workflows
- `/refresh-chat-history` — Refresh Windsurf chat archive

View File

@ -0,0 +1,37 @@
---
description: Refresh the Windsurf chat history archive (re-scan all repos, update symlinks, copy docs/workflows)
---
# Refresh Windsurf Chat History Archive
Refreshes the centralized Windsurf chat history archive at `__LOCAL_LLMs/AI_IDE_CHAT_HISTORY/WINDSURF/`.
Auto-discovers new repos, updates symlinks, and re-copies docs + workflows.
## Steps
// turbo
1. Run the refresh script:
```bash
/Users/sd9235/code/mygh/learning_ai_common_plat/__LOCAL_LLMs/AI_IDE_CHAT_HISTORY/WINDSURF/refresh.sh
```
2. Check the refresh log:
```bash
cat /Users/sd9235/code/mygh/learning_ai_common_plat/__LOCAL_LLMs/AI_IDE_CHAT_HISTORY/WINDSURF/.last-refresh.log
```
3. Verify symlinks are valid:
```bash
ls -la /Users/sd9235/code/mygh/learning_ai_common_plat/__LOCAL_LLMs/AI_IDE_CHAT_HISTORY/WINDSURF/ | grep "^l"
```
## Notes
- The script is **idempotent** — safe to run any number of times.
- It auto-discovers repos under `/Users/sd9235/code/mygh/` that have `docs/WINDSURF/` or `.windsurf/workflows/`.
- A **launchd job** runs this daily at 11 PM: `~/Library/LaunchAgents/com.sd9235.windsurf-archive-refresh.plist`.
- Logs: `.last-refresh.log` (stats), `.launchd-stdout.log` / `.launchd-stderr.log` (scheduled run output).