mirror of
https://fastgit.cc/github.com/Yeachan-Heo/oh-my-claudecode
synced 2026-04-20 21:00:50 +08:00
Multi-agent orchestration system with: - 11 specialized agents (Oracle, Librarian, Explore, Frontend Engineer, Document Writer, Multimodal Looker, Momus, Metis, Orchestrator-Sisyphus, Sisyphus-Junior, Prometheus) - 7 slash commands (/sisyphus, /sisyphus-default, /ultrawork, /deepsearch, /analyze, /plan, /review) - Real LSP integration with 11 tools (hover, goto definition, find references, document symbols, workspace symbols, diagnostics, rename, code actions, etc.) - ast-grep integration for structural code search/replace - Magic keywords (ultrawork, search, analyze) - Configuration system with JSONC support - Context injection from CLAUDE.md/AGENTS.md files Models: - Opus: Sisyphus, Oracle, Momus, Metis, Prometheus - Sonnet 4.5: Librarian, Frontend Engineer, Multimodal Looker, Orchestrator-Sisyphus, Sisyphus-Junior - Haiku 4.5: Explore, Document Writer Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
481 B
JSON
21 lines
481 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|