Files
sproutclaw/.pi/agent/skills/README.md
root cf5edd6394
Some checks failed
CI / build-check-test (push) Has been cancelled
feat(sproutclaw): modularize webui, extensions, and agent config layout
Restructure local extensions into per-feature directories, split WebUI
into backend modules with slash commands and systemd support, and track
prompts/skills under .pi/agent for portable Gitea deployment.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-10 16:57:08 +08:00

40 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Skills
这里是本机通用 Skills 目录,给大模型统一放可复用的技能包、流程说明和模板。
## 目录约定
- 每个 Skill 单独一个子目录
- 入口文件通常使用 `SKILL.md`
- 可按需包含 `references/``scripts/``assets/` 等辅助目录
- Skill 内尽量写清楚触发条件、输入输出、约束和操作步骤
## 推荐结构
```text
/root/skills/
your-skill/
SKILL.md
references/
scripts/
assets/
```
## 当前状态
- 目前这个目录已作为小萌芽本机的日常开发主目录使用
- 先在这里维护、测试和迭代 Skill确认稳定后再同步到 `~/.codex/skills/``~/.claude/skills/`
- 当前已放入的自定义 Skill
- `command-help-zh-skill`
- `mengya-mail-skill`
- `mengya-search-skill`
- `linux-ssh-operator-skill`
- 前两个 Skill 的实现分别对接:
- `/shumengya/project/python/mengya-mail-api/src/mengya_mail_api/`
- `/shumengya/project/python/mengya-search-api/src/mengya_search_api/`
- `linux-ssh-operator-skill` 的脚本与说明位于:
- `/shumengya/project/skills/linux-ssh-operator-skill/`
- 如果某些 Skill 需要接入特定工具或工作流,建议在 `SKILL.md` 顶部先写清适用范围
当前入口请直接走 `skills/...` 和对应的 `python/*-api/`