用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/UitbreidenOS/UitKit --skill setup-ignore命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
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 职业分类
| name | setup-ignore |
| description | Claude Code setup ignore: workflow guidelines, best practices, instructions, and integration examples |
Activate when starting a new project session, when a user complains about high token usage/cost, or when Claude Code is reading too many irrelevant files (like package-lock.json, dist/, or vendor/). Invoked via /setup-ignore.
Do not use if the project already has a well-configured .claudeignore file, or if the user explicitly needs Claude to analyze compiled output, minified files, or exact dependency lock versions.
package.json for Node, requirements.txt/pyproject.toml for Python, go.mod for Go).claudeignore-templates/ (e.g., node.claudeignore, python.claudeignore, go.claudeignore)..claudeignore file already exists in the project root, intelligently merge the template rules into it, avoiding duplicates. Do not overwrite custom user rules..claudeignore file does not exist, create it in the project root using the template content.node_modules and package-lock.json, which saves ~40k tokens per request").User: /setup-ignore
Claude: I see this is a Node.js project. I have created a .claudeignore file based on the Node template. I've ignored node_modules/, dist/, and package-lock.json. This will significantly reduce your context size and token costs on every turn.