소스 정보
- 저장소
- RainyGao-GitHub/DocSys
- 최근 소스 활동
- 2026년 7월 30일 14:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 360
- 포크
- 99
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.