一键导入
update-config
Modify settings.json / hooks / permissions safely + explain trade-offs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Modify settings.json / hooks / permissions safely + explain trade-offs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Help build/debug DeepSeek API usage (openai-compatible).
Run a command on a recurring interval (poll CI etc.).
Read/extract/combine/split PDFs.
Launch this project's app to see a change in action.
Schedule a one-off or cron task via DeepCode's daemon.
Help author a new skill — frontmatter + body + best-trigger description.
| name | update-config |
| description | Modify settings.json / hooks / permissions safely + explain trade-offs. |
Edit DeepCode's settings.json files safely. Always show a diff first.
| Layer | Path | Precedence (highest = last applied) |
|---|---|---|
| User | ~/.deepcode/settings.json | lowest |
| Project | <cwd>/.deepcode/settings.json | middle |
| Local | <cwd>/.deepcode/settings.local.json (git-ignored) | highest |
When the user says "for this project", write to project-scoped. When they say "everywhere", user-scoped. When secret-y (API keys, work-only overrides), local.
bypassPermissions mode: "faster, but the agent can write
anywhere without asking — only do this in a sandbox/worktree."[y]es / [n]o / [e]dit.JSON.stringify(obj, null, 2) (matches existing style).| User asks | Setting |
| ---------------------------------- | ---------------------------------------- | ------------------------ |
| "Don't ask me about reads" | permissions.allow: ["Read"] |
| "Stop running tests for me" | permissions.deny: ["Bash(npm test:*)"] |
| "Use deepseek-reasoner by default" | model: "deepseek-reasoner" |
| "Lower the effort" | effortLevel: "low" |
| "Turn off the sandbox" | sandbox.enabled: false |
| "Disable plugin X" | disabledPlugins: ["X"] |
| "Add a hook to lint after edits" | hooks.PostToolUse: [{ matcher: "Edit | Write", hooks: [...] }] |
Don't:
permissions.deny rules without explicit confirmation.apiKeyHelper that points at a script you didn't author.bypassPermissions as a default — it has to be a deliberate user act.