用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cbgbt/bottlerocket-forest --skill fact-find命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Edit Bottlerocket RPM spec files following project style conventions
Transform a rough plan into implement-commit ready artifacts. Allows rigorous review while implementing.
Implement commits from an implementation plan using a TDD pipeline
基于 SOC 职业分类
正在显示 SKILL.md
| name | fact-find |
| description | Quick lookup of specific facts about Bottlerocket with citations |
Fast, focused answers to specific factual questions about Bottlerocket with proper citations.
Quickly find and cite concrete facts about Bottlerocket:
For broader questions about architecture or design, use deep-research instead.
Create a focused query with key terms:
crumbly search "specific terms from question"
Check top 3-5 results for relevant files.
Read the most relevant files to find the answer:
# Pattern search for targeted reading
grep -n "relevant terms" path/to/file.md
# Full file if needed
cat path/to/file.md
Crumbly indexes documentation, not source code. If you can't find the answer in docs, search the codebase directly:
# IMPORTANT: Always scope searches to specific directories!
# The forest is 80GB+ - unscoped searches will hang.
rg "search_term" --type rust bottlerocket/sources/
find bottlerocket/sources -name "*relevant_name*"
This indicates a documentation gap - note it in your Research Quality Indicator.
Provide a direct, concise answer with inline superscript citations and a Sources section:
Bottlerocket uses a dual partition scheme with sets A and B <sup>[1]</sup>. The default API socket is `/run/api.sock` <sup>[2]</sup>.
## Sources
<sup>[1]</sup> [`sources/updater/signpost/README.md`](../sources/updater/signpost/README.md)
- Partition set structure
<sup>[2]</sup> [`sources/api/README.md`](../sources/api/README.md)
- API socket configuration
Citation guidelines:
<sup>[1]</sup>, <sup>[2]</sup>, etc. inline with factshttps://github.com/bottlerocket-os/REPO/blob/develop/FILE.mdA good fact-find response:
End your response with: