Files
oh-my-opencode/packages/omo-claude/plugin/package.json
T
YeonGyu-Kim e20c51c77f feat(omo-claude): re-vendor MCP servers self-contained with CLAUDE_PLUGIN_ROOT
ast_grep + lsp servers vendored under plugin/mcp via sync-mcp.mjs; .mcp.json uses
${CLAUDE_PLUGIN_ROOT} (no ../). Both boot from a node_modules-free tree (verified
JSON-RPC initialize handshakes). lsp hook bundled to inline lsp-tools-mcp. mcp/
dist is gitignored (regenerated by build).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-29 13:40:11 +09:00

26 lines
906 B
JSON

{
"name": "@sisyphuslabs/omo-claude-plugin",
"version": "0.1.0",
"description": "Aggregate Claude Code plugin root for OMO components.",
"type": "module",
"packageManager": "npm@11.12.1",
"private": true,
"workspaces": [
"components/comment-checker",
"components/rules",
"components/lsp",
"components/telemetry",
"components/start-work-continuation",
"components/ultragoal",
"components/ultrawork"
],
"scripts": {
"build": "node scripts/sync-components.mjs && node scripts/sync-skills.mjs && node ../scripts/sync-telemetry-component.mjs && npm run build --workspaces --if-present && node scripts/sync-mcp.mjs",
"check": "npm run build && npm test",
"sync:components": "node scripts/sync-components.mjs",
"sync:skills": "node scripts/sync-skills.mjs",
"sync:mcp": "node scripts/sync-mcp.mjs",
"test": "node --test test/*.test.mjs"
}
}