Install
openclaw skills install code-snippet代码片段收藏夹。快速保存和搜索常用代码片段,支持多语言和高亮。适合开发者积累代码库。
openclaw skills install code-snippet收藏和管理常用代码片段。
python3 scripts/snippet.py add "Python读取文件" --code "with open('file.txt') as f:" --lang python --tag 文件操作
python3 scripts/snippet.py search "读取文件"
python3 snippets.py list --tag python
python3 snippets.py get 1
# 添加 Python 代码片段
python3 scripts/snippet.py add "读取JSON" --code "import json\nwith open('file.json') as f: data = json.load(f)" --lang python
# 搜索
python3 scripts/snippet.py search "JSON"
# 按标签列出
python3 scripts/snippet.py list --tag python