用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/RainyGao-GitHub/DocSys --skill system-config命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | system_config |
| description | Get or update DocSystem configuration (admin only) |
| category | system |
| version | 1.1.0 |
| author | DocSys Team |
| permissions | ["admin"] |
| tags | ["system","config","admin","settings"] |
View or modify DocSystem configuration. Requires admin permissions.
Config, 系统配置, 配置管理, system-config, 系统设置, 配置, system settings, admin config, 服务器配置
docsys system-config [--get <key>] [--set <key> <value>] [--list]--list to see valid keys.docsys system-config [--get <key>] [--set <key> <value>] [--list]
| Parameter | Type | Required | Description |
|---|---|---|---|
| --get | flag | no | Get configuration (all or specific key) |
| --set | flag | no | Set a configuration value |
| --list | flag | no | List all configurable keys |
| key | string | conditional | Config key (required for --get or --set) |
| value | string | conditional | Config value (required for --set) |
User: "show system config"
Skill triggers → calls: docsys system-config
Output: All configuration values
User: "get the default AI model setting"
Skill triggers → calls: docsys system-config --get ai.default.model
Output: Current default model value
User: "set max upload size to 200"
Skill triggers → Step 1: --set mode, key=max.upload.size, value=200 → Step 3: confirm "Type '200' to apply: max.upload.size = 200" → user types 200 → calls: docsys system-config --set max.upload.size 200
Output: Config updated
User: "what config options are available"
Skill triggers → Step 1: --list mode → calls: docsys system-config --list
Output: List of all configurable keys and current values
| Field | Type | Description |
|---|---|---|
| key | string | Configuration key |
| value | string | Current or new value |
| scope | string | Effect scope: global / per-repo / session |
Success --list (EN): System Configuration:\n🔧 {key} = {value} ({scope})\n...
Success --list (中文): 系统配置:\n🔧 {key} = {value}(作用域: {scope})\n...
Success --get (EN): 🔧 {key} = {value}
Success --get (中文): 🔧 {key} = {value}
Success --set (EN): ✅ {key} updated: {old_value} → {new_value}. Takes effect immediately.
Success --set (中文): ✅ 配置已更新:{key}: {旧值} → {新值}。立即生效。
Error (EN): ❌ {error_message}
Error (中文): ❌ 配置失败:{错误信息}
| Error | Cause |
|---|---|
| Permission denied | Non-admin user |
| Invalid key | Unknown configuration key |
| Invalid value | Value doesn't match expected type |
| Config locked | Key is read-only |
See references/ for related skills and API docs.