소스 정보
- 저장소
- RainyGao-GitHub/DocSys
- 최근 소스 활동
- 2026년 7월 30일 14:22
- 감지된 SKILL.md 언어
- 다국어 혼합
- 스타
- 360
- 포크
- 99
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/RainyGao-GitHub/DocSys --skill move-doc명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | move_doc |
| description | Move a document to another folder within the same repository |
| category | document |
| version | 1.1.0 |
| author | DocSys Team |
| permissions | ["write:document"] |
| tags | ["document","move","relocate","folder"] |
Move a document or folder to another location within the same repository.
Move doc, move document, move file, 移动文档, 移动文件, 移动到, relocate doc, transfer doc, move to folder, 移动这个文件, 文件移动, mv
docsys docs list <vid> to find folder names and map to targetPid. If vid missing → call docsys repos list to resolve.docsys doc move <vid> <docId> <targetPid>docsys doc move <vid> <docId> <originalPid>docsys doc move <vid> <docId> <targetPid>
| Parameter | Type | Required | Description |
|---|---|---|---|
| vid | number | yes | Repository ID |
| docId | number | yes | Document ID to move |
| targetPid | number | yes | Target folder ID (0 = root) |
User: "move document 123 to folder 5 in repo 1"
Skill triggers → calls: docsys doc move 1 123 5
Output: Move result
User: "把文档 456 移动到根目录,仓库是 2"
Skill triggers → calls: docsys doc move 2 456 0
Output: 移动到根目录结果
User: "move file 789 to folder Archive"
Skill triggers → Step 1: docId=789, targetPid=missing → Step 2: calls docsys docs list <vid> to find folder named "Archive" → resolve targetPid=6 → Step 3: confirm → calls: docsys doc move <vid> 789 6
Output: Move result
| Field | Type | Description |
|---|---|---|
| docId | number | Document ID moved |
| vid | number | Repository ID |
| from_pid | number | Original folder ID |
| to_pid | number | Target folder ID |
Success (EN): ✅ Document {docId} moved | repo {vid} | from folder {from_pid} → {to_pid}
Success (中文): ✅ 文档 {docId} 已移动 | 仓库 {vid} | 从 {from_pid} → {to_pid}
Rollback: To undo: docsys doc move {vid} {docId} {from_pid}
Error: "Document not found" | "Target folder not found" | "Permission denied"
| Error | Cause |
|---|---|
| Usage: doc move | Missing arguments |
| Document not found | Invalid vid or docId |
| Target folder not found | Invalid targetPid |
| Already in this folder | source == target |
| Permission denied | No write access |
See references/ for related skills and API docs.