用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/mondaycom/duckdb-claude --skill update-extension-patch命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | update-extension-patch |
| description | Update an extension patch for a PR-related bug instead of editing patched output directly |
| disable-model-invocation | true |
Only follow this flow when the bug is in an extension and is related to the current PR. Update the patch file rather than modifying already-patched generated output.
Find the relevant extension config file in .github/config/extensions/ and note:
APPLY_PATCHES is already setgit clone <extension-repo> /tmp/<extension-name>
If the extension config does not already have APPLY_PATCHES, add it to the config file at .github/config/extensions/<extension-name>.
In the cloned extension repository:
cd /tmp/<extension-name>
git checkout <pinned-commit-hash>
Use the pinned commit hash found in Step 1.
Apply every existing patch from .github/patches/extensions/ for this extension, in order:
git apply /path/to/duckdb/.github/patches/extensions/<extension-name>/<patch-file>.patch
Make sure all existing patches apply cleanly before proceeding.
Edit the code in the cloned extension to fix the bug.
git diff > /path/to/duckdb/.github/patches/extensions/<extension-name>/fix.patch
Review the generated patch to confirm it contains only the intended changes. Replace the existing patch file if updating an existing fix, or add the new patch file if it's a new fix.