用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/publieople/hermes-config-kit --skill university-aiagent-course命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Manage AstrBot knowledge bases — create, upload, retrieve, delete via WebUI or REST API. Use when adding documents to an AstrBot bot's RAG knowledge base, troubleshooting embedding issues, or automating KB updates.
Integrate Hermes Agent with external desktop applications, IDEs, and AI tools — mapping their integration interfaces (custom API endpoints, MCP support, terminal hooks) to Hermes' built-in capabilities (API Server, MCP Server Mode, CLI spawning). Use when asked to "connect Hermes to X" or "make Hermes work with Y" for any third-party app.
国内量化交易系统搭建 — 行情终端 vs 量化系统辨析、券商通道瓶颈、开源框架选型、老式行情软件逆向分析
正在显示 SKILL.md
| name | university-aiagent-course |
| description | AI Agent开发实战课程作业工作流 — 教材配套代码目录、学生信息替换、作业文件规范、常见坑和修复 |
大学「Linux 应用程序开发」课程 · 学生:冯周杰(20250421042)
E:\ToDo\University - Linux Applications\ (/mnt/e/ToDo/University - Linux Applications/)
├── assignments/ ← 已完成的作业(编号文件)
│ ├── 0-deepseek_api.py
│ ├── 1-deepseek_api_functioncalling.py
│ ├── 2-agent_react.py
│ ├── 3-llamacpp.py
│ ├── 4-llamafactory.py
│ ├── 5-medical-finetune.md
│ ├── 6-env-setup.py
│ ├── 7-mcp-experiment/ ← MCP Server 实验 (server.py + client)
│ └── 8-mcp-protocols/ ← 三种传输协议 (test_all.py)
├── reference/AIAgent-main/ ← 教材配套代码(第1/2/4/6/7章)
├── mcp-protocols/ ← 老师附件代码(三种MCP协议)
├── materials/ ← 教材材料(思维导图/彩图)
└── pyproject.toml ← managed=false, venv 软链接到 Linux 侧
reference/AIAgent-main/第X章/ 有没有配套代码张三 → 冯周杰(20250421042),李四可保留做对比assignments/N-name.py(自包含单文件,或子目录)assignments/N-name.mdmcp-protocols/)pacman 不是 aptuv sync/pip install 写入失败~/.venvs/deepseek-api),项目目录用 ln -sf 软链接 .venvpyproject.toml 设置 [tool.uv] managed = false 让 uv 不自动管理 venvuv runexport HTTP_PROXY=http://127.0.0.1:7890 HTTPS_PROXY=http://127.0.0.1:7890
urllib.request.urlretrieve(url, path) 比 curl 稳定PAUSE 停止指令 → 加 stop=["PAUSE"] 参数: → 正则用 [::] 兼容中英文re.search(r"Action[::]\s*(\w+)", text)
re.search(r"Action Input[::]\s*({.*?})", text, re.DOTALL)
re.search(r"Final Answer[::]\s*(.*)", text)
cmake -B build -DGGML_CUDA=OFF && cmake --build build --target llama-cli-st (single-turn) 标志防止进入交互模式卡住uv python install 3.12 安装uv pip install torch --index-url https://download.pytorch.org/whl/cpuuv pip install transformers datasets... 然后 uv pip install -e . --no-depsFastMCP.run() 只接受 transport 参数,不接受 host/portapp = mcp.sse_app(); uvicorn.run(app, host=..., port=...)app = mcp.streamable_http_app(); uvicorn.run(app, host=..., port=...)code 命令在 WSL 需配置