You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: remove cross-repository updates from quality-scan skill
The quality-scan skill was attempting to update dependencies in sibling
repositories (socket-btm, socket-sbom-generator, ultrathink) which is out
of scope and could have unintended side effects.
Changed Phase 2 to only update dependencies in the current repository.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
cd ../socket-sbom-generator && pnpm run update &&cd -
121
-
122
-
# ultrathink
123
-
cd ../ultrathink && pnpm run update &&cd -
124
106
```
125
107
126
108
<validation>
127
-
**For each repository:**
128
-
1. Check if directory exists (skip if not found)
129
-
2. Run `pnpm run update` command
130
-
3. Report success or failure
131
-
4. Track updated packages count
132
-
5. Continue even if some repos fail
133
-
134
109
**Expected Results:**
135
-
- Dependencies updated in available repositories
136
-
- Report number of packages updated per repository
137
-
- Note any repositories that were skipped (not found)
138
-
- Continue with scan even if updates fail
110
+
- Dependencies updated in socket-cli
111
+
- Report number of packages updated
112
+
- Continue with scan even if update fails
139
113
140
114
**Track for reporting:**
141
-
- Repositories updated: N/4
142
-
- Total packages updated: N
143
-
- Failed updates: N (continue with warnings)
144
-
- Skipped repositories: [list]
115
+
- Packages updated: N
116
+
- Update status: Success/Failed (with warning)
145
117
118
+
**Important:** Only update dependencies in the current repository (socket-cli). Do NOT attempt to update sibling repositories (socket-btm, socket-sbom-generator, ultrathink) as this is out of scope and could have unintended side effects.
0 commit comments