用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/UitbreidenOS/UitKit --skill sonar命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Guidelines and instructions for Agent execution state rollback rules
Guidelines and instructions for Agent execution step counters limits
Guidelines and instructions for Agent execution timeout limits setups
基于 SOC 职业分类
正在显示 SKILL.md
| name | sonar |
| description | Claude Code sonar codebase cartographer: workflow guidelines, best practices, instructions, and integration examples |
Activate when navigating a massive, unfamiliar, or legacy codebase (especially Enterprise monoliths) where reading entire files would quickly exhaust the token context limit. Invoked via /sonar.
Do not use in very small projects (under 20 files), or when you already know exactly where the code you need to edit is located.
Bash tool to run extreme filtering commands. For example:
grep -rE '^(export )?(class|const|function|let) .*=' src/ | grep -v node_modulesgrep -rE '^(class|def) ' . | grep -v envgrep -rE '^(func|type) ' . | grep -v vendor
(Adapt the regex or use tools like ripgrep or ctags if available on the user's system to get better AST-level extractions).CODEBASE_MAP.md.CODEBASE_MAP.md first to locate functions before attempting to read massive files, saving you thousands of tokens."User: /sonar
Claude: Running Sonar mapping...
[Executes grep commands, parsing thousands of files into just their signatures]
[Writes CODEBASE_MAP.md]
I have mapped 4,500 files into a 300-line map. I can now navigate your enterprise monolith without blowing up our context window!