oh-my-claude-sisyphus 3.7.9 → 3.7.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.mcp.json +1 -1
  4. package/agents/analyst.md +1 -1
  5. package/agents/architect-low.md +1 -1
  6. package/agents/architect-medium.md +1 -1
  7. package/agents/architect.md +1 -1
  8. package/agents/build-fixer-low.md +0 -1
  9. package/agents/build-fixer.md +0 -1
  10. package/agents/code-reviewer-low.md +1 -1
  11. package/agents/code-reviewer.md +1 -1
  12. package/agents/critic.md +1 -1
  13. package/agents/designer-high.md +0 -1
  14. package/agents/designer-low.md +0 -1
  15. package/agents/designer.md +0 -1
  16. package/agents/executor-high.md +0 -1
  17. package/agents/executor-low.md +0 -1
  18. package/agents/executor.md +0 -1
  19. package/agents/explore-high.md +1 -1
  20. package/agents/explore-medium.md +1 -1
  21. package/agents/explore.md +1 -1
  22. package/agents/planner.md +0 -1
  23. package/agents/qa-tester-high.md +0 -1
  24. package/agents/qa-tester.md +0 -1
  25. package/agents/researcher-low.md +1 -1
  26. package/agents/researcher.md +1 -1
  27. package/agents/scientist-high.md +1 -1
  28. package/agents/scientist-low.md +1 -1
  29. package/agents/scientist.md +1 -1
  30. package/agents/security-reviewer-low.md +1 -1
  31. package/agents/security-reviewer.md +1 -1
  32. package/agents/tdd-guide-low.md +0 -1
  33. package/agents/tdd-guide.md +0 -1
  34. package/agents/vision.md +1 -1
  35. package/agents/writer.md +0 -1
  36. package/bridge/mcp-server.cjs +20944 -0
  37. package/commands/omc-setup.md +39 -0
  38. package/dist/mcp/standalone-server.cjs +19135 -0
  39. package/dist/mcp/standalone-server.js +16 -4
  40. package/dist/mcp/standalone-server.js.map +1 -1
  41. package/dist/tools/ast-tools.d.ts.map +1 -1
  42. package/dist/tools/ast-tools.js +35 -1
  43. package/dist/tools/ast-tools.js.map +1 -1
  44. package/package.json +2 -2
  45. package/scripts/build-mcp-server.mjs +35 -0
@@ -194,6 +194,40 @@ Skip this step. User can install later with `npm install -g oh-my-claude-sisyphu
194
194
  grep -q "oh-my-claudecode" ~/.claude/settings.json && echo "Plugin verified" || echo "Plugin NOT found - run: claude /install-plugin oh-my-claudecode"
195
195
  ```
196
196
 
197
+ ## Step 4.5: Install AST Tools (Optional)
198
+
199
+ The plugin includes AST-aware code search and transformation tools (`ast_grep_search`, `ast_grep_replace`) that require `@ast-grep/napi`.
200
+
201
+ Ask user: "Would you like to install AST tools for advanced code search? (Pattern-based AST matching across 17 languages)"
202
+
203
+ **Options:**
204
+ 1. **Yes (Recommended)** - Install `@ast-grep/napi` for AST-powered search/replace
205
+ 2. **No** - Skip, AST tools will show helpful error when used
206
+
207
+ ### If User Chooses YES:
208
+
209
+ ```bash
210
+ # Check for npm
211
+ if command -v npm &> /dev/null; then
212
+ echo "Installing @ast-grep/napi..."
213
+ npm install -g @ast-grep/napi
214
+ if npm list -g @ast-grep/napi &>/dev/null; then
215
+ echo "✓ AST tools installed successfully!"
216
+ echo " Available tools: ast_grep_search, ast_grep_replace"
217
+ echo " Supports: JavaScript, TypeScript, Python, Go, Rust, Java, and 11 more languages"
218
+ else
219
+ echo "⚠ Installation may have failed. You can install later with: npm install -g @ast-grep/napi"
220
+ fi
221
+ else
222
+ echo "ERROR: npm not found. Please install Node.js first."
223
+ echo "You can install later with: npm install -g @ast-grep/napi"
224
+ fi
225
+ ```
226
+
227
+ ### If User Chooses NO:
228
+
229
+ Skip this step. AST tools will gracefully degrade with a helpful installation message when used.
230
+
197
231
  ## Step 5: Offer MCP Server Configuration
198
232
 
199
233
  MCP servers extend Claude Code with additional tools (web search, GitHub, etc.).
@@ -256,6 +290,11 @@ CLI ANALYTICS (if installed):
256
290
  - omc agents - See agent breakdown by cost
257
291
  - omc tui - Launch interactive TUI dashboard
258
292
 
293
+ AST TOOLS (if installed):
294
+ - ast_grep_search - Pattern-based AST code search
295
+ - ast_grep_replace - AST-aware code transformations
296
+ - Supports 17 languages including TS, Python, Go, Rust
297
+
259
298
  That's it! Just use Claude Code normally.
260
299
  ```
261
300