Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/RainyGao-GitHub/DocSys --skill create-repos명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | create_repos |
| description | Create a new repository in DocSystem |
| category | repository |
| version | 1.1.0 |
| author | DocSys Team |
| permissions | ["write:repository"] |
| tags | ["repository","create","add","new"] |
Create a new document repository in DocSystem.
Create repo, create repository, new repo, add repo, add repository, 创建仓库, 新建仓库, 添加仓库, 建立仓库, 创建一个仓库, make a repo, register repository
name and path from user input./\:*?"<>|). If invalid → reject with guidance.docsys repos add <name> <path>docsys repos add <name> <path>
| Parameter | Type | Required | Description |
|---|---|---|---|
| name | string | yes | Repository name (no `/ \ : * ? " < > |
| path | string | yes | Storage path on disk |
User: "create a new repo called MyProject at F:/data/myrepo"
Skill triggers → calls: docsys repos add MyProject F:/data/myrepo
Output: Success confirmation with new repository VID
User: "新建仓库 项目A 路径 E:/projects/A"
Skill triggers → calls: docsys repos add 项目A E:/projects/A
Output: 创建成功,返回新仓库 VID
User: "add a repository named Reports at /mnt/storage/reports"
Skill triggers → calls: docsys repos add Reports /mnt/storage/reports
Output: Repository created successfully
| Field | Type | Description |
|---|---|---|
| name | string | Repository name |
| VID | number | New repository ID |
| path | string | Storage path |
| type | string | Repository type (Local/SVN/GIT) |
Success (EN): ✅ Repository created: {name} (VID: {id}) | Type: {type} | Path: {path}
Success (中文): ✅ 仓库创建成功:{name}(仓库ID: {id})| 类型: {type} | 路径: {path}
Already exists (EN): ❌ Repository named "{name}" already exists (VID: {id}). Choose a different name.
Already exists (中文): ❌ 仓库"{name}"已存在(VID: {id})。请使用其他名称。
| Error | Cause |
|---|---|
| Repository name required | Empty name provided |
| Storage path required | Empty path provided |
| Invalid characters | Name contains forbidden chars |
| Repository already exists | Duplicate name |
| Access denied | No write permission |
See references/ for related skills and API docs.