用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/RTGS2017/NagaAgent --skill naga-config命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Extract text and tables from .docx and .xlsx using local scripts (no external deps).
角色自带的 Live2D 表情控制规则。只允许通过 live2d 工具调用切换表情,不要在正文里输出情绪控制标记。
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
正在显示 SKILL.md
基于 SOC 职业分类
| name | naga-config |
| description | Naga 自身配置管理技能。用于查看和修改 Naga 系统设置、添加 MCP 工具服务、导入自定义技能、搜索可用 MCP 工具。当用户要求修改设置、添加工具或技能时使用此技能。 |
| version | 1.0.0 |
| author | Naga Team |
| tags | ["config","settings","mcp","skill","self-management"] |
| enabled | true |
本技能让你能够管理和配置 Naga 系统本身,包括修改系统设置、添加 MCP 工具服务、导入自定义技能。
GET /system/config
返回完整的系统配置 JSON,包含以下主要分区:
system — 基础设置(ai_name, voice_enabled, stream_mode, debug, log_level)api — LLM 模型设置(api_key, base_url, model, temperature, max_tokens, max_history_rounds)grag — 知识图谱设置(enabled, auto_extract, similarity_threshold, neo4j 连接)tts — 语音合成设置(default_voice, default_speed, default_language)online_search — 搜索引擎设置(searxng_url, engines, num_results)live2d — Live2D 虚拟形象设置(enabled, model_path, animation_enabled)handoff — 工具调用循环设置(max_loop_stream, max_loop_non_stream)voice_realtime — 实时语音对话设置(enabled, provider, model, voice)weather — 天气 API 设置mqtt — MQTT 物联网设置crawl4ai — 网页爬取设置computer_control — 计算机视觉控制设置POST /system/config
Content-Type: application/json
{完整的配置 JSON 对象}
重要:修改配置时需要发送完整的配置对象。建议先 GET 获取当前配置,修改需要的字段后再 POST 回去。
切换 LLM 模型:修改 api.model、api.base_url、api.api_key
调整创造力:修改 api.temperature(0.0=精确,1.0=创意,2.0=随机)
修改 AI 名称:修改 system.ai_name
开关语音:修改 system.voice_enabled
开关知识图谱:修改 grag.enabled 和 grag.auto_extract
调整搜索结果数:修改 online_search.num_results
GET /mcp/services
返回所有 MCP 服务列表,包括:
name — 服务名称displayName — 显示名称description — 描述source — 来源(builtin 内置 / mcporter 外部配置)available — 是否可用MCP 服务通过 JSON 配置添加,配置会写入 ~/.mcporter/config.json。
POST /mcp/import
Content-Type: application/json
{
"name": "服务名称",
"config": {
"command": "npx",
"args": ["-y", "@mcp/server-name"],
"type": "stdio"
}
}
stdio 类型(通过 Node.js 命令启动):
{
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-xxx"],
"type": "stdio"
}
SSE/URL 类型(通过 HTTP 连接):
{
"url": "https://mcp-server.example.com/sse",
"type": "sse"
}
当用户需要某个功能但目前没有对应的 MCP 工具时,使用内置的网络搜索工具(online_search)搜索:
MCP server <功能描述> npm 或 Model Context Protocol <功能> server@modelcontextprotocol/ 组织下modelcontextprotocol site:github.comPOST /mcp/import 添加对应的 JSON 配置GET /openclaw/market/items
返回所有可安装的技能列表。
POST /openclaw/market/items/{item_id}/install
POST /skills/import
Content-Type: application/json
{
"name": "技能名称",
"content": "技能描述和指令内容(Markdown 格式)"
}
技能文件会被创建为 skills/{name}/SKILL.md,包含 YAML frontmatter 元数据和 Markdown 内容。技能会在下次对话时自动加载到系统提示词中。
name 是单段技能目录标识,不能是空值、.、..,也不能包含 /、\、绝对路径、Windows 盘符路径或控制字符。
# 技能标题
简要描述这个技能做什么。
## 触发条件
描述何时应使用此技能。
## 执行步骤
1. 第一步
2. 第二步
## 输出格式
描述期望的输出格式。
GET /system/prompt
POST /system/prompt
Content-Type: application/json
{
"content": "新的系统提示词内容"
}